Skip to content

Commit

Permalink
fix getAllEncodersCbrPriority
Browse files Browse the repository at this point in the history
  • Loading branch information
pedroSG94 committed Nov 14, 2024
1 parent 25f05b6 commit 204efe0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ public static List<MediaCodecInfo> getAllEncoders(String mime, boolean hardwareP
public static List<MediaCodecInfo> getAllEncodersCbrPriority(String mime) {
List<MediaCodecInfo> mediaCodecInfoList = new ArrayList<>();
List<MediaCodecInfo> hardwareEncoders = getAllHardwareEncoders(mime);
List<MediaCodecInfo> softwareEncoders = getAllHardwareEncoders(mime);
List<MediaCodecInfo> softwareEncoders = getAllSoftwareEncoders(mime);

List<MediaCodecInfo> hardwareEncodersCbr = new ArrayList<>();
List<MediaCodecInfo> hardwareEncodersNoCbr = new ArrayList<>();
Expand Down

0 comments on commit 204efe0

Please sign in to comment.