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

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

Issue 1414693006: Add DecodedImageCallback::Decoded() function with custom decode time value. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Addressed comments. Created 5 years, 1 month 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.h
diff --git a/webrtc/modules/video_coding/codecs/test/videoprocessor.h b/webrtc/modules/video_coding/codecs/test/videoprocessor.h
index 0b094ae73ec65626211534959b2b9a2966ee340a..6abe6bd72b14bd8defead936250976a6faaaa2fc 100644
--- a/webrtc/modules/video_coding/codecs/test/videoprocessor.h
+++ b/webrtc/modules/video_coding/codecs/test/videoprocessor.h
@@ -248,6 +248,10 @@ class VideoProcessorImpl : public VideoProcessor {
: video_processor_(vp) {
}
int32_t Decoded(webrtc::VideoFrame& image) override;
+ int32_t Decoded(
+ webrtc::VideoFrame& image, int64_t decode_time_ms) override {
+ return Decoded(image);
+ }
private:
VideoProcessorImpl* video_processor_;

Powered by Google App Engine
This is Rietveld 408576698