blob: c3140c076a3ece7dc50092088c0f2687ec3e057f [file] [log] [blame]
mflodman@webrtc.org06e80262013-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.org5e0cbcf2013-12-18 09:46:22 +000011#ifndef WEBRTC_VIDEO_SEND_STREAM_H_
12#define WEBRTC_VIDEO_SEND_STREAM_H_
mflodman@webrtc.org06e80262013-04-18 12:02:52 +000013
sprang@webrtc.org49812e62014-01-07 09:54:34 +000014#include <map>
mflodman@webrtc.org06e80262013-04-18 12:02:52 +000015#include <string>
mflodman@webrtc.org06e80262013-04-18 12:02:52 +000016
17#include "webrtc/common_types.h"
pbos@webrtc.org24e20892013-10-28 16:32:01 +000018#include "webrtc/config.h"
19#include "webrtc/frame_callback.h"
20#include "webrtc/video_renderer.h"
mflodman@webrtc.org06e80262013-04-18 12:02:52 +000021
22namespace webrtc {
23
24class VideoEncoder;
25
mflodman@webrtc.org06e80262013-04-18 12:02:52 +000026// Class to deliver captured frame to the video send stream.
27class VideoSendStreamInput {
28 public:
pbos@webrtc.orgc33d37c2013-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.
32 virtual void PutFrame(const I420VideoFrame& video_frame) = 0;
33 virtual void SwapFrame(I420VideoFrame* video_frame) = 0;
mflodman@webrtc.org06e80262013-04-18 12:02:52 +000034
35 protected:
36 virtual ~VideoSendStreamInput() {}
37};
38
mflodman@webrtc.org06e80262013-04-18 12:02:52 +000039class VideoSendStream {
40 public:
pbos@webrtc.org6f1c3ef2013-06-05 11:33:21 +000041 struct Stats {
42 Stats()
43 : input_frame_rate(0),
sprang@webrtc.org49812e62014-01-07 09:54:34 +000044 encode_frame_rate(0),
45 avg_delay_ms(0),
46 max_delay_ms(0) {}
pbos@webrtc.org6f1c3ef2013-06-05 11:33:21 +000047
sprang@webrtc.org49812e62014-01-07 09:54:34 +000048 int input_frame_rate;
49 int encode_frame_rate;
50 int avg_delay_ms;
51 int max_delay_ms;
52 std::string c_name;
53 std::map<uint32_t, StreamStats> substreams;
pbos@webrtc.org6f1c3ef2013-06-05 11:33:21 +000054 };
55
56 struct Config {
57 Config()
58 : pre_encode_callback(NULL),
sprang@webrtc.org2e98d452013-11-26 11:41:59 +000059 post_encode_callback(NULL),
pbos@webrtc.org6f1c3ef2013-06-05 11:33:21 +000060 local_renderer(NULL),
61 render_delay_ms(0),
62 encoder(NULL),
63 internal_source(false),
64 target_delay_ms(0),
stefan@webrtc.org55afdbe2013-08-22 09:29:56 +000065 pacing(false),
henrik.lundin@webrtc.org45901772013-11-18 12:18:43 +000066 suspend_below_min_bitrate(false) {}
pbos@webrtc.org6f1c3ef2013-06-05 11:33:21 +000067 VideoCodec codec;
68
sprang@webrtc.org44bb62a2013-10-16 13:29:14 +000069 static const size_t kDefaultMaxPacketSize = 1500 - 40; // TCP over IPv4.
pbos@webrtc.org6f1c3ef2013-06-05 11:33:21 +000070 struct Rtp {
pbos@webrtc.org51e01012013-10-17 14:14:42 +000071 Rtp() : max_packet_size(kDefaultMaxPacketSize) {}
pbos@webrtc.org6f1c3ef2013-06-05 11:33:21 +000072
73 std::vector<uint32_t> ssrcs;
74
75 // Max RTP packet size delivered to send transport from VideoEngine.
76 size_t max_packet_size;
77
78 // RTP header extensions to use for this send stream.
79 std::vector<RtpExtension> extensions;
80
81 // See NackConfig for description.
82 NackConfig nack;
83
84 // See FecConfig for description.
85 FecConfig fec;
86
pbos@webrtc.orgc71929d2014-01-24 09:30:53 +000087 // Settings for RTP retransmission payload format, see RFC 4588 for
88 // details.
89 struct Rtx {
90 Rtx() : payload_type(0) {}
91 // SSRCs to use for the RTX streams.
92 std::vector<uint32_t> ssrcs;
93
94 // Payload type to use for the RTX stream.
95 int payload_type;
96 } rtx;
pbos@webrtc.org6f1c3ef2013-06-05 11:33:21 +000097
98 // RTCP CNAME, see RFC 3550.
99 std::string c_name;
100 } rtp;
101
102 // Called for each I420 frame before encoding the frame. Can be used for
103 // effects, snapshots etc. 'NULL' disables the callback.
104 I420FrameCallback* pre_encode_callback;
105
106 // Called for each encoded frame, e.g. used for file storage. 'NULL'
107 // disables the callback.
sprang@webrtc.org2e98d452013-11-26 11:41:59 +0000108 EncodedFrameObserver* post_encode_callback;
pbos@webrtc.org6f1c3ef2013-06-05 11:33:21 +0000109
110 // Renderer for local preview. The local renderer will be called even if
111 // sending hasn't started. 'NULL' disables local rendering.
112 VideoRenderer* local_renderer;
113
114 // Expected delay needed by the renderer, i.e. the frame will be delivered
115 // this many milliseconds, if possible, earlier than expected render time.
116 // Only valid if |renderer| is set.
117 int render_delay_ms;
118
119 // TODO(mflodman) Move VideoEncoder to common_types.h and redefine.
120 // External encoding. 'encoder' is the external encoder instance and
121 // 'internal_source' is set to true if the encoder also captures the video
122 // frames.
123 VideoEncoder* encoder;
124 bool internal_source;
125
126 // Target delay in milliseconds. A positive value indicates this stream is
127 // used for streaming instead of a real-time call.
128 int target_delay_ms;
129
stefan@webrtc.org55afdbe2013-08-22 09:29:56 +0000130 // True if network a send-side packet buffer should be used to pace out
131 // packets onto the network.
132 bool pacing;
133
henrik.lundin@webrtc.org45901772013-11-18 12:18:43 +0000134 // True if the stream should be suspended when the available bitrate fall
135 // below the minimum configured bitrate. If this variable is false, the
136 // stream may send at a rate higher than the estimated available bitrate.
henrik.lundin@webrtc.orgb9f1eb82013-11-21 14:05:40 +0000137 // Enabling suspend_below_min_bitrate will also enable pacing and padding,
138 // otherwise, the video will be unable to recover from suspension.
henrik.lundin@webrtc.org45901772013-11-18 12:18:43 +0000139 bool suspend_below_min_bitrate;
pbos@webrtc.org6f1c3ef2013-06-05 11:33:21 +0000140 };
141
mflodman@webrtc.org06e80262013-04-18 12:02:52 +0000142 // Gets interface used to insert captured frames. Valid as long as the
143 // VideoSendStream is valid.
144 virtual VideoSendStreamInput* Input() = 0;
145
pbos@webrtc.org7f9f8402013-11-20 11:36:47 +0000146 virtual void StartSending() = 0;
147 virtual void StopSending() = 0;
mflodman@webrtc.org06e80262013-04-18 12:02:52 +0000148
pbos@webrtc.org69040542013-11-14 08:58:14 +0000149 virtual bool SetCodec(const VideoCodec& codec) = 0;
150 virtual VideoCodec GetCodec() = 0;
mflodman@webrtc.org06e80262013-04-18 12:02:52 +0000151
sprang@webrtc.org49812e62014-01-07 09:54:34 +0000152 virtual Stats GetStats() const = 0;
153
mflodman@webrtc.org06e80262013-04-18 12:02:52 +0000154 protected:
155 virtual ~VideoSendStream() {}
156};
157
mflodman@webrtc.org06e80262013-04-18 12:02:52 +0000158} // namespace webrtc
159
mflodman@webrtc.org5e0cbcf2013-12-18 09:46:22 +0000160#endif // WEBRTC_VIDEO_SEND_STREAM_H_