blob: 5001cc7bf4478ba9bf8580512ece50603a6aebc6 [file] [log] [blame]
pbos@webrtc.orgdc8c8832013-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
11#include "webrtc/video_engine/internal/video_send_stream.h"
12
pbos@webrtc.orgdebc6722013-08-22 09:42:17 +000013#include <string.h>
14
pbos@webrtc.orgdc8c8832013-05-16 12:08:03 +000015#include <vector>
16
17#include "webrtc/common_video/libyuv/include/webrtc_libyuv.h"
18#include "webrtc/video_engine/include/vie_base.h"
19#include "webrtc/video_engine/include/vie_capture.h"
20#include "webrtc/video_engine/include/vie_codec.h"
stefan@webrtc.orga0a91d82013-08-22 09:29:56 +000021#include "webrtc/video_engine/include/vie_external_codec.h"
pbos@webrtc.orgdc8c8832013-05-16 12:08:03 +000022#include "webrtc/video_engine/include/vie_network.h"
23#include "webrtc/video_engine/include/vie_rtp_rtcp.h"
24#include "webrtc/video_engine/new_include/video_send_stream.h"
25
26namespace webrtc {
27namespace internal {
28
mflodman@webrtc.orgecbeb2b2013-07-23 11:35:00 +000029// Super simple and temporary overuse logic. This will move to the application
30// as soon as the new API allows changing send codec on the fly.
31class ResolutionAdaptor : public webrtc::CpuOveruseObserver {
32 public:
33 ResolutionAdaptor(ViECodec* codec, int channel, size_t width, size_t height)
34 : codec_(codec),
35 channel_(channel),
36 max_width_(width),
37 max_height_(height) {}
38
39 virtual ~ResolutionAdaptor() {}
40
41 virtual void OveruseDetected() OVERRIDE {
42 VideoCodec codec;
43 if (codec_->GetSendCodec(channel_, codec) != 0)
44 return;
45
46 if (codec.width / 2 < min_width || codec.height / 2 < min_height)
47 return;
48
49 codec.width /= 2;
50 codec.height /= 2;
51 codec_->SetSendCodec(channel_, codec);
52 }
53
54 virtual void NormalUsage() OVERRIDE {
55 VideoCodec codec;
56 if (codec_->GetSendCodec(channel_, codec) != 0)
57 return;
58
59 if (codec.width * 2u > max_width_ || codec.height * 2u > max_height_)
60 return;
61
62 codec.width *= 2;
63 codec.height *= 2;
64 codec_->SetSendCodec(channel_, codec);
65 }
66
67 private:
68 // Temporary and arbitrary chosen minimum resolution.
69 static const size_t min_width = 160;
70 static const size_t min_height = 120;
71
72 ViECodec* codec_;
73 const int channel_;
74
75 const size_t max_width_;
76 const size_t max_height_;
77};
78
pbos@webrtc.org12d5ede2013-07-09 08:02:33 +000079VideoSendStream::VideoSendStream(newapi::Transport* transport,
mflodman@webrtc.orgecbeb2b2013-07-23 11:35:00 +000080 bool overuse_detection,
pbos@webrtc.org12d5ede2013-07-09 08:02:33 +000081 webrtc::VideoEngine* video_engine,
82 const newapi::VideoSendStream::Config& config)
stefan@webrtc.orga0a91d82013-08-22 09:29:56 +000083 : transport_(transport), config_(config), external_codec_(NULL) {
pbos@webrtc.orgdc8c8832013-05-16 12:08:03 +000084
85 if (config_.codec.numberOfSimulcastStreams > 0) {
86 assert(config_.rtp.ssrcs.size() == config_.codec.numberOfSimulcastStreams);
87 } else {
88 assert(config_.rtp.ssrcs.size() == 1);
89 }
90
91 video_engine_base_ = ViEBase::GetInterface(video_engine);
92 video_engine_base_->CreateChannel(channel_);
93 assert(channel_ != -1);
94
95 rtp_rtcp_ = ViERTP_RTCP::GetInterface(video_engine);
96 assert(rtp_rtcp_ != NULL);
97
stefan@webrtc.orga0a91d82013-08-22 09:29:56 +000098 if (config_.rtp.ssrcs.size() == 1) {
99 rtp_rtcp_->SetLocalSSRC(channel_, config_.rtp.ssrcs[0]);
100 } else {
101 for (size_t i = 0; i < config_.rtp.ssrcs.size(); ++i) {
102 rtp_rtcp_->SetLocalSSRC(channel_, config_.rtp.ssrcs[i],
103 kViEStreamTypeNormal, i);
104 }
105 }
pbos@webrtc.orgbf9bc322013-08-05 12:01:36 +0000106 rtp_rtcp_->SetNACKStatus(channel_, config_.rtp.nack.rtp_history_ms > 0);
stefan@webrtc.orga0a91d82013-08-22 09:29:56 +0000107 rtp_rtcp_->SetTransmissionSmoothingStatus(channel_, config_.pacing);
108 rtp_rtcp_->SetSendTimestampOffsetStatus(channel_, true, 1);
pbos@webrtc.orgdc8c8832013-05-16 12:08:03 +0000109
pbos@webrtc.orgdebc6722013-08-22 09:42:17 +0000110 char rtcp_cname[ViERTP_RTCP::KMaxRTCPCNameLength];
111 assert(config_.rtp.c_name.length() < ViERTP_RTCP::KMaxRTCPCNameLength);
112 strncpy(rtcp_cname, config_.rtp.c_name.c_str(), sizeof(rtcp_cname) - 1);
113 rtcp_cname[sizeof(rtcp_cname) - 1] = '\0';
114
115 rtp_rtcp_->SetRTCPCName(channel_, rtcp_cname);
116
pbos@webrtc.orgdc8c8832013-05-16 12:08:03 +0000117 capture_ = ViECapture::GetInterface(video_engine);
118 capture_->AllocateExternalCaptureDevice(capture_id_, external_capture_);
119 capture_->ConnectCaptureDevice(capture_id_, channel_);
120
121 network_ = ViENetwork::GetInterface(video_engine);
122 assert(network_ != NULL);
123
124 network_->RegisterSendTransport(channel_, *this);
125
stefan@webrtc.orga0a91d82013-08-22 09:29:56 +0000126 if (config.encoder) {
127 external_codec_ = ViEExternalCodec::GetInterface(video_engine);
128 if (external_codec_->RegisterExternalSendCodec(
129 channel_, config.codec.plType, config.encoder,
130 config.internal_source) != 0) {
131 abort();
132 }
133 }
134
pbos@webrtc.orgdc8c8832013-05-16 12:08:03 +0000135 codec_ = ViECodec::GetInterface(video_engine);
136 if (codec_->SetSendCodec(channel_, config_.codec) != 0) {
137 abort();
138 }
mflodman@webrtc.orgecbeb2b2013-07-23 11:35:00 +0000139
140 if (overuse_detection) {
141 overuse_observer_.reset(
142 new ResolutionAdaptor(codec_, channel_, config_.codec.width,
143 config_.codec.height));
144 video_engine_base_->RegisterCpuOveruseObserver(channel_,
145 overuse_observer_.get());
146 }
pbos@webrtc.orgdc8c8832013-05-16 12:08:03 +0000147}
148
149VideoSendStream::~VideoSendStream() {
150 network_->DeregisterSendTransport(channel_);
151 video_engine_base_->DeleteChannel(channel_);
152
153 capture_->DisconnectCaptureDevice(channel_);
154 capture_->ReleaseCaptureDevice(capture_id_);
155
stefan@webrtc.orga0a91d82013-08-22 09:29:56 +0000156 if (external_codec_) {
157 external_codec_->DeRegisterExternalSendCodec(channel_,
158 config_.codec.plType);
159 }
160
pbos@webrtc.orgdc8c8832013-05-16 12:08:03 +0000161 video_engine_base_->Release();
162 capture_->Release();
163 codec_->Release();
stefan@webrtc.orga0a91d82013-08-22 09:29:56 +0000164 if (external_codec_)
165 external_codec_->Release();
pbos@webrtc.orgdc8c8832013-05-16 12:08:03 +0000166 network_->Release();
167 rtp_rtcp_->Release();
168}
169
170void VideoSendStream::PutFrame(const I420VideoFrame& frame,
pbos@webrtc.orgd9f91852013-05-23 12:37:11 +0000171 uint32_t time_since_capture_ms) {
172 // TODO(pbos): frame_copy should happen after the VideoProcessingModule has
173 // resized the frame.
pbos@webrtc.orgdc8c8832013-05-16 12:08:03 +0000174 I420VideoFrame frame_copy;
175 frame_copy.CopyFrame(frame);
176
177 if (config_.pre_encode_callback != NULL) {
178 config_.pre_encode_callback->FrameCallback(&frame_copy);
179 }
180
181 ViEVideoFrameI420 vf;
182
183 // TODO(pbos): This represents a memcpy step and is only required because
184 // external_capture_ only takes ViEVideoFrameI420s.
185 vf.y_plane = frame_copy.buffer(kYPlane);
186 vf.u_plane = frame_copy.buffer(kUPlane);
187 vf.v_plane = frame_copy.buffer(kVPlane);
188 vf.y_pitch = frame.stride(kYPlane);
189 vf.u_pitch = frame.stride(kUPlane);
190 vf.v_pitch = frame.stride(kVPlane);
191 vf.width = frame.width();
192 vf.height = frame.height();
193
pbos@webrtc.orgd9f91852013-05-23 12:37:11 +0000194 external_capture_->IncomingFrameI420(vf, frame.render_time_ms());
pbos@webrtc.orgdc8c8832013-05-16 12:08:03 +0000195
196 if (config_.local_renderer != NULL) {
197 config_.local_renderer->RenderFrame(frame, 0);
198 }
199}
200
201newapi::VideoSendStreamInput* VideoSendStream::Input() { return this; }
202
203void VideoSendStream::StartSend() {
pbos@webrtc.orgd9f91852013-05-23 12:37:11 +0000204 if (video_engine_base_->StartSend(channel_) != 0)
205 abort();
pbos@webrtc.orgbf9bc322013-08-05 12:01:36 +0000206 if (video_engine_base_->StartReceive(channel_) != 0)
207 abort();
pbos@webrtc.orgdc8c8832013-05-16 12:08:03 +0000208}
209
210void VideoSendStream::StopSend() {
pbos@webrtc.orgd9f91852013-05-23 12:37:11 +0000211 if (video_engine_base_->StopSend(channel_) != 0)
212 abort();
pbos@webrtc.orgbf9bc322013-08-05 12:01:36 +0000213 if (video_engine_base_->StopReceive(channel_) != 0)
214 abort();
pbos@webrtc.orgdc8c8832013-05-16 12:08:03 +0000215}
216
pbos@webrtc.orgdc8c8832013-05-16 12:08:03 +0000217bool VideoSendStream::SetTargetBitrate(
pbos@webrtc.orgd9f91852013-05-23 12:37:11 +0000218 int min_bitrate,
219 int max_bitrate,
pbos@webrtc.orgdc8c8832013-05-16 12:08:03 +0000220 const std::vector<SimulcastStream>& streams) {
221 return false;
222}
223
224void VideoSendStream::GetSendCodec(VideoCodec* send_codec) {
225 *send_codec = config_.codec;
226}
227
pbos@webrtc.orgd9f91852013-05-23 12:37:11 +0000228int VideoSendStream::SendPacket(int /*channel*/,
229 const void* packet,
pbos@webrtc.orgdc8c8832013-05-16 12:08:03 +0000230 int length) {
231 // TODO(pbos): Lock these methods and the destructor so it can't be processing
232 // a packet when the destructor has been called.
233 assert(length >= 0);
pbos@webrtc.org12d5ede2013-07-09 08:02:33 +0000234 bool success = transport_->SendRTP(static_cast<const uint8_t*>(packet),
235 static_cast<size_t>(length));
stefan@webrtc.orga0a91d82013-08-22 09:29:56 +0000236 return success ? length : -1;
pbos@webrtc.orgdc8c8832013-05-16 12:08:03 +0000237}
238
pbos@webrtc.orgd9f91852013-05-23 12:37:11 +0000239int VideoSendStream::SendRTCPPacket(int /*channel*/,
240 const void* packet,
pbos@webrtc.orgdc8c8832013-05-16 12:08:03 +0000241 int length) {
242 assert(length >= 0);
pbos@webrtc.org12d5ede2013-07-09 08:02:33 +0000243 bool success = transport_->SendRTCP(static_cast<const uint8_t*>(packet),
244 static_cast<size_t>(length));
stefan@webrtc.orga0a91d82013-08-22 09:29:56 +0000245 return success ? length : -1;
pbos@webrtc.orgdc8c8832013-05-16 12:08:03 +0000246}
247
pbos@webrtc.orgbf9bc322013-08-05 12:01:36 +0000248bool VideoSendStream::DeliverRtcp(const uint8_t* packet, size_t length) {
249 return network_->ReceivedRTCPPacket(
pbos@webrtc.org30c741a2013-08-05 13:25:51 +0000250 channel_, packet, static_cast<int>(length)) == 0;
pbos@webrtc.orgbf9bc322013-08-05 12:01:36 +0000251}
252
pbos@webrtc.orgdc8c8832013-05-16 12:08:03 +0000253} // namespace internal
254} // namespace webrtc