From 85596d5bf4584ddf2945803b20b7a207be75331f Mon Sep 17 00:00:00 2001 From: "kjellander@webrtc.org" Date: Tue, 15 Nov 2011 13:45:25 +0000 Subject: [PATCH] Setting completeFrame to true for all created encoded images. Review URL: http://webrtc-codereview.appspot.com/276008 git-svn-id: http://webrtc.googlecode.com/svn/trunk@948 4adac7df-926f-26a2-2b94-8c16560cd09d --- src/modules/video_coding/codecs/vp8/main/source/vp8.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/modules/video_coding/codecs/vp8/main/source/vp8.cc b/src/modules/video_coding/codecs/vp8/main/source/vp8.cc index f0a42d7af8..0df634c3a0 100644 --- a/src/modules/video_coding/codecs/vp8/main/source/vp8.cc +++ b/src/modules/video_coding/codecs/vp8/main/source/vp8.cc @@ -258,6 +258,7 @@ VP8Encoder::InitEncode(const VideoCodec* inst, } _encodedImage._size = (3 * inst->width * inst->height) >> 1; _encodedImage._buffer = new WebRtc_UWord8[_encodedImage._size]; + _encodedImage._completeFrame = true; vpx_img_alloc(_raw, IMG_FMT_I420, inst->width, inst->height, 1); // populate encoder configuration with default values