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

Unified Diff: talk/session/media/channelmanager.h

Issue 1646253004: Split out dscp option from VideoOptions to new struct MediaChannelOptions. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebase. Created 4 years, 10 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/session/media/channel_unittest.cc ('k') | talk/session/media/channelmanager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: talk/session/media/channelmanager.h
diff --git a/talk/session/media/channelmanager.h b/talk/session/media/channelmanager.h
index de8555208fc03376a476a22abb990c9109580338..74c02d4224ca4bfe31f1af2ec4bdb26ac859dba6 100644
--- a/talk/session/media/channelmanager.h
+++ b/talk/session/media/channelmanager.h
@@ -102,7 +102,8 @@ class ChannelManager : public rtc::MessageHandler,
TransportController* transport_controller,
const std::string& content_name,
bool rtcp,
- const AudioOptions& options);
+ const MediaChannelOptions& options,
+ const AudioOptions& audio_options);
// Destroys a voice channel created with the Create API.
void DestroyVoiceChannel(VoiceChannel* voice_channel);
// Creates a video channel, synced with the specified voice channel, and
@@ -112,7 +113,8 @@ class ChannelManager : public rtc::MessageHandler,
TransportController* transport_controller,
const std::string& content_name,
bool rtcp,
- const VideoOptions& options);
+ const MediaChannelOptions& options,
+ const VideoOptions& video_options);
// Destroys a video channel created with the Create API.
void DestroyVideoChannel(VideoChannel* video_channel);
DataChannel* CreateDataChannel(TransportController* transport_controller,
@@ -197,14 +199,16 @@ class ChannelManager : public rtc::MessageHandler,
TransportController* transport_controller,
const std::string& content_name,
bool rtcp,
- const AudioOptions& options);
+ const MediaChannelOptions& options,
+ const AudioOptions& audio_options);
void DestroyVoiceChannel_w(VoiceChannel* voice_channel);
VideoChannel* CreateVideoChannel_w(
webrtc::MediaControllerInterface* media_controller,
TransportController* transport_controller,
const std::string& content_name,
bool rtcp,
- const VideoOptions& options);
+ const MediaChannelOptions& options,
+ const VideoOptions& video_options);
void DestroyVideoChannel_w(VideoChannel* video_channel);
DataChannel* CreateDataChannel_w(TransportController* transport_controller,
const std::string& content_name,
« no previous file with comments | « talk/session/media/channel_unittest.cc ('k') | talk/session/media/channelmanager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698