OLD | NEW |
1 /* | 1 /* |
2 * libjingle | 2 * libjingle |
3 * Copyright 2015 Google Inc. | 3 * Copyright 2015 Google Inc. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions are met: | 6 * modification, are permitted provided that the following conditions are met: |
7 * | 7 * |
8 * 1. Redistributions of source code must retain the above copyright notice, | 8 * 1. Redistributions of source code must retain the above copyright notice, |
9 * this list of conditions and the following disclaimer. | 9 * this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright notice, | 10 * 2. Redistributions in binary form must reproduce the above copyright notice, |
(...skipping 24 matching lines...) Expand all Loading... |
35 namespace { | 35 namespace { |
36 | 36 |
37 const int kMinBandwidthBps = 30000; | 37 const int kMinBandwidthBps = 30000; |
38 const int kStartBandwidthBps = 300000; | 38 const int kStartBandwidthBps = 300000; |
39 const int kMaxBandwidthBps = 2000000; | 39 const int kMaxBandwidthBps = 2000000; |
40 | 40 |
41 class MediaController : public webrtc::MediaControllerInterface, | 41 class MediaController : public webrtc::MediaControllerInterface, |
42 public sigslot::has_slots<> { | 42 public sigslot::has_slots<> { |
43 public: | 43 public: |
44 MediaController(rtc::Thread* worker_thread, | 44 MediaController(rtc::Thread* worker_thread, |
| 45 const webrtc::MediaConfig& config, |
45 cricket::ChannelManager* channel_manager) | 46 cricket::ChannelManager* channel_manager) |
46 : worker_thread_(worker_thread), channel_manager_(channel_manager) { | 47 : worker_thread_(worker_thread), |
| 48 config_(config), |
| 49 channel_manager_(channel_manager) { |
47 RTC_DCHECK(nullptr != worker_thread); | 50 RTC_DCHECK(nullptr != worker_thread); |
48 worker_thread_->Invoke<void>( | 51 worker_thread_->Invoke<void>( |
49 rtc::Bind(&MediaController::Construct_w, this, | 52 rtc::Bind(&MediaController::Construct_w, this, |
50 channel_manager_->media_engine())); | 53 channel_manager_->media_engine())); |
51 } | 54 } |
52 ~MediaController() override { | 55 ~MediaController() override { |
53 worker_thread_->Invoke<void>(rtc::Bind(&MediaController::Destruct_w, this)); | 56 worker_thread_->Invoke<void>(rtc::Bind(&MediaController::Destruct_w, this)); |
54 } | 57 } |
55 | 58 |
56 webrtc::Call* call_w() override { | 59 webrtc::Call* call_w() override { |
57 RTC_DCHECK(worker_thread_->IsCurrent()); | 60 RTC_DCHECK(worker_thread_->IsCurrent()); |
58 return call_.get(); | 61 return call_.get(); |
59 } | 62 } |
60 | 63 |
61 cricket::ChannelManager* channel_manager() const override { | 64 cricket::ChannelManager* channel_manager() const override { |
62 return channel_manager_; | 65 return channel_manager_; |
63 } | 66 } |
| 67 const webrtc::MediaConfig* config() const override { |
| 68 return &config_; |
| 69 } |
64 | 70 |
65 private: | 71 private: |
66 void Construct_w(cricket::MediaEngineInterface* media_engine) { | 72 void Construct_w(cricket::MediaEngineInterface* media_engine) { |
67 RTC_DCHECK(worker_thread_->IsCurrent()); | 73 RTC_DCHECK(worker_thread_->IsCurrent()); |
68 RTC_DCHECK(media_engine); | 74 RTC_DCHECK(media_engine); |
69 webrtc::Call::Config config; | 75 webrtc::Call::Config config; |
70 config.audio_state = media_engine->GetAudioState(); | 76 config.audio_state = media_engine->GetAudioState(); |
71 config.bitrate_config.min_bitrate_bps = kMinBandwidthBps; | 77 config.bitrate_config.min_bitrate_bps = kMinBandwidthBps; |
72 config.bitrate_config.start_bitrate_bps = kStartBandwidthBps; | 78 config.bitrate_config.start_bitrate_bps = kStartBandwidthBps; |
73 config.bitrate_config.max_bitrate_bps = kMaxBandwidthBps; | 79 config.bitrate_config.max_bitrate_bps = kMaxBandwidthBps; |
74 call_.reset(webrtc::Call::Create(config)); | 80 call_.reset(webrtc::Call::Create(config)); |
75 } | 81 } |
76 void Destruct_w() { | 82 void Destruct_w() { |
77 RTC_DCHECK(worker_thread_->IsCurrent()); | 83 RTC_DCHECK(worker_thread_->IsCurrent()); |
78 call_.reset(); | 84 call_.reset(); |
79 } | 85 } |
80 | 86 |
81 rtc::Thread* const worker_thread_; | 87 rtc::Thread* const worker_thread_; |
| 88 const webrtc::MediaConfig config_; |
82 cricket::ChannelManager* const channel_manager_; | 89 cricket::ChannelManager* const channel_manager_; |
83 rtc::scoped_ptr<webrtc::Call> call_; | 90 rtc::scoped_ptr<webrtc::Call> call_; |
84 | 91 |
85 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(MediaController); | 92 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(MediaController); |
86 }; | 93 }; |
87 } // namespace { | 94 } // namespace { |
88 | 95 |
89 namespace webrtc { | 96 namespace webrtc { |
90 | 97 |
91 MediaControllerInterface* MediaControllerInterface::Create( | 98 MediaControllerInterface* MediaControllerInterface::Create( |
92 rtc::Thread* worker_thread, | 99 rtc::Thread* worker_thread, |
| 100 const MediaConfig& config, |
93 cricket::ChannelManager* channel_manager) { | 101 cricket::ChannelManager* channel_manager) { |
94 return new MediaController(worker_thread, channel_manager); | 102 return new MediaController(worker_thread, config, channel_manager); |
95 } | 103 } |
96 } // namespace webrtc | 104 } // namespace webrtc |
OLD | NEW |