| Index: webrtc/modules/video_coding/codecs/vp8/simulcast_unittest.h
|
| diff --git a/webrtc/modules/video_coding/codecs/vp8/simulcast_unittest.h b/webrtc/modules/video_coding/codecs/vp8/simulcast_unittest.h
|
| index d140b0a5292683a2b507de9f534681cd3a347749..f8e4b4fce377f120fc510addd3e5d6ef2fc3ffd0 100644
|
| --- a/webrtc/modules/video_coding/codecs/vp8/simulcast_unittest.h
|
| +++ b/webrtc/modules/video_coding/codecs/vp8/simulcast_unittest.h
|
| @@ -145,6 +145,16 @@ class Vp8TestDecodedImageCallback : public DecodedImageCallback {
|
| RTC_NOTREACHED();
|
| return -1;
|
| }
|
| + int32_t DecodedWithQp(VideoFrame& decoded_image, int qp) override {
|
| + RTC_NOTREACHED();
|
| + return -1;
|
| + }
|
| + int32_t DecodedWithQp(VideoFrame& decoded_image,
|
| + int64_t decode_time_ms,
|
| + int qp) override {
|
| + RTC_NOTREACHED();
|
| + return -1;
|
| + }
|
| int DecodedFrames() { return decoded_frames_; }
|
|
|
| private:
|
|
|