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

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

Issue 2695653002: Add support for creating HW codecs in VideoProcessor tests. (Closed)
Patch Set: 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.h
diff --git a/webrtc/modules/video_coding/codecs/test/videoprocessor.h b/webrtc/modules/video_coding/codecs/test/videoprocessor.h
index 6290d8bee5fa63c232f39dadbc855dd2e560bbed..628e3c48594408d6e0341630cf737cba7d946776 100644
--- a/webrtc/modules/video_coding/codecs/test/videoprocessor.h
+++ b/webrtc/modules/video_coding/codecs/test/videoprocessor.h
@@ -247,8 +247,7 @@ class VideoProcessorImpl : public VideoProcessor {
int32_t Decoded(webrtc::VideoFrame& image) override;
int32_t Decoded(webrtc::VideoFrame& image,
int64_t decode_time_ms) override {
- RTC_NOTREACHED();
brandtr 2017/02/13 12:40:26 Android HW decoders use this callback.
- return -1;
+ return Decoded(image);
}
void Decoded(VideoFrame& frame,
rtc::Optional<int32_t> decode_time_ms,

Powered by Google App Engine
This is Rietveld 408576698