Skip to content

Commit

Permalink
Don't use CIPMP3Decoder.
Browse files Browse the repository at this point in the history
Issue: google#1000
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=109318738
  • Loading branch information
andrewlewis authored and ojw28 committed Dec 7, 2015
1 parent 46481fa commit 20e3ca7
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -183,8 +183,9 @@ private static boolean isCodecUsableDecoder(MediaCodecInfo info, String name,
return false;
}

// Work around broken AAC decoders.
// Work around broken audio decoders.
if ((Util.SDK_INT < 18 && "CIPAACDecoder".equals(name))
|| (Util.SDK_INT < 18 && "CIPMP3Decoder".equals(name))
|| (Util.SDK_INT < 20 && "AACDecoder".equals(name))) {
return false;
}
Expand Down

0 comments on commit 20e3ca7

Please sign in to comment.