Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(227)

Unified Diff: webrtc/modules/video_coding/codecs/vp8/simulcast_unittest.h

Issue 1193513006: In screenshare mode, suppress VP8 bitrate overshoot and increase quality (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebase Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_;
};

Powered by Google App Engine
This is Rietveld 408576698