| Index: webrtc/modules/video_coding/codecs/test/videoprocessor.h
|
| diff --git a/webrtc/modules/video_coding/codecs/test/videoprocessor.h b/webrtc/modules/video_coding/codecs/test/videoprocessor.h
|
| index 0b094ae73ec65626211534959b2b9a2966ee340a..582d9033436867dc92d00442ef38b54ca14d1082 100644
|
| --- a/webrtc/modules/video_coding/codecs/test/videoprocessor.h
|
| +++ b/webrtc/modules/video_coding/codecs/test/videoprocessor.h
|
| @@ -13,6 +13,7 @@
|
|
|
| #include <string>
|
|
|
| +#include "webrtc/base/checks.h"
|
| #include "webrtc/common_video/libyuv/include/scaler.h"
|
| #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h"
|
| #include "webrtc/modules/video_coding/codecs/interface/video_codec_interface.h"
|
| @@ -248,6 +249,11 @@ class VideoProcessorImpl : public VideoProcessor {
|
| : video_processor_(vp) {
|
| }
|
| int32_t Decoded(webrtc::VideoFrame& image) override;
|
| + int32_t Decoded(
|
| + webrtc::VideoFrame& image, int64_t decode_time_ms) override {
|
| + RTC_NOTREACHED();
|
| + return -1;
|
| + }
|
|
|
| private:
|
| VideoProcessorImpl* video_processor_;
|
|
|