| Index: webrtc/modules/video_coding/jitter_buffer.cc
|
| diff --git a/webrtc/modules/video_coding/jitter_buffer.cc b/webrtc/modules/video_coding/jitter_buffer.cc
|
| index a3e0b2bc074d096369935c5a934bd3cfc3f94ce0..253d93deb691355db0f892c39704d3781873f077 100644
|
| --- a/webrtc/modules/video_coding/jitter_buffer.cc
|
| +++ b/webrtc/modules/video_coding/jitter_buffer.cc
|
| @@ -1282,9 +1282,13 @@ void VCMJitterBuffer::CountFrame(const VCMFrameBuffer& frame) {
|
| if (frame.IsSessionComplete()) {
|
| if (frame.FrameType() == kVideoFrameKey) {
|
| ++receive_statistics_.key_frames;
|
| + if (receive_statistics_.key_frames == 1) {
|
| + LOG(LS_INFO) << "Received first complete key frame";
|
| + }
|
| } else {
|
| ++receive_statistics_.delta_frames;
|
| }
|
| +
|
| if (stats_callback_ != NULL)
|
| stats_callback_->OnFrameCountsUpdated(receive_statistics_);
|
| }
|
|
|