Fix receiving H264 video from iPhone on Kitkat devices.

Changing this constant has been empirically proven to solve the issue.

BUG=webrtc:6455,b/31827852

Review-Url: https://codereview.webrtc.org/2382733006
Cr-Commit-Position: refs/heads/master@{#14479}
This commit is contained in:
sakal
2016-10-03 08:07:02 -07:00
committed by Commit bot
parent 8f741e953c
commit 65b42c251f

View File

@ -59,7 +59,7 @@ enum { kMaxPendingFramesVp8 = 1 };
// Maximum amount of pending frames for VP9 decoder. // Maximum amount of pending frames for VP9 decoder.
enum { kMaxPendingFramesVp9 = 1 }; enum { kMaxPendingFramesVp9 = 1 };
// Maximum amount of pending frames for H.264 decoder. // Maximum amount of pending frames for H.264 decoder.
enum { kMaxPendingFramesH264 = 3 }; enum { kMaxPendingFramesH264 = 4 };
// Maximum amount of decoded frames for which per-frame logging is enabled. // Maximum amount of decoded frames for which per-frame logging is enabled.
enum { kMaxDecodedLogFrames = 10 }; enum { kMaxDecodedLogFrames = 10 };
// Maximum amount of encoded frames for which per-frame logging is enabled. // Maximum amount of encoded frames for which per-frame logging is enabled.