| Index: webrtc/modules/video_coding/codecs/vp8/vp8_sequence_coder.cc
|
| diff --git a/webrtc/modules/video_coding/codecs/vp8/vp8_sequence_coder.cc b/webrtc/modules/video_coding/codecs/vp8/vp8_sequence_coder.cc
|
| index 5843d83fa78dc733d0a2afe76341145e4f6f55b7..ea7db5a7f67c539f7b3bc1d254eca4befd0c5bba 100644
|
| --- a/webrtc/modules/video_coding/codecs/vp8/vp8_sequence_coder.cc
|
| +++ b/webrtc/modules/video_coding/codecs/vp8/vp8_sequence_coder.cc
|
| @@ -9,6 +9,7 @@
|
| */
|
|
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| +#include "webrtc/base/checks.h"
|
| #include "webrtc/base/scoped_ptr.h"
|
| #include "webrtc/common_video/interface/video_image.h"
|
| #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h"
|
| @@ -68,7 +69,11 @@ class Vp8SequenceCoderDecodeCallback : public webrtc::DecodedImageCallback {
|
| public:
|
| explicit Vp8SequenceCoderDecodeCallback(FILE* decoded_file)
|
| : decoded_file_(decoded_file) {}
|
| - int Decoded(webrtc::VideoFrame& frame);
|
| + int32_t Decoded(webrtc::VideoFrame& frame) override;
|
| + int32_t Decoded(webrtc::VideoFrame& frame, int64_t decode_time_ms) override {
|
| + RTC_NOTREACHED();
|
| + return -1;;
|
| + }
|
| bool DecodeComplete();
|
|
|
| private:
|
|
|