(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:
parent
c3091a6c26
commit
933d88af58
@ -54,6 +54,8 @@ namespace cricket {
|
||||
// duration hasn't been implemented.
|
||||
static const int kNackHistoryMs = 1000;
|
||||
|
||||
static const int kDefaultQpMax = 56;
|
||||
|
||||
static const int kDefaultRtcpReceiverReportSsrc = 1;
|
||||
|
||||
struct VideoCodecPref {
|
||||
@ -186,7 +188,7 @@ std::vector<webrtc::VideoStream> WebRtcVideoEncoderFactory2::CreateVideoStreams(
|
||||
stream.min_bitrate_bps = min_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);
|
||||
stream.max_qp = max_qp;
|
||||
std::vector<webrtc::VideoStream> streams;
|
||||
|
Loading…
Reference in New Issue
Block a user