Index: webrtc/modules/video_coding/media_optimization.cc |
diff --git a/webrtc/modules/video_coding/media_optimization.cc b/webrtc/modules/video_coding/media_optimization.cc |
index f24637e0b29408f40914ba0013b201fe765ecf67..a234a06f9b4ce137581f5811d86b26d408d59344 100644 |
--- a/webrtc/modules/video_coding/media_optimization.cc |
+++ b/webrtc/modules/video_coding/media_optimization.cc |
@@ -32,6 +32,13 @@ |
// Get the FEC code rate for Delta frames (set to 0 when NA). |
delta_fec_params.fec_rate = selected_method->RequiredProtectionFactorD(); |
+ |
+ // Get the FEC-UEP protection status for Key frames: UEP on/off. |
+ key_fec_params.use_uep_protection = selected_method->RequiredUepProtectionK(); |
+ |
+ // Get the FEC-UEP protection status for Delta frames: UEP on/off. |
+ delta_fec_params.use_uep_protection = |
+ selected_method->RequiredUepProtectionD(); |
// The RTP module currently requires the same |max_fec_frames| for both |
// key and delta frames. |
@@ -222,6 +229,9 @@ |
// Update protection settings, when applicable. |
float sent_video_rate_kbps = 0.0f; |
if (loss_prot_logic_->SelectedType() != kNone) { |
+ // Update protection method with content metrics. |
+ selected_method->UpdateContentMetrics(content_->ShortTermAvgData()); |
+ |
// Update method will compute the robustness settings for the given |
// protection method and the overhead cost |
// the protection method is set by the user via SetVideoProtection. |