solenberg | 7b38f69 | 2015-09-07 04:38:33 -0700 | [diff] [blame] | 1 | /* |
| 2 | * libjingle |
| 3 | * Copyright 2015 Google Inc. |
| 4 | * |
| 5 | * Redistribution and use in source and binary forms, with or without |
| 6 | * modification, are permitted provided that the following conditions are met: |
| 7 | * |
| 8 | * 1. Redistributions of source code must retain the above copyright notice, |
| 9 | * this list of conditions and the following disclaimer. |
| 10 | * 2. Redistributions in binary form must reproduce the above copyright notice, |
| 11 | * this list of conditions and the following disclaimer in the documentation |
| 12 | * and/or other materials provided with the distribution. |
| 13 | * 3. The name of the author may not be used to endorse or promote products |
| 14 | * derived from this software without specific prior written permission. |
| 15 | * |
| 16 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 17 | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 18 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO |
| 19 | * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 20 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 21 | * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
| 22 | * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 23 | * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| 24 | * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
| 25 | * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 26 | */ |
| 27 | |
Henrik Kjellander | 15583c1 | 2016-02-10 10:53:12 +0100 | [diff] [blame] | 28 | #include "webrtc/api/mediacontroller.h" |
Fredrik Solenberg | 709ed67 | 2015-09-15 12:26:33 +0200 | [diff] [blame] | 29 | |
stefan | c1aeaf0 | 2015-10-15 07:26:07 -0700 | [diff] [blame] | 30 | #include "talk/session/media/channelmanager.h" |
Fredrik Solenberg | 709ed67 | 2015-09-15 12:26:33 +0200 | [diff] [blame] | 31 | #include "webrtc/base/bind.h" |
| 32 | #include "webrtc/base/checks.h" |
| 33 | #include "webrtc/call.h" |
| 34 | |
| 35 | namespace { |
| 36 | |
| 37 | const int kMinBandwidthBps = 30000; |
| 38 | const int kStartBandwidthBps = 300000; |
| 39 | const int kMaxBandwidthBps = 2000000; |
| 40 | |
stefan | c1aeaf0 | 2015-10-15 07:26:07 -0700 | [diff] [blame] | 41 | class MediaController : public webrtc::MediaControllerInterface, |
| 42 | public sigslot::has_slots<> { |
Fredrik Solenberg | 709ed67 | 2015-09-15 12:26:33 +0200 | [diff] [blame] | 43 | public: |
| 44 | MediaController(rtc::Thread* worker_thread, |
stefan | c1aeaf0 | 2015-10-15 07:26:07 -0700 | [diff] [blame] | 45 | cricket::ChannelManager* channel_manager) |
| 46 | : worker_thread_(worker_thread), channel_manager_(channel_manager) { |
henrikg | 91d6ede | 2015-09-17 00:24:34 -0700 | [diff] [blame] | 47 | RTC_DCHECK(nullptr != worker_thread); |
Fredrik Solenberg | 709ed67 | 2015-09-15 12:26:33 +0200 | [diff] [blame] | 48 | worker_thread_->Invoke<void>( |
stefan | c1aeaf0 | 2015-10-15 07:26:07 -0700 | [diff] [blame] | 49 | rtc::Bind(&MediaController::Construct_w, this, |
solenberg | 566ef24 | 2015-11-06 15:34:49 -0800 | [diff] [blame] | 50 | channel_manager_->media_engine())); |
Fredrik Solenberg | 709ed67 | 2015-09-15 12:26:33 +0200 | [diff] [blame] | 51 | } |
| 52 | ~MediaController() override { |
solenberg | 566ef24 | 2015-11-06 15:34:49 -0800 | [diff] [blame] | 53 | worker_thread_->Invoke<void>(rtc::Bind(&MediaController::Destruct_w, this)); |
Fredrik Solenberg | 709ed67 | 2015-09-15 12:26:33 +0200 | [diff] [blame] | 54 | } |
| 55 | |
| 56 | webrtc::Call* call_w() override { |
henrikg | 91d6ede | 2015-09-17 00:24:34 -0700 | [diff] [blame] | 57 | RTC_DCHECK(worker_thread_->IsCurrent()); |
Fredrik Solenberg | 709ed67 | 2015-09-15 12:26:33 +0200 | [diff] [blame] | 58 | return call_.get(); |
| 59 | } |
| 60 | |
stefan | c1aeaf0 | 2015-10-15 07:26:07 -0700 | [diff] [blame] | 61 | cricket::ChannelManager* channel_manager() const override { |
| 62 | return channel_manager_; |
| 63 | } |
| 64 | |
Fredrik Solenberg | 709ed67 | 2015-09-15 12:26:33 +0200 | [diff] [blame] | 65 | private: |
solenberg | 566ef24 | 2015-11-06 15:34:49 -0800 | [diff] [blame] | 66 | void Construct_w(cricket::MediaEngineInterface* media_engine) { |
henrikg | 91d6ede | 2015-09-17 00:24:34 -0700 | [diff] [blame] | 67 | RTC_DCHECK(worker_thread_->IsCurrent()); |
solenberg | 566ef24 | 2015-11-06 15:34:49 -0800 | [diff] [blame] | 68 | RTC_DCHECK(media_engine); |
Fredrik Solenberg | 709ed67 | 2015-09-15 12:26:33 +0200 | [diff] [blame] | 69 | webrtc::Call::Config config; |
solenberg | 566ef24 | 2015-11-06 15:34:49 -0800 | [diff] [blame] | 70 | config.audio_state = media_engine->GetAudioState(); |
Fredrik Solenberg | 709ed67 | 2015-09-15 12:26:33 +0200 | [diff] [blame] | 71 | config.bitrate_config.min_bitrate_bps = kMinBandwidthBps; |
| 72 | config.bitrate_config.start_bitrate_bps = kStartBandwidthBps; |
| 73 | config.bitrate_config.max_bitrate_bps = kMaxBandwidthBps; |
| 74 | call_.reset(webrtc::Call::Create(config)); |
| 75 | } |
| 76 | void Destruct_w() { |
henrikg | 91d6ede | 2015-09-17 00:24:34 -0700 | [diff] [blame] | 77 | RTC_DCHECK(worker_thread_->IsCurrent()); |
stefan | c1aeaf0 | 2015-10-15 07:26:07 -0700 | [diff] [blame] | 78 | call_.reset(); |
Fredrik Solenberg | 709ed67 | 2015-09-15 12:26:33 +0200 | [diff] [blame] | 79 | } |
| 80 | |
stefan | c1aeaf0 | 2015-10-15 07:26:07 -0700 | [diff] [blame] | 81 | rtc::Thread* const worker_thread_; |
| 82 | cricket::ChannelManager* const channel_manager_; |
Fredrik Solenberg | 709ed67 | 2015-09-15 12:26:33 +0200 | [diff] [blame] | 83 | rtc::scoped_ptr<webrtc::Call> call_; |
| 84 | |
henrikg | 3c089d7 | 2015-09-16 05:37:44 -0700 | [diff] [blame] | 85 | RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(MediaController); |
Fredrik Solenberg | 709ed67 | 2015-09-15 12:26:33 +0200 | [diff] [blame] | 86 | }; |
solenberg | 566ef24 | 2015-11-06 15:34:49 -0800 | [diff] [blame] | 87 | } // namespace { |
Fredrik Solenberg | 709ed67 | 2015-09-15 12:26:33 +0200 | [diff] [blame] | 88 | |
| 89 | namespace webrtc { |
| 90 | |
| 91 | MediaControllerInterface* MediaControllerInterface::Create( |
stefan | c1aeaf0 | 2015-10-15 07:26:07 -0700 | [diff] [blame] | 92 | rtc::Thread* worker_thread, |
| 93 | cricket::ChannelManager* channel_manager) { |
| 94 | return new MediaController(worker_thread, channel_manager); |
Fredrik Solenberg | 709ed67 | 2015-09-15 12:26:33 +0200 | [diff] [blame] | 95 | } |
solenberg | 566ef24 | 2015-11-06 15:34:49 -0800 | [diff] [blame] | 96 | } // namespace webrtc |