Index: webrtc/modules/video_coding/codecs/vp9/vp9_impl.cc |
diff --git a/webrtc/modules/video_coding/codecs/vp9/vp9_impl.cc b/webrtc/modules/video_coding/codecs/vp9/vp9_impl.cc |
index b09f5d8077bf0276ec69945b588857e475321595..8a2c5d10d66f096b0fa66f5403888fd511c21370 100644 |
--- a/webrtc/modules/video_coding/codecs/vp9/vp9_impl.cc |
+++ b/webrtc/modules/video_coding/codecs/vp9/vp9_impl.cc |
@@ -29,7 +29,6 @@ |
#include "webrtc/base/trace_event.h" |
#include "webrtc/common_video/include/video_frame_buffer.h" |
#include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" |
-#include "webrtc/modules/include/module_common_types.h" |
#include "webrtc/modules/video_coding/codecs/vp9/screenshare_layers.h" |
namespace webrtc { |
@@ -711,9 +710,11 @@ int VP9EncoderImpl::GetEncodedLayerFrame(const vpx_codec_cx_pkt* pkt) { |
: VideoContentType::UNSPECIFIED; |
encoded_image_._encodedHeight = raw_->d_h; |
encoded_image_._encodedWidth = raw_->d_w; |
+ encoded_image_.timing_.is_timing_frame = false; |
int qp = -1; |
vpx_codec_control(encoder_, VP8E_GET_LAST_QUANTIZER, &qp); |
encoded_image_.qp_ = qp; |
+ |
encoded_complete_callback_->OnEncodedImage(encoded_image_, &codec_specific, |
&frag_info); |
} |