Commit 83b43a6f by olly Committed by Oliver Woodman

Assume 360p 4:3 H264 is supported from JB.

Issue: #1534
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=122742666
parent fb3fdb34
...@@ -254,6 +254,8 @@ public final class MediaCodecUtil { ...@@ -254,6 +254,8 @@ public final class MediaCodecUtil {
for (CodecProfileLevel profileLevel : decoderInfo.getProfileLevels()) { for (CodecProfileLevel profileLevel : decoderInfo.getProfileLevels()) {
result = Math.max(avcLevelToMaxFrameSize(profileLevel.level), result); result = Math.max(avcLevelToMaxFrameSize(profileLevel.level), result);
} }
// We assume support for at least 360p.
result = Math.max(result, 480 * 360);
} }
maxH264DecodableFrameSize = result; maxH264DecodableFrameSize = result;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment