| Index: webrtc/video/video_capture_input.cc
|
| diff --git a/webrtc/video/video_capture_input.cc b/webrtc/video/video_capture_input.cc
|
| index 895e2d8b85dbba38c7a5a7324c69c57c2df6dc22..92d1c8fb98dbc65c7289732b8701c3d97d45ec61 100644
|
| --- a/webrtc/video/video_capture_input.cc
|
| +++ b/webrtc/video/video_capture_input.cc
|
| @@ -101,7 +101,10 @@ void VideoCaptureInput::IncomingCapturedFrame(const VideoFrame& video_frame) {
|
| CriticalSectionScoped cs(capture_cs_.get());
|
| if (incoming_frame.ntp_time_ms() <= last_captured_timestamp_) {
|
| // We don't allow the same capture time for two frames, drop this one.
|
| - LOG(LS_WARNING) << "Same/old NTP timestamp for incoming frame. Dropping.";
|
| + LOG(LS_WARNING) << "Same/old NTP timestamp ("
|
| + << incoming_frame.ntp_time_ms()
|
| + << " <= " << last_captured_timestamp_
|
| + << ") for incoming frame. Dropping.";
|
| return;
|
| }
|
|
|
|
|