OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2015 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2015 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 #include "webrtc/api/mediacontroller.h" | 11 #include "webrtc/api/mediacontroller.h" |
12 | 12 |
13 #include "talk/session/media/channelmanager.h" | |
14 #include "webrtc/base/bind.h" | 13 #include "webrtc/base/bind.h" |
15 #include "webrtc/base/checks.h" | 14 #include "webrtc/base/checks.h" |
16 #include "webrtc/call.h" | 15 #include "webrtc/call.h" |
| 16 #include "webrtc/pc/channelmanager.h" |
17 | 17 |
18 namespace { | 18 namespace { |
19 | 19 |
20 const int kMinBandwidthBps = 30000; | 20 const int kMinBandwidthBps = 30000; |
21 const int kStartBandwidthBps = 300000; | 21 const int kStartBandwidthBps = 300000; |
22 const int kMaxBandwidthBps = 2000000; | 22 const int kMaxBandwidthBps = 2000000; |
23 | 23 |
24 class MediaController : public webrtc::MediaControllerInterface, | 24 class MediaController : public webrtc::MediaControllerInterface, |
25 public sigslot::has_slots<> { | 25 public sigslot::has_slots<> { |
26 public: | 26 public: |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 } // namespace { | 70 } // namespace { |
71 | 71 |
72 namespace webrtc { | 72 namespace webrtc { |
73 | 73 |
74 MediaControllerInterface* MediaControllerInterface::Create( | 74 MediaControllerInterface* MediaControllerInterface::Create( |
75 rtc::Thread* worker_thread, | 75 rtc::Thread* worker_thread, |
76 cricket::ChannelManager* channel_manager) { | 76 cricket::ChannelManager* channel_manager) { |
77 return new MediaController(worker_thread, channel_manager); | 77 return new MediaController(worker_thread, channel_manager); |
78 } | 78 } |
79 } // namespace webrtc | 79 } // namespace webrtc |
OLD | NEW |