(Auto)update libjingle 71575585-> 71599033

git-svn-id: http://webrtc.googlecode.com/svn/trunk@6750 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
buildbot@webrtc.org
2014-07-21 20:38:58 +00:00
parent ceafa8cce9
commit e69b061926
4 changed files with 0 additions and 26 deletions

View File

@@ -97,8 +97,6 @@ const char MediaConstraintsInterface::kImprovedWifiBwe[] =
"googImprovedWifiBwe";
const char MediaConstraintsInterface::kScreencastMinBitrate[] =
"googScreencastMinBitrate";
const char MediaConstraintsInterface::kSkipEncodingUnusedStreams[] =
"googSkipEncodingUnusedStreams";
// TODO(ronghuawu): Remove once cpu overuse detection is stable.
const char MediaConstraintsInterface::kCpuOveruseDetection[] =
"googCpuOveruseDetection";

View File

@@ -117,8 +117,6 @@ class MediaConstraintsInterface {
// googSuspendBelowMinBitrate
static const char kImprovedWifiBwe[]; // googImprovedWifiBwe
static const char kScreencastMinBitrate[]; // googScreencastMinBitrate
static const char kSkipEncodingUnusedStreams[];
// googSkipEncodingUnusedStreams
static const char kCpuOveruseDetection[]; // googCpuOveruseDetection
static const char kCpuUnderuseThreshold[]; // googCpuUnderuseThreshold
static const char kCpuOveruseThreshold[]; // googCpuOveruseThreshold

View File

@@ -548,14 +548,6 @@ bool WebRtcSession::Initialize(
video_options_.suspend_below_min_bitrate.Set(value);
}
if (FindConstraint(
constraints,
MediaConstraintsInterface::kSkipEncodingUnusedStreams,
&value,
NULL)) {
video_options_.skip_encoding_unused_streams.Set(value);
}
SetOptionFromOptionalConstraint(constraints,
MediaConstraintsInterface::kScreencastMinBitrate,
&video_options_.screencast_min_bitrate);