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

Unified Diff: call/video_receive_stream.h

Issue 3019453002: Delete member VideoReceiveStream::Config::Rtp::ulpfec. (Closed)
Patch Set: Added DCHECK. Created 3 years, 3 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
« no previous file with comments | « call/rampup_tests.cc ('k') | call/video_receive_stream.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: call/video_receive_stream.h
diff --git a/call/video_receive_stream.h b/call/video_receive_stream.h
index 7d996ab44f4a9634e8aa0ebe1aa65ff085221176..de6f71290182a4f8f8069698b44c89cd91984153 100644
--- a/call/video_receive_stream.h
+++ b/call/video_receive_stream.h
@@ -166,13 +166,9 @@ class VideoReceiveStream {
// See NackConfig for description.
NackConfig nack;
- // See UlpfecConfig for description.
- // TODO(nisse): UlpfecConfig includes the field red_rtx_payload_type,
- // which duplicates info in the rtx_associated_payload_types mapping. So
- // delete the use of UlpfecConfig here, and replace by the values which
- // make sense in this context, likely those are ulpfec_payload_type_ and
- // red_payload_type_.
- UlpfecConfig ulpfec;
+ // Payload types for ULPFEC and RED, respectively.
+ int ulpfec_payload_type = -1;
+ int red_payload_type = -1;
// SSRC for retransmissions.
uint32_t rtx_ssrc = 0;
« no previous file with comments | « call/rampup_tests.cc ('k') | call/video_receive_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698