blob: 304d825d3e404b58c59c3b1562c11e28e67b046a [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
11#ifndef WEBRTC_VIDEO_ENGINE_VIDEO_SEND_STREAM_IMPL_H_
12#define WEBRTC_VIDEO_ENGINE_VIDEO_SEND_STREAM_IMPL_H_
13
14#include <vector>
15
16#include "webrtc/common_video/libyuv/include/webrtc_libyuv.h"
pbos@webrtc.org24e20892013-10-28 16:32:01 +000017#include "webrtc/video/transport_adapter.h"
18#include "webrtc/video_receive_stream.h"
19#include "webrtc/video_send_stream.h"
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +000020
21namespace webrtc {
22
23class VideoEngine;
24class ViEBase;
25class ViECapture;
26class ViECodec;
27class ViEExternalCapture;
stefan@webrtc.org55afdbe2013-08-22 09:29:56 +000028class ViEExternalCodec;
pbos@webrtc.org63301bd2013-10-21 10:34:43 +000029class ViEImageProcess;
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +000030class ViENetwork;
31class ViERTP_RTCP;
32
33namespace internal {
mflodman@webrtc.orgbf76ae22013-07-23 11:35:00 +000034
35class ResolutionAdaptor;
36
pbos@webrtc.orgc1797062013-08-23 09:19:30 +000037class VideoSendStream : public webrtc::VideoSendStream,
pbos@webrtc.org1ddd57f2013-09-18 11:52:42 +000038 public VideoSendStreamInput {
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +000039 public:
40 VideoSendStream(newapi::Transport* transport,
mflodman@webrtc.orgbf76ae22013-07-23 11:35:00 +000041 bool overuse_detection,
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +000042 webrtc::VideoEngine* video_engine,
pbos@webrtc.orgc1797062013-08-23 09:19:30 +000043 const VideoSendStream::Config& config);
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +000044
45 virtual ~VideoSendStream();
46
pbos@webrtc.org08f3ca92013-05-23 12:37:11 +000047 virtual void PutFrame(const I420VideoFrame& frame,
48 uint32_t time_since_capture_ms) OVERRIDE;
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +000049
pbos@webrtc.orgc1797062013-08-23 09:19:30 +000050 virtual VideoSendStreamInput* Input() OVERRIDE;
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +000051
52 virtual void StartSend() OVERRIDE;
53
54 virtual void StopSend() OVERRIDE;
55
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +000056 virtual bool SetTargetBitrate(int min_bitrate, int max_bitrate,
57 const std::vector<SimulcastStream>& streams)
58 OVERRIDE;
59
60 virtual void GetSendCodec(VideoCodec* send_codec) OVERRIDE;
61
pbos@webrtc.orgce851092013-08-05 12:01:36 +000062 public:
63 bool DeliverRtcp(const uint8_t* packet, size_t length);
64
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +000065 private:
pbos@webrtc.org1ddd57f2013-09-18 11:52:42 +000066 TransportAdapter transport_adapter_;
pbos@webrtc.orgc1797062013-08-23 09:19:30 +000067 VideoSendStream::Config config_;
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +000068
69 ViEBase* video_engine_base_;
70 ViECapture* capture_;
71 ViECodec* codec_;
72 ViEExternalCapture* external_capture_;
stefan@webrtc.org55afdbe2013-08-22 09:29:56 +000073 ViEExternalCodec* external_codec_;
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +000074 ViENetwork* network_;
75 ViERTP_RTCP* rtp_rtcp_;
pbos@webrtc.org63301bd2013-10-21 10:34:43 +000076 ViEImageProcess* image_process_;
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +000077
78 int channel_;
79 int capture_id_;
mflodman@webrtc.orgbf76ae22013-07-23 11:35:00 +000080 scoped_ptr<ResolutionAdaptor> overuse_observer_;
pbos@webrtc.org2a9108f2013-05-16 12:08:03 +000081};
82} // namespace internal
83} // namespace webrtc
84
85#endif // WEBRTC_VIDEO_ENGINE_INTERNAL_VIDEO_SEND_STREAM_H_