mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-16 07:10:38 +01:00

Now that we have moved WebRTC from src/webrtc to src/, common_types.h and typedefs.h are triggering a cpplint error. The cpplint complaint is: Include the directory when naming .h files [build/include] [4] This CL disables the error but we have to remove these two headers from the root directory. NOPRESUBMIT=true Bug: webrtc:5876 Change-Id: I08e1b69aadcc4b28ab83bf25e3819d135d41d333 Reviewed-on: https://webrtc-review.googlesource.com/1577 Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org> Reviewed-by: Henrik Kjellander <kjellander@google.com> Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Cr-Commit-Position: refs/heads/master@{#19859}
167 lines
5.7 KiB
C++
167 lines
5.7 KiB
C++
/*
|
|
* Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#ifndef MODULES_RTP_RTCP_SOURCE_RTP_SENDER_VIDEO_H_
|
|
#define MODULES_RTP_RTCP_SOURCE_RTP_SENDER_VIDEO_H_
|
|
|
|
#include <map>
|
|
#include <memory>
|
|
|
|
#include "api/optional.h"
|
|
#include "common_types.h" // NOLINT(build/include)
|
|
#include "modules/rtp_rtcp/include/flexfec_sender.h"
|
|
#include "modules/rtp_rtcp/include/rtp_rtcp_defines.h"
|
|
#include "modules/rtp_rtcp/source/rtp_rtcp_config.h"
|
|
#include "modules/rtp_rtcp/source/rtp_sender.h"
|
|
#include "modules/rtp_rtcp/source/rtp_utility.h"
|
|
#include "modules/rtp_rtcp/source/ulpfec_generator.h"
|
|
#include "modules/rtp_rtcp/source/video_codec_information.h"
|
|
#include "rtc_base/criticalsection.h"
|
|
#include "rtc_base/onetimeevent.h"
|
|
#include "rtc_base/rate_statistics.h"
|
|
#include "rtc_base/sequenced_task_checker.h"
|
|
#include "rtc_base/thread_annotations.h"
|
|
#include "typedefs.h" // NOLINT(build/include)
|
|
|
|
namespace webrtc {
|
|
class RtpPacketizer;
|
|
class RtpPacketToSend;
|
|
|
|
class RTPSenderVideo {
|
|
public:
|
|
static constexpr int64_t kTLRateWindowSizeMs = 2500;
|
|
|
|
RTPSenderVideo(Clock* clock,
|
|
RTPSender* rtpSender,
|
|
FlexfecSender* flexfec_sender);
|
|
virtual ~RTPSenderVideo();
|
|
|
|
virtual RtpVideoCodecTypes VideoCodecType() const;
|
|
|
|
static RtpUtility::Payload* CreateVideoPayload(
|
|
const char payload_name[RTP_PAYLOAD_NAME_SIZE],
|
|
int8_t payload_type);
|
|
|
|
bool SendVideo(RtpVideoCodecTypes video_type,
|
|
FrameType frame_type,
|
|
int8_t payload_type,
|
|
uint32_t capture_timestamp,
|
|
int64_t capture_time_ms,
|
|
const uint8_t* payload_data,
|
|
size_t payload_size,
|
|
const RTPFragmentationHeader* fragmentation,
|
|
const RTPVideoHeader* video_header,
|
|
int64_t expected_retransmission_time_ms);
|
|
|
|
void SetVideoCodecType(RtpVideoCodecTypes type);
|
|
|
|
// ULPFEC.
|
|
void SetUlpfecConfig(int red_payload_type, int ulpfec_payload_type);
|
|
void GetUlpfecConfig(int* red_payload_type, int* ulpfec_payload_type) const;
|
|
|
|
// FlexFEC/ULPFEC.
|
|
void SetFecParameters(const FecProtectionParams& delta_params,
|
|
const FecProtectionParams& key_params);
|
|
|
|
// FlexFEC.
|
|
rtc::Optional<uint32_t> FlexfecSsrc() const;
|
|
|
|
uint32_t VideoBitrateSent() const;
|
|
uint32_t FecOverheadRate() const;
|
|
|
|
int SelectiveRetransmissions() const;
|
|
void SetSelectiveRetransmissions(uint8_t settings);
|
|
|
|
protected:
|
|
static uint8_t GetTemporalId(const RTPVideoHeader& header);
|
|
StorageType GetStorageType(uint8_t temporal_id,
|
|
int32_t retransmission_settings,
|
|
int64_t expected_retransmission_time_ms);
|
|
|
|
private:
|
|
struct TemporalLayerStats {
|
|
TemporalLayerStats()
|
|
: frame_rate_fp1000s(kTLRateWindowSizeMs, 1000 * 1000),
|
|
last_frame_time_ms(0) {}
|
|
// Frame rate, in frames per 1000 seconds. This essentially turns the fps
|
|
// value into a fixed point value with three decimals. Improves precision at
|
|
// low frame rates.
|
|
RateStatistics frame_rate_fp1000s;
|
|
int64_t last_frame_time_ms;
|
|
};
|
|
|
|
size_t CalculateFecPacketOverhead() const RTC_EXCLUSIVE_LOCKS_REQUIRED(crit_);
|
|
|
|
void SendVideoPacket(std::unique_ptr<RtpPacketToSend> packet,
|
|
StorageType storage);
|
|
|
|
void SendVideoPacketAsRedMaybeWithUlpfec(
|
|
std::unique_ptr<RtpPacketToSend> media_packet,
|
|
StorageType media_packet_storage,
|
|
bool protect_media_packet);
|
|
|
|
// TODO(brandtr): Remove the FlexFEC functions when FlexfecSender has been
|
|
// moved to PacedSender.
|
|
void SendVideoPacketWithFlexfec(std::unique_ptr<RtpPacketToSend> media_packet,
|
|
StorageType media_packet_storage,
|
|
bool protect_media_packet);
|
|
|
|
bool red_enabled() const RTC_EXCLUSIVE_LOCKS_REQUIRED(crit_) {
|
|
return red_payload_type_ >= 0;
|
|
}
|
|
|
|
bool ulpfec_enabled() const RTC_EXCLUSIVE_LOCKS_REQUIRED(crit_) {
|
|
return ulpfec_payload_type_ >= 0;
|
|
}
|
|
|
|
bool flexfec_enabled() const { return flexfec_sender_ != nullptr; }
|
|
|
|
bool UpdateConditionalRetransmit(uint8_t temporal_id,
|
|
int64_t expected_retransmission_time_ms)
|
|
RTC_EXCLUSIVE_LOCKS_REQUIRED(stats_crit_);
|
|
|
|
RTPSender* const rtp_sender_;
|
|
Clock* const clock_;
|
|
|
|
// Should never be held when calling out of this class.
|
|
rtc::CriticalSection crit_;
|
|
|
|
RtpVideoCodecTypes video_type_;
|
|
int32_t retransmission_settings_ RTC_GUARDED_BY(crit_);
|
|
VideoRotation last_rotation_ RTC_GUARDED_BY(crit_);
|
|
|
|
// RED/ULPFEC.
|
|
int red_payload_type_ RTC_GUARDED_BY(crit_);
|
|
int ulpfec_payload_type_ RTC_GUARDED_BY(crit_);
|
|
UlpfecGenerator ulpfec_generator_ RTC_GUARDED_BY(crit_);
|
|
|
|
// FlexFEC.
|
|
FlexfecSender* const flexfec_sender_;
|
|
|
|
// FEC parameters, applicable to either ULPFEC or FlexFEC.
|
|
FecProtectionParams delta_fec_params_ RTC_GUARDED_BY(crit_);
|
|
FecProtectionParams key_fec_params_ RTC_GUARDED_BY(crit_);
|
|
|
|
rtc::CriticalSection stats_crit_;
|
|
// Bitrate used for FEC payload, RED headers, RTP headers for FEC packets
|
|
// and any padding overhead.
|
|
RateStatistics fec_bitrate_ RTC_GUARDED_BY(stats_crit_);
|
|
// Bitrate used for video payload and RTP headers.
|
|
RateStatistics video_bitrate_ RTC_GUARDED_BY(stats_crit_);
|
|
|
|
std::map<int, TemporalLayerStats> frame_stats_by_temporal_layer_
|
|
RTC_GUARDED_BY(stats_crit_);
|
|
|
|
OneTimeEvent first_frame_sent_;
|
|
};
|
|
|
|
} // namespace webrtc
|
|
|
|
#endif // MODULES_RTP_RTCP_SOURCE_RTP_SENDER_VIDEO_H_
|