blob: 2ba16927783173414cc20263ed9a76932e5fedb4 [file] [log] [blame]
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +00001/*
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
3 *
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
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
pbos@webrtc.org3f45c2e2013-08-05 16:22:53 +000011#include <assert.h>
12#include <string.h>
13
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +000014#include <map>
15#include <vector>
16
pbos@webrtc.org24e20892013-10-28 16:32:01 +000017#include "webrtc/call.h"
18#include "webrtc/modules/rtp_rtcp/interface/rtp_header_parser.h"
pbos@webrtc.orgb5d2d162013-10-02 13:36:09 +000019#include "webrtc/system_wrappers/interface/critical_section_wrapper.h"
pbos@webrtc.org24e20892013-10-28 16:32:01 +000020#include "webrtc/system_wrappers/interface/rw_lock_wrapper.h"
pbos@webrtc.orgb5d2d162013-10-02 13:36:09 +000021#include "webrtc/system_wrappers/interface/scoped_ptr.h"
22#include "webrtc/system_wrappers/interface/trace.h"
pbos@webrtc.org24e20892013-10-28 16:32:01 +000023#include "webrtc/video/video_receive_stream.h"
24#include "webrtc/video/video_send_stream.h"
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +000025#include "webrtc/video_engine/include/vie_base.h"
26#include "webrtc/video_engine/include/vie_codec.h"
27#include "webrtc/video_engine/include/vie_rtp_rtcp.h"
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +000028
29namespace webrtc {
pbos@webrtc.org24e20892013-10-28 16:32:01 +000030namespace internal {
31class Call : public webrtc::Call, public PacketReceiver {
32 public:
33 Call(webrtc::VideoEngine* video_engine, const Call::Config& config);
34 virtual ~Call();
35
36 virtual PacketReceiver* Receiver() OVERRIDE;
37 virtual std::vector<VideoCodec> GetVideoCodecs() OVERRIDE;
38
39 virtual VideoSendStream::Config GetDefaultSendConfig() OVERRIDE;
40
pbos@webrtc.org964d78e2013-11-20 10:40:25 +000041 virtual VideoSendStream* CreateVideoSendStream(
pbos@webrtc.org24e20892013-10-28 16:32:01 +000042 const VideoSendStream::Config& config) OVERRIDE;
43
pbos@webrtc.org12a93e02013-11-21 13:49:43 +000044 virtual void DestroyVideoSendStream(webrtc::VideoSendStream* send_stream)
45 OVERRIDE;
pbos@webrtc.org24e20892013-10-28 16:32:01 +000046
47 virtual VideoReceiveStream::Config GetDefaultReceiveConfig() OVERRIDE;
48
pbos@webrtc.org964d78e2013-11-20 10:40:25 +000049 virtual VideoReceiveStream* CreateVideoReceiveStream(
pbos@webrtc.org24e20892013-10-28 16:32:01 +000050 const VideoReceiveStream::Config& config) OVERRIDE;
51
pbos@webrtc.org12a93e02013-11-21 13:49:43 +000052 virtual void DestroyVideoReceiveStream(
pbos@webrtc.org24e20892013-10-28 16:32:01 +000053 webrtc::VideoReceiveStream* receive_stream) OVERRIDE;
54
55 virtual uint32_t SendBitrateEstimate() OVERRIDE;
56 virtual uint32_t ReceiveBitrateEstimate() OVERRIDE;
57
58 virtual bool DeliverPacket(const uint8_t* packet, size_t length) OVERRIDE;
59
60 private:
61 bool DeliverRtcp(const uint8_t* packet, size_t length);
62 bool DeliverRtp(const RTPHeader& header,
63 const uint8_t* packet,
64 size_t length);
65
66 Call::Config config_;
67
68 std::map<uint32_t, VideoReceiveStream*> receive_ssrcs_;
69 scoped_ptr<RWLockWrapper> receive_lock_;
70
71 std::map<uint32_t, VideoSendStream*> send_ssrcs_;
72 scoped_ptr<RWLockWrapper> send_lock_;
73
74 scoped_ptr<RtpHeaderParser> rtp_header_parser_;
75
76 webrtc::VideoEngine* video_engine_;
77 ViERTP_RTCP* rtp_rtcp_;
78 ViECodec* codec_;
79
80 DISALLOW_COPY_AND_ASSIGN(Call);
81};
82} // internal
pbos@webrtc.orgc2014fd2013-08-14 13:52:52 +000083
pbos@webrtc.orgb5d2d162013-10-02 13:36:09 +000084class TraceDispatcher : public TraceCallback {
85 public:
86 TraceDispatcher()
87 : crit_(CriticalSectionWrapper::CreateCriticalSection()),
pbos@webrtc.orga6063fd2013-10-02 16:22:18 +000088 initialized_(false),
pbos@webrtc.orgb5d2d162013-10-02 13:36:09 +000089 filter_(kTraceNone) {}
90
pbos@webrtc.orga6063fd2013-10-02 16:22:18 +000091 ~TraceDispatcher() {
92 if (initialized_) {
93 Trace::ReturnTrace();
94 VideoEngine::SetTraceCallback(NULL);
95 }
96 }
97
pbos@webrtc.orgb5d2d162013-10-02 13:36:09 +000098 virtual void Print(TraceLevel level,
99 const char* message,
100 int length) OVERRIDE {
101 CriticalSectionScoped lock(crit_.get());
102 for (std::map<Call*, Call::Config*>::iterator it = callbacks_.begin();
103 it != callbacks_.end();
104 ++it) {
105 if ((level & it->second->trace_filter) != kTraceNone)
106 it->second->trace_callback->Print(level, message, length);
107 }
108 }
109
110 void RegisterCallback(Call* call, Call::Config* config) {
111 if (config->trace_callback == NULL)
112 return;
113
114 CriticalSectionScoped lock(crit_.get());
115 callbacks_[call] = config;
116
pbos@webrtc.orga6063fd2013-10-02 16:22:18 +0000117 filter_ |= config->trace_filter;
118 if (filter_ != kTraceNone && !initialized_) {
119 initialized_ = true;
120 Trace::CreateTrace();
121 VideoEngine::SetTraceCallback(this);
pbos@webrtc.orgb5d2d162013-10-02 13:36:09 +0000122 }
pbos@webrtc.orga6063fd2013-10-02 16:22:18 +0000123 VideoEngine::SetTraceFilter(filter_);
pbos@webrtc.orgb5d2d162013-10-02 13:36:09 +0000124 }
125
126 void DeregisterCallback(Call* call) {
127 CriticalSectionScoped lock(crit_.get());
128 callbacks_.erase(call);
pbos@webrtc.orgb5d2d162013-10-02 13:36:09 +0000129
130 filter_ = kTraceNone;
131 for (std::map<Call*, Call::Config*>::iterator it = callbacks_.begin();
132 it != callbacks_.end();
133 ++it) {
134 filter_ |= it->second->trace_filter;
135 }
136
137 VideoEngine::SetTraceFilter(filter_);
pbos@webrtc.orgb5d2d162013-10-02 13:36:09 +0000138 }
139
140 private:
141 scoped_ptr<CriticalSectionWrapper> crit_;
pbos@webrtc.orga6063fd2013-10-02 16:22:18 +0000142 bool initialized_;
pbos@webrtc.orgb5d2d162013-10-02 13:36:09 +0000143 unsigned int filter_;
144 std::map<Call*, Call::Config*> callbacks_;
145};
146
147namespace internal {
pbos@webrtc.org24e20892013-10-28 16:32:01 +0000148TraceDispatcher* global_trace_dispatcher = NULL;
pbos@webrtc.orgb5d2d162013-10-02 13:36:09 +0000149} // internal
150
pbos@webrtc.orgbf6d5722013-09-09 15:04:25 +0000151Call* Call::Create(const Call::Config& config) {
pbos@webrtc.orgb5d2d162013-10-02 13:36:09 +0000152 if (internal::global_trace_dispatcher == NULL) {
153 TraceDispatcher* dispatcher = new TraceDispatcher();
154 // TODO(pbos): Atomic compare and exchange.
155 if (internal::global_trace_dispatcher == NULL) {
156 internal::global_trace_dispatcher = dispatcher;
157 } else {
158 delete dispatcher;
159 }
160 }
161
pbos@webrtc.orgbf6d5722013-09-09 15:04:25 +0000162 VideoEngine* video_engine = VideoEngine::Create();
pbos@webrtc.orgc2014fd2013-08-14 13:52:52 +0000163 assert(video_engine != NULL);
164
pbos@webrtc.orgbf6d5722013-09-09 15:04:25 +0000165 return new internal::Call(video_engine, config);
pbos@webrtc.orgc2014fd2013-08-14 13:52:52 +0000166}
pbos@webrtc.orgc2014fd2013-08-14 13:52:52 +0000167
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +0000168namespace internal {
169
pbos@webrtc.orgbf6d5722013-09-09 15:04:25 +0000170Call::Call(webrtc::VideoEngine* video_engine, const Call::Config& config)
mflodman@webrtc.orgbf76ae22013-07-23 11:35:00 +0000171 : config_(config),
pbos@webrtc.org63988b22013-06-10 13:48:26 +0000172 receive_lock_(RWLockWrapper::CreateRWLock()),
173 send_lock_(RWLockWrapper::CreateRWLock()),
pbos@webrtc.org78ab5112013-08-05 12:49:22 +0000174 rtp_header_parser_(RtpHeaderParser::Create()),
pbos@webrtc.org63988b22013-06-10 13:48:26 +0000175 video_engine_(video_engine) {
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +0000176 assert(video_engine != NULL);
mflodman@webrtc.orgbf76ae22013-07-23 11:35:00 +0000177 assert(config.send_transport != NULL);
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +0000178
pbos@webrtc.orgb5d2d162013-10-02 13:36:09 +0000179 global_trace_dispatcher->RegisterCallback(this, &config_);
180
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +0000181 rtp_rtcp_ = ViERTP_RTCP::GetInterface(video_engine_);
182 assert(rtp_rtcp_ != NULL);
183
184 codec_ = ViECodec::GetInterface(video_engine_);
185 assert(codec_ != NULL);
186}
187
pbos@webrtc.orgbf6d5722013-09-09 15:04:25 +0000188Call::~Call() {
pbos@webrtc.orgb5d2d162013-10-02 13:36:09 +0000189 global_trace_dispatcher->DeregisterCallback(this);
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +0000190 codec_->Release();
pbos@webrtc.orgc2014fd2013-08-14 13:52:52 +0000191 rtp_rtcp_->Release();
192 webrtc::VideoEngine::Delete(video_engine_);
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +0000193}
194
pbos@webrtc.orgbf6d5722013-09-09 15:04:25 +0000195PacketReceiver* Call::Receiver() { return this; }
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +0000196
pbos@webrtc.orgbf6d5722013-09-09 15:04:25 +0000197std::vector<VideoCodec> Call::GetVideoCodecs() {
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +0000198 std::vector<VideoCodec> codecs;
199
200 VideoCodec codec;
201 for (size_t i = 0; i < static_cast<size_t>(codec_->NumberOfCodecs()); ++i) {
pbos@webrtc.org24e20892013-10-28 16:32:01 +0000202 if (codec_->GetCodec(static_cast<unsigned char>(i), codec) == 0) {
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +0000203 codecs.push_back(codec);
204 }
205 }
206 return codecs;
207}
208
pbos@webrtc.orgbf6d5722013-09-09 15:04:25 +0000209VideoSendStream::Config Call::GetDefaultSendConfig() {
pbos@webrtc.org6f1c3ef2013-06-05 11:33:21 +0000210 VideoSendStream::Config config;
211 codec_->GetCodec(0, config.codec);
212 return config;
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +0000213}
214
pbos@webrtc.org964d78e2013-11-20 10:40:25 +0000215VideoSendStream* Call::CreateVideoSendStream(
216 const VideoSendStream::Config& config) {
pbos@webrtc.org63988b22013-06-10 13:48:26 +0000217 assert(config.rtp.ssrcs.size() > 0);
218 assert(config.codec.numberOfSimulcastStreams == 0 ||
219 config.codec.numberOfSimulcastStreams == config.rtp.ssrcs.size());
220
pbos@webrtc.org78ab5112013-08-05 12:49:22 +0000221 VideoSendStream* send_stream = new VideoSendStream(
222 config_.send_transport, config_.overuse_detection, video_engine_, config);
pbos@webrtc.org63988b22013-06-10 13:48:26 +0000223
224 WriteLockScoped write_lock(*send_lock_);
225 for (size_t i = 0; i < config.rtp.ssrcs.size(); ++i) {
226 assert(send_ssrcs_.find(config.rtp.ssrcs[i]) == send_ssrcs_.end());
227 send_ssrcs_[config.rtp.ssrcs[i]] = send_stream;
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +0000228 }
229 return send_stream;
230}
231
pbos@webrtc.org12a93e02013-11-21 13:49:43 +0000232void Call::DestroyVideoSendStream(webrtc::VideoSendStream* send_stream) {
pbos@webrtc.org00208582013-09-05 12:38:54 +0000233 assert(send_stream != NULL);
234
235 VideoSendStream* send_stream_impl = NULL;
236 {
237 WriteLockScoped write_lock(*send_lock_);
238 for (std::map<uint32_t, VideoSendStream*>::iterator it =
239 send_ssrcs_.begin();
240 it != send_ssrcs_.end();
241 ++it) {
242 if (it->second == static_cast<VideoSendStream*>(send_stream)) {
243 send_stream_impl = it->second;
244 send_ssrcs_.erase(it);
245 break;
246 }
247 }
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +0000248 }
pbos@webrtc.org00208582013-09-05 12:38:54 +0000249
250 assert(send_stream_impl != NULL);
251 delete send_stream_impl;
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +0000252}
253
pbos@webrtc.orgbf6d5722013-09-09 15:04:25 +0000254VideoReceiveStream::Config Call::GetDefaultReceiveConfig() {
pbos@webrtc.orgc1797062013-08-23 09:19:30 +0000255 return VideoReceiveStream::Config();
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +0000256}
257
pbos@webrtc.org964d78e2013-11-20 10:40:25 +0000258VideoReceiveStream* Call::CreateVideoReceiveStream(
pbos@webrtc.orgc1797062013-08-23 09:19:30 +0000259 const VideoReceiveStream::Config& config) {
stefan@webrtc.orge0284102013-11-18 11:45:11 +0000260 VideoReceiveStream* receive_stream = new VideoReceiveStream(
261 video_engine_, config, config_.send_transport, config_.voice_engine);
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +0000262
pbos@webrtc.org63988b22013-06-10 13:48:26 +0000263 WriteLockScoped write_lock(*receive_lock_);
264 assert(receive_ssrcs_.find(config.rtp.ssrc) == receive_ssrcs_.end());
265 receive_ssrcs_[config.rtp.ssrc] = receive_stream;
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +0000266 return receive_stream;
267}
268
pbos@webrtc.org12a93e02013-11-21 13:49:43 +0000269void Call::DestroyVideoReceiveStream(
270 webrtc::VideoReceiveStream* receive_stream) {
pbos@webrtc.org00208582013-09-05 12:38:54 +0000271 assert(receive_stream != NULL);
272
273 VideoReceiveStream* receive_stream_impl = NULL;
274 {
275 WriteLockScoped write_lock(*receive_lock_);
276 for (std::map<uint32_t, VideoReceiveStream*>::iterator it =
277 receive_ssrcs_.begin();
278 it != receive_ssrcs_.end();
279 ++it) {
280 if (it->second == static_cast<VideoReceiveStream*>(receive_stream)) {
281 receive_stream_impl = it->second;
282 receive_ssrcs_.erase(it);
283 break;
284 }
285 }
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +0000286 }
pbos@webrtc.org00208582013-09-05 12:38:54 +0000287
288 assert(receive_stream_impl != NULL);
289 delete receive_stream_impl;
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +0000290}
291
pbos@webrtc.orgbf6d5722013-09-09 15:04:25 +0000292uint32_t Call::SendBitrateEstimate() {
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +0000293 // TODO(pbos): Return send-bitrate estimate
294 return 0;
295}
296
pbos@webrtc.orgbf6d5722013-09-09 15:04:25 +0000297uint32_t Call::ReceiveBitrateEstimate() {
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +0000298 // TODO(pbos): Return receive-bitrate estimate
299 return 0;
300}
301
pbos@webrtc.orgbf6d5722013-09-09 15:04:25 +0000302bool Call::DeliverRtcp(const uint8_t* packet, size_t length) {
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +0000303 // TODO(pbos): Figure out what channel needs it actually.
304 // Do NOT broadcast! Also make sure it's a valid packet.
305 bool rtcp_delivered = false;
pbos@webrtc.org78ab5112013-08-05 12:49:22 +0000306 {
307 ReadLockScoped read_lock(*receive_lock_);
308 for (std::map<uint32_t, VideoReceiveStream*>::iterator it =
309 receive_ssrcs_.begin();
310 it != receive_ssrcs_.end();
311 ++it) {
pbos@webrtc.org00112522013-09-20 11:56:26 +0000312 if (it->second->DeliverRtcp(packet, length))
pbos@webrtc.org78ab5112013-08-05 12:49:22 +0000313 rtcp_delivered = true;
pbos@webrtc.orgce851092013-08-05 12:01:36 +0000314 }
315 }
316
pbos@webrtc.org78ab5112013-08-05 12:49:22 +0000317 {
318 ReadLockScoped read_lock(*send_lock_);
319 for (std::map<uint32_t, VideoSendStream*>::iterator it =
320 send_ssrcs_.begin();
321 it != send_ssrcs_.end();
322 ++it) {
pbos@webrtc.org00112522013-09-20 11:56:26 +0000323 if (it->second->DeliverRtcp(packet, length))
pbos@webrtc.org78ab5112013-08-05 12:49:22 +0000324 rtcp_delivered = true;
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +0000325 }
326 }
327 return rtcp_delivered;
328}
329
pbos@webrtc.orgbf6d5722013-09-09 15:04:25 +0000330bool Call::DeliverRtp(const RTPHeader& header,
331 const uint8_t* packet,
332 size_t length) {
pbos@webrtc.org78ab5112013-08-05 12:49:22 +0000333 VideoReceiveStream* receiver;
334 {
335 ReadLockScoped read_lock(*receive_lock_);
336 std::map<uint32_t, VideoReceiveStream*>::iterator it =
337 receive_ssrcs_.find(header.ssrc);
338 if (it == receive_ssrcs_.end()) {
339 // TODO(pbos): Log some warning, SSRC without receiver.
340 return false;
341 }
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +0000342
pbos@webrtc.org78ab5112013-08-05 12:49:22 +0000343 receiver = it->second;
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +0000344 }
pbos@webrtc.orgce851092013-08-05 12:01:36 +0000345 return receiver->DeliverRtp(static_cast<const uint8_t*>(packet), length);
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +0000346}
347
pbos@webrtc.orgbf6d5722013-09-09 15:04:25 +0000348bool Call::DeliverPacket(const uint8_t* packet, size_t length) {
pbos@webrtc.org78ab5112013-08-05 12:49:22 +0000349 // TODO(pbos): ExtensionMap if there are extensions.
350 if (RtpHeaderParser::IsRtcp(packet, static_cast<int>(length)))
351 return DeliverRtcp(packet, length);
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +0000352
pbos@webrtc.org78ab5112013-08-05 12:49:22 +0000353 RTPHeader rtp_header;
354 if (!rtp_header_parser_->Parse(packet, static_cast<int>(length), &rtp_header))
355 return false;
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +0000356
pbos@webrtc.org78ab5112013-08-05 12:49:22 +0000357 return DeliverRtp(rtp_header, packet, length);
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +0000358}
359
360} // namespace internal
361} // namespace webrtc