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

Unified Diff: webrtc/modules/video_coding/generic_decoder.h

Issue 2649133005: Add QP sum stats for received streams. (Closed)
Patch Set: Add DecodedWithQp to interface. Created 3 years, 11 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/generic_decoder.h
diff --git a/webrtc/modules/video_coding/generic_decoder.h b/webrtc/modules/video_coding/generic_decoder.h
index 2d0007be81136102221d39ff2a5ff32eebb4ca8a..57e5b00dc09bcdda74321c5628645549b8f4e760 100644
--- a/webrtc/modules/video_coding/generic_decoder.h
+++ b/webrtc/modules/video_coding/generic_decoder.h
@@ -40,6 +40,11 @@ class VCMDecodedFrameCallback : public DecodedImageCallback {
virtual int32_t Decoded(VideoFrame& decodedImage); // NOLINT
virtual int32_t Decoded(VideoFrame& decodedImage, // NOLINT
int64_t decode_time_ms);
+ virtual int32_t DecodedWithQp(VideoFrame& decodedImage, // NOLINT
+ int qp);
+ virtual int32_t DecodedWithQp(VideoFrame& decodedImage, // NOLINT
+ int64_t decode_time_ms,
+ int qp);
hbos 2017/01/25 11:31:12 nit: Can all uses of virtual be changed to overrid
sakal 2017/01/25 12:39:34 Done.
virtual int32_t ReceivedDecodedReferenceFrame(const uint64_t pictureId);
virtual int32_t ReceivedDecodedFrame(const uint64_t pictureId);

Powered by Google App Engine
This is Rietveld 408576698