Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1472)

Unified Diff: talk/app/webrtc/webrtcsession.cc

Issue 1407693005: Remove simulcast bitrate modes. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: remove constants Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « talk/app/webrtc/mediaconstraintsinterface.cc ('k') | talk/media/base/mediachannel.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: talk/app/webrtc/webrtcsession.cc
diff --git a/talk/app/webrtc/webrtcsession.cc b/talk/app/webrtc/webrtcsession.cc
index af1dc61a93b184f8d9f26a8615aafb6fc2e077a3..95abeab77a9c9e6dc6e1a1033b083d9f41535e7a 100644
--- a/talk/app/webrtc/webrtcsession.cc
+++ b/talk/app/webrtc/webrtcsession.cc
@@ -696,22 +696,6 @@ bool WebRtcSession::Initialize(
MediaConstraintsInterface::kHighStartBitrate,
&video_options_.video_start_bitrate);
- if (FindConstraint(
- constraints,
- MediaConstraintsInterface::kVeryHighBitrate,
- &value,
- NULL)) {
- video_options_.video_highest_bitrate.Set(
- cricket::VideoOptions::VERY_HIGH);
- } else if (FindConstraint(
- constraints,
- MediaConstraintsInterface::kHighBitrate,
- &value,
- NULL)) {
- video_options_.video_highest_bitrate.Set(
- cricket::VideoOptions::HIGH);
- }
-
SetOptionFromOptionalConstraint(constraints,
MediaConstraintsInterface::kCombinedAudioVideoBwe,
&audio_options_.combined_audio_video_bwe);
« no previous file with comments | « talk/app/webrtc/mediaconstraintsinterface.cc ('k') | talk/media/base/mediachannel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698