blob: 68d48437675e4a1e87a102c0d6366fb85bfc5c9f [file] [log] [blame]
pbos@webrtc.org29d58392013-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.org12dc1a32013-08-05 16:22:53 +000011#include <assert.h>
12#include <string.h>
13
pbos@webrtc.org29d58392013-05-16 12:08:03 +000014#include <map>
15#include <vector>
16
pbos@webrtc.org16e03b72013-10-28 16:32:01 +000017#include "webrtc/call.h"
18#include "webrtc/modules/rtp_rtcp/interface/rtp_header_parser.h"
pbos@webrtc.orgde74b642013-10-02 13:36:09 +000019#include "webrtc/system_wrappers/interface/critical_section_wrapper.h"
pbos@webrtc.org16e03b72013-10-28 16:32:01 +000020#include "webrtc/system_wrappers/interface/rw_lock_wrapper.h"
pbos@webrtc.orgde74b642013-10-02 13:36:09 +000021#include "webrtc/system_wrappers/interface/scoped_ptr.h"
22#include "webrtc/system_wrappers/interface/trace.h"
pbos@webrtc.org16e03b72013-10-28 16:32:01 +000023#include "webrtc/video/video_receive_stream.h"
24#include "webrtc/video/video_send_stream.h"
pbos@webrtc.org29d58392013-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.org29d58392013-05-16 12:08:03 +000028
29namespace webrtc {
pbos@webrtc.org16e03b72013-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.org5a636552013-11-20 10:40:25 +000041 virtual VideoSendStream* CreateVideoSendStream(
pbos@webrtc.org16e03b72013-10-28 16:32:01 +000042 const VideoSendStream::Config& config) OVERRIDE;
43
pbos@webrtc.org64887612013-11-14 08:58:14 +000044 virtual void DestroySendStream(webrtc::VideoSendStream* send_stream) OVERRIDE;
pbos@webrtc.org16e03b72013-10-28 16:32:01 +000045
46 virtual VideoReceiveStream::Config GetDefaultReceiveConfig() OVERRIDE;
47
pbos@webrtc.org5a636552013-11-20 10:40:25 +000048 virtual VideoReceiveStream* CreateVideoReceiveStream(
pbos@webrtc.org16e03b72013-10-28 16:32:01 +000049 const VideoReceiveStream::Config& config) OVERRIDE;
50
51 virtual void DestroyReceiveStream(
52 webrtc::VideoReceiveStream* receive_stream) OVERRIDE;
53
54 virtual uint32_t SendBitrateEstimate() OVERRIDE;
55 virtual uint32_t ReceiveBitrateEstimate() OVERRIDE;
56
57 virtual bool DeliverPacket(const uint8_t* packet, size_t length) OVERRIDE;
58
59 private:
60 bool DeliverRtcp(const uint8_t* packet, size_t length);
61 bool DeliverRtp(const RTPHeader& header,
62 const uint8_t* packet,
63 size_t length);
64
65 Call::Config config_;
66
67 std::map<uint32_t, VideoReceiveStream*> receive_ssrcs_;
68 scoped_ptr<RWLockWrapper> receive_lock_;
69
70 std::map<uint32_t, VideoSendStream*> send_ssrcs_;
71 scoped_ptr<RWLockWrapper> send_lock_;
72
73 scoped_ptr<RtpHeaderParser> rtp_header_parser_;
74
75 webrtc::VideoEngine* video_engine_;
76 ViERTP_RTCP* rtp_rtcp_;
77 ViECodec* codec_;
78
79 DISALLOW_COPY_AND_ASSIGN(Call);
80};
81} // internal
pbos@webrtc.orgfd39e132013-08-14 13:52:52 +000082
pbos@webrtc.orgde74b642013-10-02 13:36:09 +000083class TraceDispatcher : public TraceCallback {
84 public:
85 TraceDispatcher()
86 : crit_(CriticalSectionWrapper::CreateCriticalSection()),
pbos@webrtc.org9b5c8072013-10-02 16:22:18 +000087 initialized_(false),
pbos@webrtc.orgde74b642013-10-02 13:36:09 +000088 filter_(kTraceNone) {}
89
pbos@webrtc.org9b5c8072013-10-02 16:22:18 +000090 ~TraceDispatcher() {
91 if (initialized_) {
92 Trace::ReturnTrace();
93 VideoEngine::SetTraceCallback(NULL);
94 }
95 }
96
pbos@webrtc.orgde74b642013-10-02 13:36:09 +000097 virtual void Print(TraceLevel level,
98 const char* message,
99 int length) OVERRIDE {
100 CriticalSectionScoped lock(crit_.get());
101 for (std::map<Call*, Call::Config*>::iterator it = callbacks_.begin();
102 it != callbacks_.end();
103 ++it) {
104 if ((level & it->second->trace_filter) != kTraceNone)
105 it->second->trace_callback->Print(level, message, length);
106 }
107 }
108
109 void RegisterCallback(Call* call, Call::Config* config) {
110 if (config->trace_callback == NULL)
111 return;
112
113 CriticalSectionScoped lock(crit_.get());
114 callbacks_[call] = config;
115
pbos@webrtc.org9b5c8072013-10-02 16:22:18 +0000116 filter_ |= config->trace_filter;
117 if (filter_ != kTraceNone && !initialized_) {
118 initialized_ = true;
119 Trace::CreateTrace();
120 VideoEngine::SetTraceCallback(this);
pbos@webrtc.orgde74b642013-10-02 13:36:09 +0000121 }
pbos@webrtc.org9b5c8072013-10-02 16:22:18 +0000122 VideoEngine::SetTraceFilter(filter_);
pbos@webrtc.orgde74b642013-10-02 13:36:09 +0000123 }
124
125 void DeregisterCallback(Call* call) {
126 CriticalSectionScoped lock(crit_.get());
127 callbacks_.erase(call);
pbos@webrtc.orgde74b642013-10-02 13:36:09 +0000128
129 filter_ = kTraceNone;
130 for (std::map<Call*, Call::Config*>::iterator it = callbacks_.begin();
131 it != callbacks_.end();
132 ++it) {
133 filter_ |= it->second->trace_filter;
134 }
135
136 VideoEngine::SetTraceFilter(filter_);
pbos@webrtc.orgde74b642013-10-02 13:36:09 +0000137 }
138
139 private:
140 scoped_ptr<CriticalSectionWrapper> crit_;
pbos@webrtc.org9b5c8072013-10-02 16:22:18 +0000141 bool initialized_;
pbos@webrtc.orgde74b642013-10-02 13:36:09 +0000142 unsigned int filter_;
143 std::map<Call*, Call::Config*> callbacks_;
144};
145
146namespace internal {
pbos@webrtc.org16e03b72013-10-28 16:32:01 +0000147TraceDispatcher* global_trace_dispatcher = NULL;
pbos@webrtc.orgde74b642013-10-02 13:36:09 +0000148} // internal
149
pbos@webrtc.org841c8a42013-09-09 15:04:25 +0000150Call* Call::Create(const Call::Config& config) {
pbos@webrtc.orgde74b642013-10-02 13:36:09 +0000151 if (internal::global_trace_dispatcher == NULL) {
152 TraceDispatcher* dispatcher = new TraceDispatcher();
153 // TODO(pbos): Atomic compare and exchange.
154 if (internal::global_trace_dispatcher == NULL) {
155 internal::global_trace_dispatcher = dispatcher;
156 } else {
157 delete dispatcher;
158 }
159 }
160
pbos@webrtc.org841c8a42013-09-09 15:04:25 +0000161 VideoEngine* video_engine = VideoEngine::Create();
pbos@webrtc.orgfd39e132013-08-14 13:52:52 +0000162 assert(video_engine != NULL);
163
pbos@webrtc.org841c8a42013-09-09 15:04:25 +0000164 return new internal::Call(video_engine, config);
pbos@webrtc.orgfd39e132013-08-14 13:52:52 +0000165}
pbos@webrtc.orgfd39e132013-08-14 13:52:52 +0000166
pbos@webrtc.org29d58392013-05-16 12:08:03 +0000167namespace internal {
168
pbos@webrtc.org841c8a42013-09-09 15:04:25 +0000169Call::Call(webrtc::VideoEngine* video_engine, const Call::Config& config)
mflodman@webrtc.org6879c8a2013-07-23 11:35:00 +0000170 : config_(config),
pbos@webrtc.org1819fd72013-06-10 13:48:26 +0000171 receive_lock_(RWLockWrapper::CreateRWLock()),
172 send_lock_(RWLockWrapper::CreateRWLock()),
pbos@webrtc.org40523702013-08-05 12:49:22 +0000173 rtp_header_parser_(RtpHeaderParser::Create()),
pbos@webrtc.org1819fd72013-06-10 13:48:26 +0000174 video_engine_(video_engine) {
pbos@webrtc.org29d58392013-05-16 12:08:03 +0000175 assert(video_engine != NULL);
mflodman@webrtc.org6879c8a2013-07-23 11:35:00 +0000176 assert(config.send_transport != NULL);
pbos@webrtc.org29d58392013-05-16 12:08:03 +0000177
pbos@webrtc.orgde74b642013-10-02 13:36:09 +0000178 global_trace_dispatcher->RegisterCallback(this, &config_);
179
pbos@webrtc.org29d58392013-05-16 12:08:03 +0000180 rtp_rtcp_ = ViERTP_RTCP::GetInterface(video_engine_);
181 assert(rtp_rtcp_ != NULL);
182
183 codec_ = ViECodec::GetInterface(video_engine_);
184 assert(codec_ != NULL);
185}
186
pbos@webrtc.org841c8a42013-09-09 15:04:25 +0000187Call::~Call() {
pbos@webrtc.orgde74b642013-10-02 13:36:09 +0000188 global_trace_dispatcher->DeregisterCallback(this);
pbos@webrtc.org29d58392013-05-16 12:08:03 +0000189 codec_->Release();
pbos@webrtc.orgfd39e132013-08-14 13:52:52 +0000190 rtp_rtcp_->Release();
191 webrtc::VideoEngine::Delete(video_engine_);
pbos@webrtc.org29d58392013-05-16 12:08:03 +0000192}
193
pbos@webrtc.org841c8a42013-09-09 15:04:25 +0000194PacketReceiver* Call::Receiver() { return this; }
pbos@webrtc.org29d58392013-05-16 12:08:03 +0000195
pbos@webrtc.org841c8a42013-09-09 15:04:25 +0000196std::vector<VideoCodec> Call::GetVideoCodecs() {
pbos@webrtc.org29d58392013-05-16 12:08:03 +0000197 std::vector<VideoCodec> codecs;
198
199 VideoCodec codec;
200 for (size_t i = 0; i < static_cast<size_t>(codec_->NumberOfCodecs()); ++i) {
pbos@webrtc.org16e03b72013-10-28 16:32:01 +0000201 if (codec_->GetCodec(static_cast<unsigned char>(i), codec) == 0) {
pbos@webrtc.org29d58392013-05-16 12:08:03 +0000202 codecs.push_back(codec);
203 }
204 }
205 return codecs;
206}
207
pbos@webrtc.org841c8a42013-09-09 15:04:25 +0000208VideoSendStream::Config Call::GetDefaultSendConfig() {
pbos@webrtc.org025f4f12013-06-05 11:33:21 +0000209 VideoSendStream::Config config;
210 codec_->GetCodec(0, config.codec);
211 return config;
pbos@webrtc.org29d58392013-05-16 12:08:03 +0000212}
213
pbos@webrtc.org5a636552013-11-20 10:40:25 +0000214VideoSendStream* Call::CreateVideoSendStream(
215 const VideoSendStream::Config& config) {
pbos@webrtc.org1819fd72013-06-10 13:48:26 +0000216 assert(config.rtp.ssrcs.size() > 0);
217 assert(config.codec.numberOfSimulcastStreams == 0 ||
218 config.codec.numberOfSimulcastStreams == config.rtp.ssrcs.size());
219
pbos@webrtc.org40523702013-08-05 12:49:22 +0000220 VideoSendStream* send_stream = new VideoSendStream(
221 config_.send_transport, config_.overuse_detection, video_engine_, config);
pbos@webrtc.org1819fd72013-06-10 13:48:26 +0000222
223 WriteLockScoped write_lock(*send_lock_);
224 for (size_t i = 0; i < config.rtp.ssrcs.size(); ++i) {
225 assert(send_ssrcs_.find(config.rtp.ssrcs[i]) == send_ssrcs_.end());
226 send_ssrcs_[config.rtp.ssrcs[i]] = send_stream;
pbos@webrtc.org29d58392013-05-16 12:08:03 +0000227 }
228 return send_stream;
229}
230
pbos@webrtc.org64887612013-11-14 08:58:14 +0000231void Call::DestroySendStream(webrtc::VideoSendStream* send_stream) {
pbos@webrtc.org95e51f52013-09-05 12:38:54 +0000232 assert(send_stream != NULL);
233
234 VideoSendStream* send_stream_impl = NULL;
235 {
236 WriteLockScoped write_lock(*send_lock_);
237 for (std::map<uint32_t, VideoSendStream*>::iterator it =
238 send_ssrcs_.begin();
239 it != send_ssrcs_.end();
240 ++it) {
241 if (it->second == static_cast<VideoSendStream*>(send_stream)) {
242 send_stream_impl = it->second;
243 send_ssrcs_.erase(it);
244 break;
245 }
246 }
pbos@webrtc.org29d58392013-05-16 12:08:03 +0000247 }
pbos@webrtc.org95e51f52013-09-05 12:38:54 +0000248
249 assert(send_stream_impl != NULL);
250 delete send_stream_impl;
pbos@webrtc.org29d58392013-05-16 12:08:03 +0000251}
252
pbos@webrtc.org841c8a42013-09-09 15:04:25 +0000253VideoReceiveStream::Config Call::GetDefaultReceiveConfig() {
pbos@webrtc.org74fa4892013-08-23 09:19:30 +0000254 return VideoReceiveStream::Config();
pbos@webrtc.org29d58392013-05-16 12:08:03 +0000255}
256
pbos@webrtc.org5a636552013-11-20 10:40:25 +0000257VideoReceiveStream* Call::CreateVideoReceiveStream(
pbos@webrtc.org74fa4892013-08-23 09:19:30 +0000258 const VideoReceiveStream::Config& config) {
stefan@webrtc.orgb082ade2013-11-18 11:45:11 +0000259 VideoReceiveStream* receive_stream = new VideoReceiveStream(
260 video_engine_, config, config_.send_transport, config_.voice_engine);
pbos@webrtc.org29d58392013-05-16 12:08:03 +0000261
pbos@webrtc.org1819fd72013-06-10 13:48:26 +0000262 WriteLockScoped write_lock(*receive_lock_);
263 assert(receive_ssrcs_.find(config.rtp.ssrc) == receive_ssrcs_.end());
264 receive_ssrcs_[config.rtp.ssrc] = receive_stream;
pbos@webrtc.org29d58392013-05-16 12:08:03 +0000265 return receive_stream;
266}
267
pbos@webrtc.org841c8a42013-09-09 15:04:25 +0000268void Call::DestroyReceiveStream(webrtc::VideoReceiveStream* receive_stream) {
pbos@webrtc.org95e51f52013-09-05 12:38:54 +0000269 assert(receive_stream != NULL);
270
271 VideoReceiveStream* receive_stream_impl = NULL;
272 {
273 WriteLockScoped write_lock(*receive_lock_);
274 for (std::map<uint32_t, VideoReceiveStream*>::iterator it =
275 receive_ssrcs_.begin();
276 it != receive_ssrcs_.end();
277 ++it) {
278 if (it->second == static_cast<VideoReceiveStream*>(receive_stream)) {
279 receive_stream_impl = it->second;
280 receive_ssrcs_.erase(it);
281 break;
282 }
283 }
pbos@webrtc.org29d58392013-05-16 12:08:03 +0000284 }
pbos@webrtc.org95e51f52013-09-05 12:38:54 +0000285
286 assert(receive_stream_impl != NULL);
287 delete receive_stream_impl;
pbos@webrtc.org29d58392013-05-16 12:08:03 +0000288}
289
pbos@webrtc.org841c8a42013-09-09 15:04:25 +0000290uint32_t Call::SendBitrateEstimate() {
pbos@webrtc.org29d58392013-05-16 12:08:03 +0000291 // TODO(pbos): Return send-bitrate estimate
292 return 0;
293}
294
pbos@webrtc.org841c8a42013-09-09 15:04:25 +0000295uint32_t Call::ReceiveBitrateEstimate() {
pbos@webrtc.org29d58392013-05-16 12:08:03 +0000296 // TODO(pbos): Return receive-bitrate estimate
297 return 0;
298}
299
pbos@webrtc.org841c8a42013-09-09 15:04:25 +0000300bool Call::DeliverRtcp(const uint8_t* packet, size_t length) {
pbos@webrtc.org29d58392013-05-16 12:08:03 +0000301 // TODO(pbos): Figure out what channel needs it actually.
302 // Do NOT broadcast! Also make sure it's a valid packet.
303 bool rtcp_delivered = false;
pbos@webrtc.org40523702013-08-05 12:49:22 +0000304 {
305 ReadLockScoped read_lock(*receive_lock_);
306 for (std::map<uint32_t, VideoReceiveStream*>::iterator it =
307 receive_ssrcs_.begin();
308 it != receive_ssrcs_.end();
309 ++it) {
pbos@webrtc.org0e63e762013-09-20 11:56:26 +0000310 if (it->second->DeliverRtcp(packet, length))
pbos@webrtc.org40523702013-08-05 12:49:22 +0000311 rtcp_delivered = true;
pbos@webrtc.orgbbb07e62013-08-05 12:01:36 +0000312 }
313 }
314
pbos@webrtc.org40523702013-08-05 12:49:22 +0000315 {
316 ReadLockScoped read_lock(*send_lock_);
317 for (std::map<uint32_t, VideoSendStream*>::iterator it =
318 send_ssrcs_.begin();
319 it != send_ssrcs_.end();
320 ++it) {
pbos@webrtc.org0e63e762013-09-20 11:56:26 +0000321 if (it->second->DeliverRtcp(packet, length))
pbos@webrtc.org40523702013-08-05 12:49:22 +0000322 rtcp_delivered = true;
pbos@webrtc.org29d58392013-05-16 12:08:03 +0000323 }
324 }
325 return rtcp_delivered;
326}
327
pbos@webrtc.org841c8a42013-09-09 15:04:25 +0000328bool Call::DeliverRtp(const RTPHeader& header,
329 const uint8_t* packet,
330 size_t length) {
pbos@webrtc.org40523702013-08-05 12:49:22 +0000331 VideoReceiveStream* receiver;
332 {
333 ReadLockScoped read_lock(*receive_lock_);
334 std::map<uint32_t, VideoReceiveStream*>::iterator it =
335 receive_ssrcs_.find(header.ssrc);
336 if (it == receive_ssrcs_.end()) {
337 // TODO(pbos): Log some warning, SSRC without receiver.
338 return false;
339 }
pbos@webrtc.org29d58392013-05-16 12:08:03 +0000340
pbos@webrtc.org40523702013-08-05 12:49:22 +0000341 receiver = it->second;
pbos@webrtc.org29d58392013-05-16 12:08:03 +0000342 }
pbos@webrtc.orgbbb07e62013-08-05 12:01:36 +0000343 return receiver->DeliverRtp(static_cast<const uint8_t*>(packet), length);
pbos@webrtc.org29d58392013-05-16 12:08:03 +0000344}
345
pbos@webrtc.org841c8a42013-09-09 15:04:25 +0000346bool Call::DeliverPacket(const uint8_t* packet, size_t length) {
pbos@webrtc.org40523702013-08-05 12:49:22 +0000347 // TODO(pbos): ExtensionMap if there are extensions.
348 if (RtpHeaderParser::IsRtcp(packet, static_cast<int>(length)))
349 return DeliverRtcp(packet, length);
pbos@webrtc.org29d58392013-05-16 12:08:03 +0000350
pbos@webrtc.org40523702013-08-05 12:49:22 +0000351 RTPHeader rtp_header;
352 if (!rtp_header_parser_->Parse(packet, static_cast<int>(length), &rtp_header))
353 return false;
pbos@webrtc.org29d58392013-05-16 12:08:03 +0000354
pbos@webrtc.org40523702013-08-05 12:49:22 +0000355 return DeliverRtp(rtp_header, packet, length);
pbos@webrtc.org29d58392013-05-16 12:08:03 +0000356}
357
358} // namespace internal
359} // namespace webrtc