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

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

Issue 2455963003: Simplify SetFecParameters signature. (Closed)
Patch Set: Return type int32_t replaced by bool and void. Created 4 years, 2 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/protection_bitrate_calculator.cc
diff --git a/webrtc/modules/video_coding/protection_bitrate_calculator.cc b/webrtc/modules/video_coding/protection_bitrate_calculator.cc
index 411ed1a95ca57838792f0b73711e31ea3d5cd557..90ab5d37ce7f41cf64b8219ecca2ffc611398f29 100644
--- a/webrtc/modules/video_coding/protection_bitrate_calculator.cc
+++ b/webrtc/modules/video_coding/protection_bitrate_calculator.cc
@@ -130,7 +130,7 @@ uint32_t ProtectionBitrateCalculator::SetTargetRates(
// TODO(Marco): Pass FEC protection values per layer.
protection_callback_->ProtectionRequest(
- &delta_fec_params, &key_fec_params, &sent_video_rate_bps,
+ delta_fec_params, key_fec_params, &sent_video_rate_bps,
&sent_nack_rate_bps, &sent_fec_rate_bps);
uint32_t sent_total_rate_bps =

Powered by Google App Engine
This is Rietveld 408576698