/* * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source * tree. An additional intellectual property rights grant can be found * in the file PATENTS. All contributing project authors may * be found in the AUTHORS file in the root of the source tree. */ #include "webrtc/video_engine/internal/video_call.h" #include #include #include #include #include "webrtc/modules/rtp_rtcp/source/rtcp_utility.h" #include "webrtc/modules/rtp_rtcp/source/rtp_utility.h" #include "webrtc/video_engine/include/vie_base.h" #include "webrtc/video_engine/include/vie_codec.h" #include "webrtc/video_engine/include/vie_rtp_rtcp.h" #include "webrtc/video_engine/internal/video_receive_stream.h" #include "webrtc/video_engine/internal/video_send_stream.h" #include "webrtc/video_engine/new_include/video_engine.h" namespace webrtc { namespace internal { VideoCall::VideoCall(webrtc::VideoEngine* video_engine, newapi::Transport* send_transport) : send_transport(send_transport), receive_lock_(RWLockWrapper::CreateRWLock()), send_lock_(RWLockWrapper::CreateRWLock()), video_engine_(video_engine) { assert(video_engine != NULL); assert(send_transport != NULL); rtp_rtcp_ = ViERTP_RTCP::GetInterface(video_engine_); assert(rtp_rtcp_ != NULL); codec_ = ViECodec::GetInterface(video_engine_); assert(codec_ != NULL); } VideoCall::~VideoCall() { rtp_rtcp_->Release(); codec_->Release(); } newapi::PacketReceiver* VideoCall::Receiver() { return this; } std::vector VideoCall::GetVideoCodecs() { std::vector codecs; VideoCodec codec; for (size_t i = 0; i < static_cast(codec_->NumberOfCodecs()); ++i) { if (codec_->GetCodec(i, codec) == 0) { codecs.push_back(codec); } } return codecs; } VideoSendStream::Config VideoCall::GetDefaultSendConfig() { VideoSendStream::Config config; codec_->GetCodec(0, config.codec); return config; } newapi::VideoSendStream* VideoCall::CreateSendStream( const newapi::VideoSendStream::Config& config) { assert(config.rtp.ssrcs.size() > 0); assert(config.codec.numberOfSimulcastStreams == 0 || config.codec.numberOfSimulcastStreams == config.rtp.ssrcs.size()); VideoSendStream* send_stream = new VideoSendStream(send_transport, video_engine_, config); WriteLockScoped write_lock(*send_lock_); for (size_t i = 0; i < config.rtp.ssrcs.size(); ++i) { assert(send_ssrcs_.find(config.rtp.ssrcs[i]) == send_ssrcs_.end()); send_ssrcs_[config.rtp.ssrcs[i]] = send_stream; } return send_stream; } newapi::SendStreamState* VideoCall::DestroySendStream( newapi::VideoSendStream* send_stream) { if (send_stream == NULL) { return NULL; } // TODO(pbos): Remove it properly! Free the SSRCs! delete static_cast(send_stream); // TODO(pbos): Return its previous state return NULL; } VideoReceiveStream::Config VideoCall::GetDefaultReceiveConfig() { return newapi::VideoReceiveStream::Config(); } newapi::VideoReceiveStream* VideoCall::CreateReceiveStream( const newapi::VideoReceiveStream::Config& config) { VideoReceiveStream* receive_stream = new VideoReceiveStream( video_engine_, config, send_transport); WriteLockScoped write_lock(*receive_lock_); assert(receive_ssrcs_.find(config.rtp.ssrc) == receive_ssrcs_.end()); receive_ssrcs_[config.rtp.ssrc] = receive_stream; return receive_stream; } void VideoCall::DestroyReceiveStream( newapi::VideoReceiveStream* receive_stream) { if (receive_stream == NULL) { return; } // TODO(pbos): Remove its SSRCs! delete static_cast(receive_stream); } uint32_t VideoCall::SendBitrateEstimate() { // TODO(pbos): Return send-bitrate estimate return 0; } uint32_t VideoCall::ReceiveBitrateEstimate() { // TODO(pbos): Return receive-bitrate estimate return 0; } bool VideoCall::DeliverRtcp(ModuleRTPUtility::RTPHeaderParser* rtp_parser, const void* packet, size_t length) { // TODO(pbos): Figure out what channel needs it actually. // Do NOT broadcast! Also make sure it's a valid packet. bool rtcp_delivered = false; ReadLockScoped read_lock(*receive_lock_); for (std::map::iterator it = receive_ssrcs_.begin(); it != receive_ssrcs_.end(); ++it) { if (static_cast(it->second) ->DeliverRtcp(packet, length)) { rtcp_delivered = true; } } return rtcp_delivered; } bool VideoCall::DeliverRtp(ModuleRTPUtility::RTPHeaderParser* rtp_parser, const void* packet, size_t length) { RTPHeader rtp_header; // TODO(pbos): ExtensionMap if there are extensions if (!rtp_parser->Parse(rtp_header)) { // TODO(pbos): Should this error be reported and trigger something? return false; } ReadLockScoped read_lock(*receive_lock_); if (receive_ssrcs_.find(rtp_header.ssrc) == receive_ssrcs_.end()) { // TODO(pbos): Log some warning, SSRC without receiver. return false; } VideoReceiveStream* receiver = static_cast(receive_ssrcs_[rtp_header.ssrc]); return receiver->DeliverRtp(packet, length); } bool VideoCall::DeliverPacket(const void* packet, size_t length) { // TODO(pbos): Respect the constness of packet. ModuleRTPUtility::RTPHeaderParser rtp_parser( const_cast(static_cast(packet)), length); if (rtp_parser.RTCP()) { return DeliverRtcp(&rtp_parser, packet, length); } return DeliverRtp(&rtp_parser, packet, length); } } // namespace internal } // namespace webrtc