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 11 matching lines...) Expand all Loading... |
22 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, | 22 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
23 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR | 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 | 24 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
25 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 */ | 26 */ |
27 | 27 |
28 #include "talk/app/webrtc/mediacontroller.h" | 28 #include "talk/app/webrtc/mediacontroller.h" |
29 | 29 |
30 #include "webrtc/base/bind.h" | 30 #include "webrtc/base/bind.h" |
31 #include "webrtc/base/checks.h" | 31 #include "webrtc/base/checks.h" |
32 #include "webrtc/call.h" | 32 #include "webrtc/p2p/base/transportchannel.h" |
33 | 33 |
34 namespace { | 34 namespace { |
35 | 35 |
36 const int kMinBandwidthBps = 30000; | 36 const int kMinBandwidthBps = 30000; |
37 const int kStartBandwidthBps = 300000; | 37 const int kStartBandwidthBps = 300000; |
38 const int kMaxBandwidthBps = 2000000; | 38 const int kMaxBandwidthBps = 2000000; |
39 | 39 |
40 class MediaController : public webrtc::MediaControllerInterface { | 40 class MediaController : public webrtc::MediaControllerInterface, |
| 41 public sigslot::has_slots<> { |
41 public: | 42 public: |
42 MediaController(rtc::Thread* worker_thread, | 43 MediaController(rtc::Thread* worker_thread, webrtc::VoiceEngine* voice_engine) |
43 webrtc::VoiceEngine* voice_engine) | 44 : worker_thread_(worker_thread), |
44 : worker_thread_(worker_thread) { | 45 call_factory_(new webrtc::CallFactory()) { |
45 RTC_DCHECK(nullptr != worker_thread); | 46 RTC_DCHECK(nullptr != worker_thread); |
46 worker_thread_->Invoke<void>( | 47 worker_thread_->Invoke<void>( |
47 rtc::Bind(&MediaController::Construct_w, this, voice_engine)); | 48 rtc::Bind(&MediaController::Construct_w, this, voice_engine)); |
| 49 } |
| 50 MediaController(webrtc::CallFactory* call_factory, |
| 51 rtc::Thread* worker_thread, |
| 52 webrtc::VoiceEngine* voice_engine) |
| 53 : worker_thread_(worker_thread), call_factory_(call_factory) { |
| 54 RTC_DCHECK(nullptr != worker_thread); |
| 55 worker_thread_->Invoke<void>( |
| 56 rtc::Bind(&MediaController::Construct_w, this, voice_engine)); |
48 } | 57 } |
49 ~MediaController() override { | 58 ~MediaController() override { |
50 worker_thread_->Invoke<void>( | 59 worker_thread_->Invoke<void>( |
51 rtc::Bind(&MediaController::Destruct_w, this)); | 60 rtc::Bind(&MediaController::Destruct_w, this)); |
52 } | 61 } |
53 | 62 |
54 webrtc::Call* call_w() override { | 63 webrtc::Call* call_w() override { |
55 RTC_DCHECK(worker_thread_->IsCurrent()); | 64 RTC_DCHECK(worker_thread_->IsCurrent()); |
56 return call_.get(); | 65 return call_.get(); |
57 } | 66 } |
58 | 67 |
| 68 void ConnectToSignalSentPacket_w( |
| 69 cricket::TransportChannel* transport_channel) override { |
| 70 RTC_DCHECK(worker_thread_->IsCurrent()); |
| 71 if (!transport_channels_.insert(transport_channel).second) { |
| 72 return; |
| 73 } |
| 74 transport_channel->SignalSentPacket.connect(this, |
| 75 &MediaController::OnSentPacket); |
| 76 } |
| 77 |
59 private: | 78 private: |
60 void Construct_w(webrtc::VoiceEngine* voice_engine) { | 79 void Construct_w(webrtc::VoiceEngine* voice_engine) { |
61 RTC_DCHECK(worker_thread_->IsCurrent()); | 80 RTC_DCHECK(worker_thread_->IsCurrent()); |
62 webrtc::Call::Config config; | 81 webrtc::Call::Config config; |
63 config.voice_engine = voice_engine; | 82 config.voice_engine = voice_engine; |
64 config.bitrate_config.min_bitrate_bps = kMinBandwidthBps; | 83 config.bitrate_config.min_bitrate_bps = kMinBandwidthBps; |
65 config.bitrate_config.start_bitrate_bps = kStartBandwidthBps; | 84 config.bitrate_config.start_bitrate_bps = kStartBandwidthBps; |
66 config.bitrate_config.max_bitrate_bps = kMaxBandwidthBps; | 85 config.bitrate_config.max_bitrate_bps = kMaxBandwidthBps; |
67 call_.reset(webrtc::Call::Create(config)); | 86 call_.reset(call_factory_->CreateCall(config)); |
68 } | 87 } |
69 void Destruct_w() { | 88 void Destruct_w() { |
70 RTC_DCHECK(worker_thread_->IsCurrent()); | 89 RTC_DCHECK(worker_thread_->IsCurrent()); |
71 call_.reset(nullptr); | 90 call_.reset(); |
| 91 } |
| 92 void OnSentPacket(cricket::TransportChannel* channel, |
| 93 const rtc::SentPacket& sent_packet) { |
| 94 call_->OnSentPacket(sent_packet); |
72 } | 95 } |
73 | 96 |
74 rtc::Thread* worker_thread_; | 97 rtc::Thread* const worker_thread_; |
| 98 rtc::scoped_ptr<webrtc::CallFactory> call_factory_; |
75 rtc::scoped_ptr<webrtc::Call> call_; | 99 rtc::scoped_ptr<webrtc::Call> call_; |
| 100 std::set<cricket::TransportChannel*> transport_channels_; |
76 | 101 |
77 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(MediaController); | 102 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(MediaController); |
78 }; | 103 }; |
79 } // namespace { | 104 } // namespace { |
80 | 105 |
81 namespace webrtc { | 106 namespace webrtc { |
82 | 107 |
83 MediaControllerInterface* MediaControllerInterface::Create( | 108 MediaControllerInterface* MediaControllerInterface::Create( |
84 rtc::Thread* worker_thread, webrtc::VoiceEngine* voice_engine) { | 109 rtc::Thread* worker_thread, webrtc::VoiceEngine* voice_engine) { |
85 return new MediaController(worker_thread, voice_engine); | 110 return new MediaController(worker_thread, voice_engine); |
86 } | 111 } |
| 112 MediaControllerInterface* MediaControllerInterface::Create( |
| 113 webrtc::CallFactory* call_factory, |
| 114 rtc::Thread* worker_thread, |
| 115 webrtc::VoiceEngine* voice_engine) { |
| 116 return new MediaController(call_factory, worker_thread, voice_engine); |
| 117 } |
87 } // namespace webrtc | 118 } // namespace webrtc |
OLD | NEW |