Remove unused incomplete_frame argument from JitterEstimator.
Bug: webrtc:14151 Change-Id: I6764315f0c10b304f50e4639a3e49e4ed013c41e Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/267842 Reviewed-by: Erik Språng <sprang@webrtc.org> Commit-Queue: Philip Eliasson <philipel@webrtc.org> Cr-Commit-Position: refs/heads/main@{#37443}
This commit is contained in:
@ -869,7 +869,7 @@ void VCMJitterBuffer::UpdateJitterEstimate(const VCMFrameBuffer& frame,
|
||||
void VCMJitterBuffer::UpdateJitterEstimate(int64_t latest_packet_time_ms,
|
||||
uint32_t timestamp,
|
||||
unsigned int frame_size,
|
||||
bool incomplete_frame) {
|
||||
bool /*incomplete_frame*/) {
|
||||
if (latest_packet_time_ms == -1) {
|
||||
return;
|
||||
}
|
||||
@ -880,8 +880,7 @@ void VCMJitterBuffer::UpdateJitterEstimate(int64_t latest_packet_time_ms,
|
||||
// Filter out frames which have been reordered in time by the network
|
||||
if (not_reordered) {
|
||||
// Update the jitter estimate with the new samples
|
||||
jitter_estimate_.UpdateEstimate(*frame_delay, DataSize::Bytes(frame_size),
|
||||
incomplete_frame);
|
||||
jitter_estimate_.UpdateEstimate(*frame_delay, DataSize::Bytes(frame_size));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user