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

Unified Diff: webrtc/modules/rtp_rtcp/source/producer_fec.cc

Issue 1917083003: Remove VCMQmRobustness. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 8 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/rtp_rtcp/source/producer_fec.cc
diff --git a/webrtc/modules/rtp_rtcp/source/producer_fec.cc b/webrtc/modules/rtp_rtcp/source/producer_fec.cc
index 69a28ed4dbcc8ce68e51610c0c2b5ae34c0d6805..c7ea19db5862f4ce6b97184548f900bef54aa154 100644
--- a/webrtc/modules/rtp_rtcp/source/producer_fec.cc
+++ b/webrtc/modules/rtp_rtcp/source/producer_fec.cc
@@ -157,12 +157,11 @@ int ProducerFec::AddRtpPacketAndGenerateFec(const uint8_t* data_buffer,
(ExcessOverheadBelowMax() && MinimumMediaPacketsReached()))) {
assert(num_first_partition_ <=
static_cast<int>(ForwardErrorCorrection::kMaxMediaPackets));
- int ret = fec_->GenerateFEC(media_packets_fec_,
- params_.fec_rate,
- num_first_partition_,
- params_.use_uep_protection,
- params_.fec_mask_type,
- &fec_packets_);
+ // TODO(pbos): Consider whether unequal protection should be enabled or not,
+ // it is currently always disabled.
+ int ret = fec_->GenerateFEC(media_packets_fec_, params_.fec_rate,
+ num_first_partition_, false,
+ params_.fec_mask_type, &fec_packets_);
if (fec_packets_.empty()) {
num_frames_ = 0;
DeletePackets();
« no previous file with comments | « webrtc/modules/include/module_common_types.h ('k') | webrtc/modules/rtp_rtcp/source/producer_fec_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698