aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLang Dai <langx.dai@intel.com>2016-06-02 20:57:59 +0000
committerandroid-build-merger <android-build-merger@google.com>2016-06-02 20:57:59 +0000
commitc3fc35d6b190d536332e1c32bb2e7a7858877035 (patch)
tree784f265249b3253a2991b8c3ad9ef79cc1e4423a
parentd93df5e2d428fd8f98ef3d2b1ba6230b4f3a8fa4 (diff)
parentf0ce47785460c71e30efd546b9317d0b4bb62deb (diff)
downloadlibmix-c3fc35d6b190d536332e1c32bb2e7a7858877035.tar.gz
Update mLowDelay value when startVA am: f75cf2c237
am: f0ce477854 * commit 'f0ce47785460c71e30efd546b9317d0b4bb62deb': Update mLowDelay value when startVA Change-Id: Id59c2ab420146195f376149a90090d04c2c8770c
-rw-r--r--videodecoder/VideoDecoderAVC.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/videodecoder/VideoDecoderAVC.cpp b/videodecoder/VideoDecoderAVC.cpp
index ca4b123..077710c 100644
--- a/videodecoder/VideoDecoderAVC.cpp
+++ b/videodecoder/VideoDecoderAVC.cpp
@@ -681,6 +681,15 @@ Decode_Status VideoDecoderAVC::startVA(vbp_data_h264 *data) {
//Use high profile for all kinds of H.264 profiles (baseline, main and high) except for constrained baseline
VAProfile vaProfile = VAProfileH264High;
+ if (mConfigBuffer.flag & WANT_ADAPTIVE_PLAYBACK) {
+ // When Adaptive playback is enabled, turn off low delay mode.
+ // Otherwise there may be a 240ms stuttering if the output mode is changed from LowDelay to Delay.
+ enableLowDelayMode(false);
+ } else {
+ // for baseline profile or constrained high profile, enable low delay mode automatically
+ enableLowDelayMode((data->codec_data->profile_idc == 66) || (data->codec_data->profile_idc == 100 && data->codec_data->constraint_set4_flag == 1 && data->codec_data->constraint_set5_flag == 1));
+ }
+
// TODO: determine when to use VAProfileH264ConstrainedBaseline, set only if we are told to do so
if ((data->codec_data->profile_idc == 66 || data->codec_data->constraint_set0_flag == 1) &&
data->codec_data->constraint_set1_flag == 1) {
@@ -716,15 +725,6 @@ void VideoDecoderAVC::updateFormatInfo(vbp_data_h264 *data) {
ITRACE("updateFormatInfo: current size: %d x %d, new size: %d x %d",
mVideoFormatInfo.width, mVideoFormatInfo.height, width, height);
- if (mConfigBuffer.flag & WANT_ADAPTIVE_PLAYBACK) {
- // When Adaptive playback is enabled, turn off low delay mode.
- // Otherwise there may be a 240ms stuttering if the output mode is changed from LowDelay to Delay.
- enableLowDelayMode(false);
- } else {
- // for baseline profile or constrained high profile, enable low delay mode automatically
- enableLowDelayMode((data->codec_data->profile_idc == 66) || (data->codec_data->profile_idc == 100 && data->codec_data->constraint_set4_flag == 1 && data->codec_data->constraint_set5_flag == 1));
- }
-
if ((mConfigBuffer.flag & USE_NATIVE_GRAPHIC_BUFFER) && mStoreMetaData) {
pthread_mutex_lock(&mFormatLock);
}