From cb50c96be28082ed8b819445799ee49c0c2de2d6 Mon Sep 17 00:00:00 2001 From: asapersson Date: Wed, 18 Nov 2015 01:58:55 -0800 Subject: [PATCH] Set temporal up switch bit to false for flexible mode (one temporal layer is configured currently). BUG=webrtc:5214 Review URL: https://codereview.webrtc.org/1453693002 Cr-Commit-Position: refs/heads/master@{#10685} --- webrtc/modules/video_coding/codecs/vp9/vp9_impl.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webrtc/modules/video_coding/codecs/vp9/vp9_impl.cc b/webrtc/modules/video_coding/codecs/vp9/vp9_impl.cc index db54e113db..eba8dfb6b1 100644 --- a/webrtc/modules/video_coding/codecs/vp9/vp9_impl.cc +++ b/webrtc/modules/video_coding/codecs/vp9/vp9_impl.cc @@ -585,7 +585,7 @@ void VP9EncoderImpl::PopulateCodecSpecific(CodecSpecificInfo* codec_specific, } // TODO(asapersson): this info has to be obtained from the encoder. - vp9_info->temporal_up_switch = true; + vp9_info->temporal_up_switch = false; bool is_first_frame = false; if (is_flexible_mode_) {