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

Unified Diff: webrtc/modules/video_coding/include/video_coding_defines.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/include/video_coding_defines.h
diff --git a/webrtc/modules/video_coding/include/video_coding_defines.h b/webrtc/modules/video_coding/include/video_coding_defines.h
index 122ddc6315c5b85a3a5ac5c7cd4654ecb6cc6880..5f472d2b3002703cfbf4ea9ae031eb9b15e14690 100644
--- a/webrtc/modules/video_coding/include/video_coding_defines.h
+++ b/webrtc/modules/video_coding/include/video_coding_defines.h
@@ -63,7 +63,7 @@ struct VCMFrameCount {
// rendered.
class VCMReceiveCallback {
public:
- virtual int32_t FrameToRender(VideoFrame& videoFrame) = 0; // NOLINT
+ virtual int32_t FrameToRender(VideoFrame& videoFrame, int qp) = 0; // NOLINT
hbos 2017/01/25 11:31:12 Can you use rtc::Optional<uint64_t> instead?
sakal 2017/01/25 12:39:34 This is something I thought about. I am not sure i
sprang_webrtc 2017/01/25 15:59:14 Agree that optional would be slightly more readabl
virtual int32_t ReceivedDecodedReferenceFrame(const uint64_t pictureId) {
return -1;
}

Powered by Google App Engine
This is Rietveld 408576698