(Auto)update libjingle 75818332-> 75837294

git-svn-id: http://webrtc.googlecode.com/svn/trunk@7227 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
buildbot@webrtc.org 2014-09-18 20:23:05 +00:00
parent c3091a6c26
commit 933d88af58

View File

@ -54,6 +54,8 @@ namespace cricket {
// duration hasn't been implemented. // duration hasn't been implemented.
static const int kNackHistoryMs = 1000; static const int kNackHistoryMs = 1000;
static const int kDefaultQpMax = 56;
static const int kDefaultRtcpReceiverReportSsrc = 1; static const int kDefaultRtcpReceiverReportSsrc = 1;
struct VideoCodecPref { struct VideoCodecPref {
@ -186,7 +188,7 @@ std::vector<webrtc::VideoStream> WebRtcVideoEncoderFactory2::CreateVideoStreams(
stream.min_bitrate_bps = min_bitrate * 1000; stream.min_bitrate_bps = min_bitrate * 1000;
stream.target_bitrate_bps = stream.max_bitrate_bps = max_bitrate * 1000; stream.target_bitrate_bps = stream.max_bitrate_bps = max_bitrate * 1000;
int max_qp = 56; int max_qp = kDefaultQpMax;
codec.GetParam(kCodecParamMaxQuantization, &max_qp); codec.GetParam(kCodecParamMaxQuantization, &max_qp);
stream.max_qp = max_qp; stream.max_qp = max_qp;
std::vector<webrtc::VideoStream> streams; std::vector<webrtc::VideoStream> streams;