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

Unified Diff: webrtc/modules/video_coding/rtp_frame_reference_finder.cc

Issue 2522493002: Now run EndToEndTest with the WebRTC-NewVideoJitterBuffer experiment. (Closed)
Patch Set: Rebase Created 4 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/rtp_frame_reference_finder.cc
diff --git a/webrtc/modules/video_coding/rtp_frame_reference_finder.cc b/webrtc/modules/video_coding/rtp_frame_reference_finder.cc
index 5a9420a84776e168834ae2f69f8a2ec5e4d7c188..3d5283378fb57911df9d2b1b636bb0d045233040 100644
--- a/webrtc/modules/video_coding/rtp_frame_reference_finder.cc
+++ b/webrtc/modules/video_coding/rtp_frame_reference_finder.cc
@@ -43,7 +43,6 @@ void RtpFrameReferenceFinder::ManageFrame(
case kVideoCodecFlexfec:
case kVideoCodecULPFEC:
case kVideoCodecRED:
- case kVideoCodecUnknown:
RTC_NOTREACHED();
break;
case kVideoCodecVP8:
@@ -52,6 +51,11 @@ void RtpFrameReferenceFinder::ManageFrame(
case kVideoCodecVP9:
ManageFrameVp9(std::move(frame));
break;
+ // Since the EndToEndTests use kVicdeoCodecUnknow we treat it the same as
+ // kVideoCodecGeneric.
+ // TODO(philipel): Take a look at the EndToEndTests and see if maybe they
+ // should be changed to use kVideoCodecGeneric instead.
+ case kVideoCodecUnknown:
case kVideoCodecH264:
case kVideoCodecI420:
case kVideoCodecGeneric:
« no previous file with comments | « webrtc/modules/video_coding/frame_object.cc ('k') | webrtc/modules/video_coding/rtp_frame_reference_finder_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698