blob: 074aa618e32cdec5b9554a6db50fb43cdac7f73b [file] [log] [blame]
andrew@webrtc.orgb015cbe2012-10-22 18:19:231/*
2 * Copyright (c) 2012 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_VIE_ENCODER_H_
12#define WEBRTC_VIDEO_ENGINE_VIE_ENCODER_H_
13
mflodman@webrtc.orgb6d9cfc2012-10-25 11:30:2914#include <list>
15#include <map>
mflodman@webrtc.orgc51222c2015-02-06 13:10:1916#include <vector>
mflodman@webrtc.orgb6d9cfc2012-10-25 11:30:2917
mflodman@webrtc.org867d2882015-02-10 08:58:1618#include "webrtc/base/scoped_ptr.h"
pbos@webrtc.orgd54aa962014-09-24 06:05:0019#include "webrtc/base/thread_annotations.h"
pbos@webrtc.org281cff82013-05-17 13:44:4820#include "webrtc/common_types.h"
stefan@webrtc.org3ada29b2015-03-04 12:24:2621#include "webrtc/modules/bitrate_controller/include/bitrate_allocator.h"
pbos@webrtc.org281cff82013-05-17 13:44:4822#include "webrtc/modules/bitrate_controller/include/bitrate_controller.h"
23#include "webrtc/modules/rtp_rtcp/interface/rtp_rtcp_defines.h"
24#include "webrtc/modules/video_coding/main/interface/video_coding_defines.h"
25#include "webrtc/modules/video_processing/main/interface/video_processing.h"
pbos@webrtc.org281cff82013-05-17 13:44:4826#include "webrtc/typedefs.h"
pbos@webrtc.org24e20892013-10-28 16:32:0127#include "webrtc/frame_callback.h"
mflodman@webrtc.orgde412872015-02-20 12:45:4028#include "webrtc/system_wrappers/interface/scoped_refptr.h"
pbos@webrtc.org281cff82013-05-17 13:44:4829#include "webrtc/video_engine/vie_defines.h"
pbos@webrtc.org281cff82013-05-17 13:44:4830#include "webrtc/video_engine/vie_frame_provider_base.h"
andrew@webrtc.orgb015cbe2012-10-22 18:19:2331
32namespace webrtc {
33
andresp@webrtc.orgac6d9192013-05-13 10:50:5034class Config;
mflodman@webrtc.orgbf76ae22013-07-23 11:35:0035class CriticalSectionWrapper;
sprang@webrtc.org2e98d452013-11-26 11:41:5936class EncodedImageCallback;
pwestin@webrtc.org5e87b5f2012-11-13 21:12:3937class PacedSender;
mflodman@webrtc.orgc51222c2015-02-06 13:10:1938class PayloadRouter;
andrew@webrtc.orgb015cbe2012-10-22 18:19:2339class ProcessThread;
40class QMVideoSettingsCallback;
pbos@webrtc.orgee9497c2014-12-01 15:23:2141class SendStatisticsProxy;
andrew@webrtc.orgb015cbe2012-10-22 18:19:2342class ViEBitrateObserver;
43class ViEEffectFilter;
44class ViEEncoderObserver;
mflodman@webrtc.orgbf76ae22013-07-23 11:35:0045class VideoCodingModule;
andrew@webrtc.orgb015cbe2012-10-22 18:19:2346
47class ViEEncoder
48 : public RtcpIntraFrameObserver,
pbos@webrtc.org34c89ae2015-02-26 13:15:2249 public VideoEncoderRateObserver,
andrew@webrtc.orgb015cbe2012-10-22 18:19:2350 public VCMPacketizationCallback,
andrew@webrtc.orgb015cbe2012-10-22 18:19:2351 public VCMSendStatisticsCallback,
52 public ViEFrameCallback {
53 public:
54 friend class ViEBitrateObserver;
55
mflodman@webrtc.org80ea58d2015-02-26 12:57:4756 ViEEncoder(int32_t channel_id,
pbos@webrtc.org67879bc2013-04-09 13:41:5157 uint32_t number_of_cores,
andresp@webrtc.orgac6d9192013-05-13 10:50:5058 const Config& config,
andrew@webrtc.orgb015cbe2012-10-22 18:19:2359 ProcessThread& module_process_thread,
Stefan Holmerca55fa12015-03-26 10:11:0660 PacedSender* pacer,
stefan@webrtc.org3ada29b2015-03-04 12:24:2661 BitrateAllocator* bitrate_allocator,
pbos@webrtc.orgcbcd7bf2015-02-13 08:00:0662 BitrateController* bitrate_controller,
63 bool disable_default_encoder);
andrew@webrtc.orgb015cbe2012-10-22 18:19:2364 ~ViEEncoder();
65
66 bool Init();
67
mflodman@webrtc.orgaca8c5e2015-02-17 10:15:0668 // This function is assumed to be called before any frames are delivered and
69 // only once.
70 // Ideally this would be done in Init, but the dependencies between ViEEncoder
71 // and ViEChannel makes it really hard to do in a good way.
mflodman@webrtc.org52be6c22015-02-25 13:50:1072 void StartThreadsAndSetSharedMembers(
73 scoped_refptr<PayloadRouter> send_payload_router,
74 VCMProtectionCallback* vcm_protection_callback);
mflodman@webrtc.orgaca8c5e2015-02-17 10:15:0675
76 // This function must be called before the corresponding ViEChannel is
77 // deleted.
mflodman@webrtc.org52be6c22015-02-25 13:50:1078 void StopThreadsAndRemoveSharedMembers();
mflodman@webrtc.orgc51222c2015-02-06 13:10:1979
stefan@webrtc.orgdca71b22013-03-27 16:36:0180 void SetNetworkTransmissionState(bool is_transmitting);
81
andrew@webrtc.orgb015cbe2012-10-22 18:19:2382 // Returns the id of the owning channel.
83 int Owner() const;
84
85 // Drops incoming packets before they get to the encoder.
86 void Pause();
87 void Restart();
88
andrew@webrtc.orgb015cbe2012-10-22 18:19:2389 // Codec settings.
pbos@webrtc.org67879bc2013-04-09 13:41:5190 uint8_t NumberOfCodecs();
91 int32_t GetCodec(uint8_t list_index, VideoCodec* video_codec);
92 int32_t RegisterExternalEncoder(VideoEncoder* encoder,
93 uint8_t pl_type,
94 bool internal_source);
95 int32_t DeRegisterExternalEncoder(uint8_t pl_type);
96 int32_t SetEncoder(const VideoCodec& video_codec);
97 int32_t GetEncoder(VideoCodec* video_codec);
andrew@webrtc.orgb015cbe2012-10-22 18:19:2398
pbos@webrtc.org67879bc2013-04-09 13:41:5199 int32_t GetCodecConfigParameters(
andrew@webrtc.orgb015cbe2012-10-22 18:19:23100 unsigned char config_parameters[kConfigParameterSize],
101 unsigned char& config_parameters_size);
102
103 // Scale or crop/pad image.
pbos@webrtc.org67879bc2013-04-09 13:41:51104 int32_t ScaleInputImage(bool enable);
andrew@webrtc.orgb015cbe2012-10-22 18:19:23105
andrew@webrtc.orgb015cbe2012-10-22 18:19:23106 // Implementing ViEFrameCallback.
kjellander@webrtc.org860ac532015-03-04 12:58:35107 void DeliverFrame(int id,
Magnus Jedvert63d65b02015-04-07 12:07:41108 const I420VideoFrame& video_frame,
kjellander@webrtc.org860ac532015-03-04 12:58:35109 const std::vector<uint32_t>& csrcs) override;
110 void DelayChanged(int id, int frame_delay) override;
111 int GetPreferedFrameSettings(int* width,
112 int* height,
113 int* frame_rate) override;
andrew@webrtc.orgb015cbe2012-10-22 18:19:23114
kjellander@webrtc.org860ac532015-03-04 12:58:35115 void ProviderDestroyed(int id) override { return; }
andrew@webrtc.orgb015cbe2012-10-22 18:19:23116
pbos@webrtc.org67879bc2013-04-09 13:41:51117 int32_t SendKeyFrame();
118 int32_t SendCodecStatistics(uint32_t* num_key_frames,
119 uint32_t* num_delta_frames);
andrew@webrtc.orgb015cbe2012-10-22 18:19:23120
pbos@webrtc.org71310302015-03-18 14:40:03121 uint32_t LastObservedBitrateBps() const;
pbos@webrtc.org67879bc2013-04-09 13:41:51122 int CodecTargetBitrate(uint32_t* bitrate) const;
andrew@webrtc.orgb015cbe2012-10-22 18:19:23123 // Loss protection.
mflodman@webrtc.org52be6c22015-02-25 13:50:10124 int32_t UpdateProtectionMethod(bool nack, bool fec);
wu@webrtc.org7fc75bb2013-08-15 23:38:54125 bool nack_enabled() const { return nack_enabled_; }
andrew@webrtc.orgb015cbe2012-10-22 18:19:23126
mikhal@webrtc.org9d6fcb32013-02-15 23:22:18127 // Buffering mode.
128 void SetSenderBufferingMode(int target_delay_ms);
mikhal@webrtc.org0c66de62013-02-10 18:42:55129
pbos@webrtc.org34c89ae2015-02-26 13:15:22130 // Implements VideoEncoderRateObserver.
131 void OnSetRates(uint32_t bitrate_bps, int framerate) override;
132
andrew@webrtc.orgb015cbe2012-10-22 18:19:23133 // Implements VCMPacketizationCallback.
kjellander@webrtc.org860ac532015-03-04 12:58:35134 int32_t SendData(uint8_t payload_type,
135 const EncodedImage& encoded_image,
136 const RTPFragmentationHeader& fragmentation_header,
137 const RTPVideoHeader* rtp_video_hdr) override;
andrew@webrtc.orgb015cbe2012-10-22 18:19:23138
andrew@webrtc.orgb015cbe2012-10-22 18:19:23139 // Implements VideoSendStatisticsCallback.
kjellander@webrtc.org860ac532015-03-04 12:58:35140 int32_t SendStatistics(const uint32_t bit_rate,
141 const uint32_t frame_rate) override;
henrike@webrtc.org9cd0bbc2014-09-11 22:45:54142
pbos@webrtc.org67879bc2013-04-09 13:41:51143 int32_t RegisterCodecObserver(ViEEncoderObserver* observer);
andrew@webrtc.orgb015cbe2012-10-22 18:19:23144
145 // Implements RtcpIntraFrameObserver.
kjellander@webrtc.org860ac532015-03-04 12:58:35146 void OnReceivedIntraFrameRequest(uint32_t ssrc) override;
147 void OnReceivedSLI(uint32_t ssrc, uint8_t picture_id) override;
148 void OnReceivedRPSI(uint32_t ssrc, uint64_t picture_id) override;
149 void OnLocalSsrcChanged(uint32_t old_ssrc, uint32_t new_ssrc) override;
andrew@webrtc.orgb015cbe2012-10-22 18:19:23150
mflodman@webrtc.orgb6d9cfc2012-10-25 11:30:29151 // Sets SSRCs for all streams.
152 bool SetSsrcs(const std::list<unsigned int>& ssrcs);
153
pbos@webrtc.org3f83f9c2014-03-13 12:52:27154 void SetMinTransmitBitrate(int min_transmit_bitrate_kbps);
155
andrew@webrtc.orgb015cbe2012-10-22 18:19:23156 // Effect filter.
pbos@webrtc.org67879bc2013-04-09 13:41:51157 int32_t RegisterEffectFilter(ViEEffectFilter* effect_filter);
andrew@webrtc.orgb015cbe2012-10-22 18:19:23158
andrew@webrtc.orgb015cbe2012-10-22 18:19:23159 // Enables recording of debugging information.
henrike@webrtc.org9cd0bbc2014-09-11 22:45:54160 int StartDebugRecording(const char* fileNameUTF8);
andrew@webrtc.orgb015cbe2012-10-22 18:19:23161
162 // Disables recording of debugging information.
henrike@webrtc.org9cd0bbc2014-09-11 22:45:54163 int StopDebugRecording();
andrew@webrtc.orgb015cbe2012-10-22 18:19:23164
henrik.lundin@webrtc.org45901772013-11-18 12:18:43165 // Lets the sender suspend video when the rate drops below
henrik.lundin@webrtc.org39079d12013-10-02 13:34:26166 // |threshold_bps|, and turns back on when the rate goes back up above
167 // |threshold_bps| + |window_bps|.
henrike@webrtc.org9cd0bbc2014-09-11 22:45:54168 void SuspendBelowMinBitrate();
henrik.lundin@webrtc.org39079d12013-10-02 13:34:26169
sprang@webrtc.org2e98d452013-11-26 11:41:59170 // New-style callbacks, used by VideoSendStream.
pbos@webrtc.org63301bd2013-10-21 10:34:43171 void RegisterPreEncodeCallback(I420FrameCallback* pre_encode_callback);
172 void DeRegisterPreEncodeCallback();
sprang@webrtc.org2e98d452013-11-26 11:41:59173 void RegisterPostEncodeImageCallback(
174 EncodedImageCallback* post_encode_callback);
175 void DeRegisterPostEncodeImageCallback();
pbos@webrtc.org63301bd2013-10-21 10:34:43176
pbos@webrtc.orgee9497c2014-12-01 15:23:21177 void RegisterSendStatisticsProxy(SendStatisticsProxy* send_statistics_proxy);
178
mflodman@webrtc.orgff9854b2012-10-25 13:06:22179 int channel_id() const { return channel_id_; }
sprang@webrtc.org2e98d452013-11-26 11:41:59180
Stefan Holmerca55fa12015-03-26 10:11:06181 int GetPaddingNeededBps(int bitrate_bps) const;
182
andrew@webrtc.orgb015cbe2012-10-22 18:19:23183 protected:
184 // Called by BitrateObserver.
stefan@webrtc.orga5f17c82014-12-08 19:46:23185 void OnNetworkChanged(uint32_t bitrate_bps,
186 uint8_t fraction_lost,
pkasting@chromium.orga3166c42015-01-12 21:51:21187 int64_t round_trip_time_ms);
andrew@webrtc.orgb015cbe2012-10-22 18:19:23188
189 private:
stefan@webrtc.orgfedbe8b2014-07-09 14:46:31190 bool EncoderPaused() const EXCLUSIVE_LOCKS_REQUIRED(data_cs_);
sprang@webrtc.org9a8c28f2014-11-04 16:27:16191 void TraceFrameDropStart() EXCLUSIVE_LOCKS_REQUIRED(data_cs_);
192 void TraceFrameDropEnd() EXCLUSIVE_LOCKS_REQUIRED(data_cs_);
stefan@webrtc.orgdca71b22013-03-27 16:36:01193
asapersson@webrtc.orged94bc82014-11-03 14:40:38194 void UpdateHistograms();
195
andrew@webrtc.orgb015cbe2012-10-22 18:19:23196 const int channel_id_;
pbos@webrtc.org67879bc2013-04-09 13:41:51197 const uint32_t number_of_cores_;
pbos@webrtc.orgcbcd7bf2015-02-13 08:00:06198 const bool disable_default_encoder_;
andrew@webrtc.orgb015cbe2012-10-22 18:19:23199
mflodman23351642015-04-14 19:28:08200 const rtc::scoped_ptr<VideoProcessingModule> vpm_;
201 const rtc::scoped_ptr<QMVideoSettingsCallback> qm_callback_;
202 const rtc::scoped_ptr<VideoCodingModule> vcm_;
mflodman@webrtc.orgde412872015-02-20 12:45:40203 scoped_refptr<PayloadRouter> send_payload_router_;
mflodman@webrtc.org52be6c22015-02-25 13:50:10204
mflodman@webrtc.org867d2882015-02-10 08:58:16205 rtc::scoped_ptr<CriticalSectionWrapper> callback_cs_;
206 rtc::scoped_ptr<CriticalSectionWrapper> data_cs_;
207 rtc::scoped_ptr<BitrateObserver> bitrate_observer_;
andrew@webrtc.orgb015cbe2012-10-22 18:19:23208
Stefan Holmerca55fa12015-03-26 10:11:06209 PacedSender* const pacer_;
stefan@webrtc.org3ada29b2015-03-04 12:24:26210 BitrateAllocator* const bitrate_allocator_;
211 BitrateController* const bitrate_controller_;
andrew@webrtc.orgb015cbe2012-10-22 18:19:23212
Noah Richards14cb9492015-04-15 16:14:12213 // The time we last received an input frame or encoded frame. This is used to
214 // track when video is stopped long enough that we also want to stop sending
215 // padding.
216 int64_t time_of_last_frame_activity_ms_ GUARDED_BY(data_cs_);
stefan@webrtc.orgfedbe8b2014-07-09 14:46:31217 bool send_padding_ GUARDED_BY(data_cs_);
pbos@webrtc.org3f83f9c2014-03-13 12:52:27218 int min_transmit_bitrate_kbps_ GUARDED_BY(data_cs_);
pbos@webrtc.org71310302015-03-18 14:40:03219 uint32_t last_observed_bitrate_bps_ GUARDED_BY(data_cs_);
stefan@webrtc.orgfedbe8b2014-07-09 14:46:31220 int target_delay_ms_ GUARDED_BY(data_cs_);
221 bool network_is_transmitting_ GUARDED_BY(data_cs_);
222 bool encoder_paused_ GUARDED_BY(data_cs_);
223 bool encoder_paused_and_dropped_frame_ GUARDED_BY(data_cs_);
224 std::map<unsigned int, int64_t> time_last_intra_request_ms_
225 GUARDED_BY(data_cs_);
andrew@webrtc.orgb015cbe2012-10-22 18:19:23226
227 bool fec_enabled_;
228 bool nack_enabled_;
229
pbos@webrtc.org3f83f9c2014-03-13 12:52:27230 ViEEncoderObserver* codec_observer_ GUARDED_BY(callback_cs_);
stefan@webrtc.orgfedbe8b2014-07-09 14:46:31231 ViEEffectFilter* effect_filter_ GUARDED_BY(callback_cs_);
andrew@webrtc.orgb015cbe2012-10-22 18:19:23232 ProcessThread& module_process_thread_;
233
stefan@webrtc.orgfedbe8b2014-07-09 14:46:31234 bool has_received_sli_ GUARDED_BY(data_cs_);
235 uint8_t picture_id_sli_ GUARDED_BY(data_cs_);
236 bool has_received_rpsi_ GUARDED_BY(data_cs_);
237 uint64_t picture_id_rpsi_ GUARDED_BY(data_cs_);
238 std::map<unsigned int, int> ssrc_streams_ GUARDED_BY(data_cs_);
andrew@webrtc.orgb015cbe2012-10-22 18:19:23239
stefan@webrtc.orgfedbe8b2014-07-09 14:46:31240 bool video_suspended_ GUARDED_BY(data_cs_);
241 I420FrameCallback* pre_encode_callback_ GUARDED_BY(callback_cs_);
asapersson@webrtc.orged94bc82014-11-03 14:40:38242 const int64_t start_ms_;
pbos@webrtc.orgee9497c2014-12-01 15:23:21243
pbos@webrtc.org34c89ae2015-02-26 13:15:22244 SendStatisticsProxy* send_statistics_proxy_ GUARDED_BY(callback_cs_);
andrew@webrtc.orgb015cbe2012-10-22 18:19:23245};
246
247} // namespace webrtc
248
249#endif // WEBRTC_VIDEO_ENGINE_VIE_ENCODER_H_