Remove per-frame captured frame logging.

It's a little too verbose :)

BUG=
R=pbos@webrtc.org

Review URL: https://codereview.webrtc.org/1302173004 .

Cr-Commit-Position: refs/heads/master@{#9786}
This commit is contained in:
Noah Richards 2015-08-26 15:22:35 +02:00
parent af9fb21886
commit 85ad62b877

View File

@ -1824,10 +1824,6 @@ void WebRtcVideoChannel2::WebRtcVideoSendStream::InputFrame(
SetDimensions(
video_frame.width(), video_frame.height(), capturer->IsScreencast());
LOG(LS_VERBOSE) << "IncomingCapturedFrame: " << video_frame.width() << "x"
<< video_frame.height() << " -> (codec) "
<< parameters_.encoder_config.streams.back().width << "x"
<< parameters_.encoder_config.streams.back().height;
stream_->Input()->IncomingCapturedFrame(video_frame);
}