(Auto)update libjingle 78616359-> 78642371

git-svn-id: http://webrtc.googlecode.com/svn/trunk@7540 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
buildbot@webrtc.org 2014-10-28 05:35:35 +00:00
parent f15dee6980
commit fbd55cb27d

View File

@ -3215,7 +3215,10 @@ bool WebRtcVideoMediaChannel::SendFrame(
if (changed) {
// If the last captured frame info changed, then calling
// SetSendParams will update to the latest resolution.
if (!SetSendParams(send_channel, send_channel->send_params())) {
VideoSendParams send_params = send_channel->send_params();
// Note: We must copy the send_params because otherwise the memory
// checker will complain.
if (!SetSendParams(send_channel, send_params)) {
LOG(LS_ERROR) << "SetSendParams from SendFrame failed with "
<< frame->GetWidth() << "x" << frame->GetHeight()
<< " screencast? " << is_screencast;