blob: 4c4960aa944f66ac7ff0c89ddfcb6a4530b38a7d [file] [log] [blame]
mflodman@webrtc.org65f995a2013-04-18 12:02:52 +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
mflodman@webrtc.orgb429e512013-12-18 09:46:22 +000011#ifndef WEBRTC_VIDEO_SEND_STREAM_H_
12#define WEBRTC_VIDEO_SEND_STREAM_H_
mflodman@webrtc.org65f995a2013-04-18 12:02:52 +000013
sprang@webrtc.orgccd42842014-01-07 09:54:34 +000014#include <map>
mflodman@webrtc.org65f995a2013-04-18 12:02:52 +000015#include <string>
mflodman@webrtc.org65f995a2013-04-18 12:02:52 +000016
17#include "webrtc/common_types.h"
pbos@webrtc.org16e03b72013-10-28 16:32:01 +000018#include "webrtc/config.h"
19#include "webrtc/frame_callback.h"
20#include "webrtc/video_renderer.h"
mflodman@webrtc.org65f995a2013-04-18 12:02:52 +000021
22namespace webrtc {
23
24class VideoEncoder;
25
mflodman@webrtc.org65f995a2013-04-18 12:02:52 +000026// Class to deliver captured frame to the video send stream.
27class VideoSendStreamInput {
28 public:
pbos@webrtc.org724947b2013-12-11 16:26:16 +000029 // These methods do not lock internally and must be called sequentially.
30 // If your application switches input sources synchronization must be done
31 // externally to make sure that any old frames are not delivered concurrently.
Miguel Casas-Sanchez47650702015-05-29 17:21:40 -070032 virtual void IncomingCapturedFrame(const VideoFrame& video_frame) = 0;
mflodman@webrtc.org65f995a2013-04-18 12:02:52 +000033
34 protected:
35 virtual ~VideoSendStreamInput() {}
36};
37
mflodman@webrtc.org65f995a2013-04-18 12:02:52 +000038class VideoSendStream {
39 public:
pbos@webrtc.org09c77b92015-02-25 10:42:16 +000040 struct StreamStats {
41 FrameCounts frame_counts;
42 int width = 0;
43 int height = 0;
44 // TODO(holmer): Move bitrate_bps out to the webrtc::Call layer.
45 int total_bitrate_bps = 0;
46 int retransmit_bitrate_bps = 0;
47 int avg_delay_ms = 0;
48 int max_delay_ms = 0;
49 StreamDataCounters rtp_stats;
50 RtcpPacketTypeCounter rtcp_packet_type_counts;
51 RtcpStatistics rtcp_stats;
52 };
53
pbos@webrtc.org025f4f12013-06-05 11:33:21 +000054 struct Stats {
Fredrik Solenberg78fb3b32015-06-11 12:38:38 +020055 int input_frame_rate = 0;
56 int encode_frame_rate = 0;
57 int avg_encode_time_ms = 0;
58 int encode_usage_percent = 0;
59 int target_media_bitrate_bps = 0;
60 int media_bitrate_bps = 0;
61 bool suspended = false;
pbos@webrtc.org09c77b92015-02-25 10:42:16 +000062 std::map<uint32_t, StreamStats> substreams;
pbos@webrtc.org025f4f12013-06-05 11:33:21 +000063 };
64
65 struct Config {
pbos@webrtc.org1e92b0a2014-05-15 09:35:06 +000066 std::string ToString() const;
67
pbos@webrtc.orgf577ae92014-03-19 08:43:57 +000068 struct EncoderSettings {
pbos@webrtc.org1e92b0a2014-05-15 09:35:06 +000069 std::string ToString() const;
70
pbos@webrtc.orgf577ae92014-03-19 08:43:57 +000071 std::string payload_name;
Fredrik Solenberg78fb3b32015-06-11 12:38:38 +020072 int payload_type = -1;
pbos@webrtc.orgf577ae92014-03-19 08:43:57 +000073
74 // Uninitialized VideoEncoder instance to be used for encoding. Will be
75 // initialized from inside the VideoSendStream.
Fredrik Solenberg78fb3b32015-06-11 12:38:38 +020076 VideoEncoder* encoder = nullptr;
pbos@webrtc.orgf577ae92014-03-19 08:43:57 +000077 } encoder_settings;
pbos@webrtc.org025f4f12013-06-05 11:33:21 +000078
sprang@webrtc.org25fce9a2013-10-16 13:29:14 +000079 static const size_t kDefaultMaxPacketSize = 1500 - 40; // TCP over IPv4.
pbos@webrtc.org025f4f12013-06-05 11:33:21 +000080 struct Rtp {
pbos@webrtc.org1e92b0a2014-05-15 09:35:06 +000081 std::string ToString() const;
pbos@webrtc.org025f4f12013-06-05 11:33:21 +000082
83 std::vector<uint32_t> ssrcs;
84
85 // Max RTP packet size delivered to send transport from VideoEngine.
Fredrik Solenberg78fb3b32015-06-11 12:38:38 +020086 size_t max_packet_size = kDefaultMaxPacketSize;
pbos@webrtc.org025f4f12013-06-05 11:33:21 +000087
88 // RTP header extensions to use for this send stream.
89 std::vector<RtpExtension> extensions;
90
91 // See NackConfig for description.
92 NackConfig nack;
93
94 // See FecConfig for description.
95 FecConfig fec;
96
pbos@webrtc.orgc279a5d2014-01-24 09:30:53 +000097 // Settings for RTP retransmission payload format, see RFC 4588 for
98 // details.
99 struct Rtx {
pbos@webrtc.org1e92b0a2014-05-15 09:35:06 +0000100 std::string ToString() const;
pbos@webrtc.orgc279a5d2014-01-24 09:30:53 +0000101 // SSRCs to use for the RTX streams.
102 std::vector<uint32_t> ssrcs;
103
104 // Payload type to use for the RTX stream.
Fredrik Solenberg78fb3b32015-06-11 12:38:38 +0200105 int payload_type = -1;
pbos@webrtc.orgc279a5d2014-01-24 09:30:53 +0000106 } rtx;
pbos@webrtc.org025f4f12013-06-05 11:33:21 +0000107
108 // RTCP CNAME, see RFC 3550.
109 std::string c_name;
110 } rtp;
111
112 // Called for each I420 frame before encoding the frame. Can be used for
Fredrik Solenberg78fb3b32015-06-11 12:38:38 +0200113 // effects, snapshots etc. 'nullptr' disables the callback.
114 I420FrameCallback* pre_encode_callback = nullptr;
pbos@webrtc.org025f4f12013-06-05 11:33:21 +0000115
Fredrik Solenberg78fb3b32015-06-11 12:38:38 +0200116 // Called for each encoded frame, e.g. used for file storage. 'nullptr'
pbos@webrtc.org025f4f12013-06-05 11:33:21 +0000117 // disables the callback.
Fredrik Solenberg78fb3b32015-06-11 12:38:38 +0200118 EncodedFrameObserver* post_encode_callback = nullptr;
pbos@webrtc.org025f4f12013-06-05 11:33:21 +0000119
120 // Renderer for local preview. The local renderer will be called even if
Fredrik Solenberg78fb3b32015-06-11 12:38:38 +0200121 // sending hasn't started. 'nullptr' disables local rendering.
122 VideoRenderer* local_renderer = nullptr;
pbos@webrtc.org025f4f12013-06-05 11:33:21 +0000123
124 // Expected delay needed by the renderer, i.e. the frame will be delivered
125 // this many milliseconds, if possible, earlier than expected render time.
pbos@webrtc.org1e92b0a2014-05-15 09:35:06 +0000126 // Only valid if |local_renderer| is set.
Fredrik Solenberg78fb3b32015-06-11 12:38:38 +0200127 int render_delay_ms = 0;
pbos@webrtc.org025f4f12013-06-05 11:33:21 +0000128
pbos@webrtc.org025f4f12013-06-05 11:33:21 +0000129 // Target delay in milliseconds. A positive value indicates this stream is
130 // used for streaming instead of a real-time call.
Fredrik Solenberg78fb3b32015-06-11 12:38:38 +0200131 int target_delay_ms = 0;
pbos@webrtc.org025f4f12013-06-05 11:33:21 +0000132
henrik.lundin@webrtc.orgce8e0932013-11-18 12:18:43 +0000133 // True if the stream should be suspended when the available bitrate fall
134 // below the minimum configured bitrate. If this variable is false, the
135 // stream may send at a rate higher than the estimated available bitrate.
Fredrik Solenberg78fb3b32015-06-11 12:38:38 +0200136 bool suspend_below_min_bitrate = false;
pbos@webrtc.org025f4f12013-06-05 11:33:21 +0000137 };
138
mflodman@webrtc.org65f995a2013-04-18 12:02:52 +0000139 // Gets interface used to insert captured frames. Valid as long as the
140 // VideoSendStream is valid.
141 virtual VideoSendStreamInput* Input() = 0;
142
pbos@webrtc.orga5c8d2c2014-04-24 11:13:21 +0000143 virtual void Start() = 0;
144 virtual void Stop() = 0;
mflodman@webrtc.org65f995a2013-04-18 12:02:52 +0000145
pbos@webrtc.orgf577ae92014-03-19 08:43:57 +0000146 // Set which streams to send. Must have at least as many SSRCs as configured
147 // in the config. Encoder settings are passed on to the encoder instance along
148 // with the VideoStream settings.
pbos@webrtc.orgbbe0a852014-09-19 12:30:25 +0000149 virtual bool ReconfigureVideoEncoder(const VideoEncoderConfig& config) = 0;
mflodman@webrtc.org65f995a2013-04-18 12:02:52 +0000150
pbos@webrtc.org273a4142014-12-01 15:23:21 +0000151 virtual Stats GetStats() = 0;
sprang@webrtc.orgccd42842014-01-07 09:54:34 +0000152
mflodman@webrtc.org65f995a2013-04-18 12:02:52 +0000153 protected:
154 virtual ~VideoSendStream() {}
155};
156
mflodman@webrtc.org65f995a2013-04-18 12:02:52 +0000157} // namespace webrtc
158
mflodman@webrtc.orgb429e512013-12-18 09:46:22 +0000159#endif // WEBRTC_VIDEO_SEND_STREAM_H_