Skip to content

Commit

Permalink
Broaden OMX.SEC.MP3.Decoder blacklisting.
Browse files Browse the repository at this point in the history
Issue: #398
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=121949973
  • Loading branch information
ojw28 committed Jun 15, 2016
1 parent cba4d80 commit 58c0ab1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ private static boolean isCodecUsableDecoder(MediaCodecInfo info, String name,
|| "MP3Decoder".equals(name)) {
return false;
}
if (Util.SDK_INT == 16 && "OMX.SEC.MP3.Decoder".equals(name)) {
if (Util.SDK_INT < 18 && "OMX.SEC.MP3.Decoder".equals(name)) {
return false;
}

Expand Down

0 comments on commit 58c0ab1

Please sign in to comment.