FecControllerDefault nits (missing empty lines)

Bug: None
Change-Id: I69de2c0c0c9f20e0742ce4b3f325a030d37268f9
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/140285
Reviewed-by: Ilya Nikolaevskiy <ilnik@webrtc.org>
Commit-Queue: Elad Alon <eladalon@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#28165}
This commit is contained in:
Elad Alon
2019-06-05 11:20:36 +02:00
committed by Commit Bot
parent 74e63b8abb
commit f91353e7a9

View File

@ -162,6 +162,7 @@ uint32_t FecControllerDefault::UpdateFecRates(
// Source coding rate: total rate - protection overhead.
return estimated_bitrate_bps * (1.0 - protection_overhead_rate);
}
void FecControllerDefault::SetProtectionMethod(bool enable_fec,
bool enable_nack) {
media_optimization::VCMProtectionMethodEnum method(media_optimization::kNone);
@ -175,6 +176,7 @@ void FecControllerDefault::SetProtectionMethod(bool enable_fec,
CritScope lock(&crit_sect_);
loss_prot_logic_->SetMethod(method);
}
void FecControllerDefault::UpdateWithEncodedData(
const size_t encoded_image_length,
const VideoFrameType encoded_image_frametype) {