| 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..92ffbc9120545d87fcb5da852f7e5f6f1046bf4d 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 != kEmptyFrame) {
|
| 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.
|
|
|