| Index: webrtc/modules/video_coding/codecs/vp8/test/vp8_impl_unittest.cc
|
| diff --git a/webrtc/modules/video_coding/codecs/vp8/test/vp8_impl_unittest.cc b/webrtc/modules/video_coding/codecs/vp8/test/vp8_impl_unittest.cc
|
| index de612f0404bff79c2404ba18c2e44e34f6259861..790d0ba6f18cbbf91a644d68cacf85fc2d3fda7b 100644
|
| --- a/webrtc/modules/video_coding/codecs/vp8/test/vp8_impl_unittest.cc
|
| +++ b/webrtc/modules/video_coding/codecs/vp8/test/vp8_impl_unittest.cc
|
| @@ -97,6 +97,16 @@ class Vp8UnitTestDecodeCompleteCallback : public webrtc::DecodedImageCallback {
|
| RTC_NOTREACHED();
|
| return -1;
|
| }
|
| + int32_t DecodedWithQp(VideoFrame& frame, int qp) override {
|
| + RTC_NOTREACHED();
|
| + return -1;
|
| + }
|
| + int32_t DecodedWithQp(VideoFrame& frame,
|
| + int64_t decode_time_ms,
|
| + int qp) override {
|
| + RTC_NOTREACHED();
|
| + return -1;
|
| + }
|
| bool DecodeComplete();
|
|
|
| private:
|
|
|