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

Unified Diff: webrtc/modules/video_coding/codecs/test/videoprocessor.cc

Issue 2656603002: Add QP for libvpx VP8 decoder. (Closed)
Patch Set: Remove unused timestamp from the test. Created 3 years, 10 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/test/videoprocessor.cc
diff --git a/webrtc/modules/video_coding/codecs/test/videoprocessor.cc b/webrtc/modules/video_coding/codecs/test/videoprocessor.cc
index 35bf5593664a8b2cc6cbefebad5e3791f75ccb94..c101c45be3c9708e8091790a0634b91d7b813cde 100644
--- a/webrtc/modules/video_coding/codecs/test/videoprocessor.cc
+++ b/webrtc/modules/video_coding/codecs/test/videoprocessor.cc
@@ -444,6 +444,13 @@ int32_t VideoProcessorImpl::VideoProcessorDecodeCompleteCallback::Decoded(
video_processor_->FrameDecoded(image);
return 0;
}
+void VideoProcessorImpl::VideoProcessorDecodeCompleteCallback::Decoded(
+ VideoFrame& frame,
+ rtc::Optional<int32_t> decode_time_ms,
+ rtc::Optional<uint8_t> qp) {
+ // Forward to parent class.
+ video_processor_->FrameDecoded(frame);
+}
} // namespace test
} // namespace webrtc

Powered by Google App Engine
This is Rietveld 408576698