Fix crash (by calling correct DecoderInfo constructor).

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=122159478
This commit is contained in:
olly 2016-05-12 08:27:36 -07:00 committed by Oliver Woodman
parent e29cb37403
commit b53a941ffd

View File

@ -53,7 +53,7 @@ public final class MediaCodecUtil {
private static final String TAG = "MediaCodecUtil";
private static final DecoderInfo PASSTHROUGH_DECODER_INFO =
new DecoderInfo("OMX.google.raw.decoder", null);
new DecoderInfo("OMX.google.raw.decoder");
private static final HashMap<CodecKey, List<DecoderInfo>> decoderInfosCache = new HashMap<>();