| Index: webrtc/modules/video_coding/main/source/jitter_buffer.cc
|
| diff --git a/webrtc/modules/video_coding/main/source/jitter_buffer.cc b/webrtc/modules/video_coding/main/source/jitter_buffer.cc
|
| index 49c2325d80a852971edb1dff629b9c5a997e27e7..86f933b35496cc46090937195a76be260430c5c7 100644
|
| --- a/webrtc/modules/video_coding/main/source/jitter_buffer.cc
|
| +++ b/webrtc/modules/video_coding/main/source/jitter_buffer.cc
|
| @@ -643,7 +643,7 @@ VCMFrameBufferEnum VCMJitterBuffer::InsertPacket(const VCMPacket& packet,
|
|
|
| // Empty packets may bias the jitter estimate (lacking size component),
|
| // therefore don't let empty packet trigger the following updates:
|
| - if (packet.frameType != kFrameEmpty) {
|
| + if (packet.frameType != kSkipFrame) {
|
| if (waiting_for_completion_.timestamp == packet.timestamp) {
|
| // This can get bad if we have a lot of duplicate packets,
|
| // we will then count some packet multiple times.
|
|
|