Remove warning on input frames before config.

Removes log spam for AppRTC when only one client is connected.

BUG=4512
R=stefan@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/48019005

Cr-Commit-Position: refs/heads/master@{#8947}
This commit is contained in:
Peter Boström 2015-04-08 14:04:01 +02:00
parent 64c0366908
commit ad1f9b61a3

View File

@ -1491,8 +1491,7 @@ void WebRtcVideoChannel2::WebRtcVideoSendStream::InputFrame(
frame->GetVideoRotation());
rtc::CritScope cs(&lock_);
if (stream_ == NULL) {
LOG(LS_WARNING) << "Capturer inputting frames before send codecs are "
"configured, dropping.";
// Frame input before send codecs are configured, dropping frame.
return;
}