| 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 fffe4abdc8a0987989ea3ac45395170e19219176..2e436a91fcac3dc049b0c870afdddbe9a2ddd53a 100644
|
| --- a/webrtc/modules/video_coding/codecs/vp8/simulcast_unittest.h
|
| +++ b/webrtc/modules/video_coding/codecs/vp8/simulcast_unittest.h
|
| @@ -196,12 +196,16 @@ class SkipEncodingUnusedStreamsTest {
|
| layers_->PopulateCodecSpecific(base_layer_sync, vp8_info, timestamp);
|
| }
|
|
|
| - void FrameEncoded(unsigned int size, uint32_t timestamp) override {
|
| - layers_->FrameEncoded(size, timestamp);
|
| + void FrameEncoded(unsigned int size, uint32_t timestamp, int qp) override {
|
| + layers_->FrameEncoded(size, timestamp, qp);
|
| }
|
|
|
| int CurrentLayerId() const override { return layers_->CurrentLayerId(); }
|
|
|
| + bool UpdateConfiguration(vpx_codec_enc_cfg_t* cfg) override {
|
| + return false;
|
| + }
|
| +
|
| int configured_bitrate_;
|
| TemporalLayers* layers_;
|
| };
|
|
|