(Auto)update libjingle 78427027-> 78430441
git-svn-id: http://webrtc.googlecode.com/svn/trunk@7521 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
parent
470988742a
commit
c7ed8db7fd
@ -3947,14 +3947,12 @@ bool WebRtcVideoMediaChannel::SetSendParams(
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Get current vie codec.
|
// Get current vie codec.
|
||||||
webrtc::VideoCodec vie_codec;
|
webrtc::VideoCodec current;
|
||||||
const int channel_id = send_channel->channel_id();
|
const int channel_id = send_channel->channel_id();
|
||||||
if (engine()->vie()->codec()->GetSendCodec(channel_id, vie_codec) != 0) {
|
if (engine()->vie()->codec()->GetSendCodec(channel_id, current) != 0) {
|
||||||
LOG_RTCERR1(GetSendCodec, channel_id);
|
LOG_RTCERR1(GetSendCodec, channel_id);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
const int cur_width = vie_codec.width;
|
|
||||||
const int cur_height = vie_codec.height;
|
|
||||||
|
|
||||||
// Only reset send codec when there is a size change. Additionally,
|
// Only reset send codec when there is a size change. Additionally,
|
||||||
// automatic resize needs to be turned off when screencasting and on when
|
// automatic resize needs to be turned off when screencasting and on when
|
||||||
@ -3974,17 +3972,9 @@ bool WebRtcVideoMediaChannel::SetSendParams(
|
|||||||
}
|
}
|
||||||
int screencast_min_bitrate =
|
int screencast_min_bitrate =
|
||||||
options_.screencast_min_bitrate.GetWithDefaultIfUnset(0);
|
options_.screencast_min_bitrate.GetWithDefaultIfUnset(0);
|
||||||
bool reset_send_codec =
|
|
||||||
target_width != cur_width || target_height != cur_height;
|
|
||||||
if (vie_codec.codecType == webrtc::kVideoCodecVP8) {
|
|
||||||
reset_send_codec = reset_send_codec ||
|
|
||||||
automatic_resize != vie_codec.codecSpecific.VP8.automaticResizeOn ||
|
|
||||||
enable_denoising != vie_codec.codecSpecific.VP8.denoisingOn ||
|
|
||||||
vp8_frame_dropping != vie_codec.codecSpecific.VP8.frameDroppingOn;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (reset_send_codec) {
|
|
||||||
// Set the new codec on vie.
|
// Set the new codec on vie.
|
||||||
|
webrtc::VideoCodec vie_codec = current;
|
||||||
vie_codec.width = target_width;
|
vie_codec.width = target_width;
|
||||||
vie_codec.height = target_height;
|
vie_codec.height = target_height;
|
||||||
vie_codec.maxFramerate = target_codec.maxFramerate;
|
vie_codec.maxFramerate = target_codec.maxFramerate;
|
||||||
@ -3999,10 +3989,12 @@ bool WebRtcVideoMediaChannel::SetSendParams(
|
|||||||
}
|
}
|
||||||
SanitizeBitrates(channel_id, &vie_codec);
|
SanitizeBitrates(channel_id, &vie_codec);
|
||||||
|
|
||||||
|
if (current != vie_codec) {
|
||||||
if (engine()->vie()->codec()->SetSendCodec(channel_id, vie_codec) != 0) {
|
if (engine()->vie()->codec()->SetSendCodec(channel_id, vie_codec) != 0) {
|
||||||
LOG_RTCERR1(SetSendCodec, channel_id);
|
LOG_RTCERR1(SetSendCodec, channel_id);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (frame.screencast) {
|
if (frame.screencast) {
|
||||||
engine()->vie()->rtp()->SetMinTransmitBitrate(channel_id,
|
engine()->vie()->rtp()->SetMinTransmitBitrate(channel_id,
|
||||||
@ -4021,8 +4013,6 @@ bool WebRtcVideoMediaChannel::SetSendParams(
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
LogSendCodecChange("Capture size changed");
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user