blob: 799cec7d43abe5dd4550a5a4ff1322d139b25bf1 [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,
pbos@webrtc.orgd8e92c92013-08-23 09:19:30 +000082 const VideoSendStream::Config& config)
pbos@webrtc.org26d75f32013-09-18 11:52:42 +000083 : transport_adapter_(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);
pbos@webrtc.orgf952fce2013-09-16 13:01:47 +0000108 if (!config_.rtp.rtx.ssrcs.empty()) {
109 assert(config_.rtp.rtx.ssrcs.size() == config_.rtp.ssrcs.size());
110 for (size_t i = 0; i < config_.rtp.rtx.ssrcs.size(); ++i) {
111 rtp_rtcp_->SetLocalSSRC(
112 channel_, config_.rtp.rtx.ssrcs[i], kViEStreamTypeRtx, i);
113 }
114
115 if (config_.rtp.rtx.rtx_payload_type != 0) {
116 rtp_rtcp_->SetRtxSendPayloadType(channel_,
117 config_.rtp.rtx.rtx_payload_type);
118 }
119 }
pbos@webrtc.org905cebd2013-09-11 10:14:56 +0000120
121 for (size_t i = 0; i < config_.rtp.extensions.size(); ++i) {
122 const std::string& extension = config_.rtp.extensions[i].name;
123 int id = config_.rtp.extensions[i].id;
124 if (extension == "toffset") {
125 if (rtp_rtcp_->SetSendTimestampOffsetStatus(channel_, true, id) != 0)
126 abort();
pbos@webrtc.orge22b7612013-09-11 19:00:39 +0000127 } else if (extension == "abs-send-time") {
128 if (rtp_rtcp_->SetSendAbsoluteSendTimeStatus(channel_, true, id) != 0)
129 abort();
pbos@webrtc.org905cebd2013-09-11 10:14:56 +0000130 } else {
131 abort(); // Unsupported extension.
132 }
133 }
pbos@webrtc.orgdc8c8832013-05-16 12:08:03 +0000134
pbos@webrtc.orgdebc6722013-08-22 09:42:17 +0000135 char rtcp_cname[ViERTP_RTCP::KMaxRTCPCNameLength];
136 assert(config_.rtp.c_name.length() < ViERTP_RTCP::KMaxRTCPCNameLength);
137 strncpy(rtcp_cname, config_.rtp.c_name.c_str(), sizeof(rtcp_cname) - 1);
138 rtcp_cname[sizeof(rtcp_cname) - 1] = '\0';
139
140 rtp_rtcp_->SetRTCPCName(channel_, rtcp_cname);
141
pbos@webrtc.orgdc8c8832013-05-16 12:08:03 +0000142 capture_ = ViECapture::GetInterface(video_engine);
143 capture_->AllocateExternalCaptureDevice(capture_id_, external_capture_);
144 capture_->ConnectCaptureDevice(capture_id_, channel_);
145
146 network_ = ViENetwork::GetInterface(video_engine);
147 assert(network_ != NULL);
148
pbos@webrtc.org26d75f32013-09-18 11:52:42 +0000149 network_->RegisterSendTransport(channel_, transport_adapter_);
pbos@webrtc.orgdc8c8832013-05-16 12:08:03 +0000150
stefan@webrtc.orga0a91d82013-08-22 09:29:56 +0000151 if (config.encoder) {
152 external_codec_ = ViEExternalCodec::GetInterface(video_engine);
153 if (external_codec_->RegisterExternalSendCodec(
154 channel_, config.codec.plType, config.encoder,
155 config.internal_source) != 0) {
156 abort();
157 }
158 }
159
pbos@webrtc.orgdc8c8832013-05-16 12:08:03 +0000160 codec_ = ViECodec::GetInterface(video_engine);
161 if (codec_->SetSendCodec(channel_, config_.codec) != 0) {
162 abort();
163 }
mflodman@webrtc.orgecbeb2b2013-07-23 11:35:00 +0000164
165 if (overuse_detection) {
166 overuse_observer_.reset(
167 new ResolutionAdaptor(codec_, channel_, config_.codec.width,
168 config_.codec.height));
169 video_engine_base_->RegisterCpuOveruseObserver(channel_,
pbos@webrtc.org905cebd2013-09-11 10:14:56 +0000170 overuse_observer_.get());
mflodman@webrtc.orgecbeb2b2013-07-23 11:35:00 +0000171 }
pbos@webrtc.orgdc8c8832013-05-16 12:08:03 +0000172}
173
174VideoSendStream::~VideoSendStream() {
175 network_->DeregisterSendTransport(channel_);
176 video_engine_base_->DeleteChannel(channel_);
177
178 capture_->DisconnectCaptureDevice(channel_);
179 capture_->ReleaseCaptureDevice(capture_id_);
180
stefan@webrtc.orga0a91d82013-08-22 09:29:56 +0000181 if (external_codec_) {
182 external_codec_->DeRegisterExternalSendCodec(channel_,
183 config_.codec.plType);
184 }
185
pbos@webrtc.orgdc8c8832013-05-16 12:08:03 +0000186 video_engine_base_->Release();
187 capture_->Release();
188 codec_->Release();
stefan@webrtc.orga0a91d82013-08-22 09:29:56 +0000189 if (external_codec_)
190 external_codec_->Release();
pbos@webrtc.orgdc8c8832013-05-16 12:08:03 +0000191 network_->Release();
192 rtp_rtcp_->Release();
193}
194
195void VideoSendStream::PutFrame(const I420VideoFrame& frame,
pbos@webrtc.orgd9f91852013-05-23 12:37:11 +0000196 uint32_t time_since_capture_ms) {
197 // TODO(pbos): frame_copy should happen after the VideoProcessingModule has
198 // resized the frame.
pbos@webrtc.orgdc8c8832013-05-16 12:08:03 +0000199 I420VideoFrame frame_copy;
200 frame_copy.CopyFrame(frame);
201
202 if (config_.pre_encode_callback != NULL) {
203 config_.pre_encode_callback->FrameCallback(&frame_copy);
204 }
205
206 ViEVideoFrameI420 vf;
207
208 // TODO(pbos): This represents a memcpy step and is only required because
209 // external_capture_ only takes ViEVideoFrameI420s.
210 vf.y_plane = frame_copy.buffer(kYPlane);
211 vf.u_plane = frame_copy.buffer(kUPlane);
212 vf.v_plane = frame_copy.buffer(kVPlane);
213 vf.y_pitch = frame.stride(kYPlane);
214 vf.u_pitch = frame.stride(kUPlane);
215 vf.v_pitch = frame.stride(kVPlane);
216 vf.width = frame.width();
217 vf.height = frame.height();
218
pbos@webrtc.orgd9f91852013-05-23 12:37:11 +0000219 external_capture_->IncomingFrameI420(vf, frame.render_time_ms());
pbos@webrtc.orgdc8c8832013-05-16 12:08:03 +0000220
221 if (config_.local_renderer != NULL) {
222 config_.local_renderer->RenderFrame(frame, 0);
223 }
224}
225
pbos@webrtc.orgd8e92c92013-08-23 09:19:30 +0000226VideoSendStreamInput* VideoSendStream::Input() { return this; }
pbos@webrtc.orgdc8c8832013-05-16 12:08:03 +0000227
228void VideoSendStream::StartSend() {
pbos@webrtc.orgd9f91852013-05-23 12:37:11 +0000229 if (video_engine_base_->StartSend(channel_) != 0)
230 abort();
pbos@webrtc.orgbf9bc322013-08-05 12:01:36 +0000231 if (video_engine_base_->StartReceive(channel_) != 0)
232 abort();
pbos@webrtc.orgdc8c8832013-05-16 12:08:03 +0000233}
234
235void VideoSendStream::StopSend() {
pbos@webrtc.orgd9f91852013-05-23 12:37:11 +0000236 if (video_engine_base_->StopSend(channel_) != 0)
237 abort();
pbos@webrtc.orgbf9bc322013-08-05 12:01:36 +0000238 if (video_engine_base_->StopReceive(channel_) != 0)
239 abort();
pbos@webrtc.orgdc8c8832013-05-16 12:08:03 +0000240}
241
pbos@webrtc.orgdc8c8832013-05-16 12:08:03 +0000242bool VideoSendStream::SetTargetBitrate(
pbos@webrtc.orgd9f91852013-05-23 12:37:11 +0000243 int min_bitrate,
244 int max_bitrate,
pbos@webrtc.orgdc8c8832013-05-16 12:08:03 +0000245 const std::vector<SimulcastStream>& streams) {
246 return false;
247}
248
249void VideoSendStream::GetSendCodec(VideoCodec* send_codec) {
250 *send_codec = config_.codec;
251}
252
pbos@webrtc.orgbf9bc322013-08-05 12:01:36 +0000253bool VideoSendStream::DeliverRtcp(const uint8_t* packet, size_t length) {
254 return network_->ReceivedRTCPPacket(
pbos@webrtc.org30c741a2013-08-05 13:25:51 +0000255 channel_, packet, static_cast<int>(length)) == 0;
pbos@webrtc.orgbf9bc322013-08-05 12:01:36 +0000256}
257
pbos@webrtc.orgdc8c8832013-05-16 12:08:03 +0000258} // namespace internal
259} // namespace webrtc