Home
last modified time | relevance | path

Searched refs:RTPSenderVideo (Results 1 – 5 of 5) sorted by relevance

/external/webrtc/webrtc/modules/rtp_rtcp/source/
Drtp_sender_video.cc37 RTPSenderVideo::RTPSenderVideo(Clock* clock, RTPSenderInterface* rtpSender) in RTPSenderVideo() function in webrtc::RTPSenderVideo
61 RTPSenderVideo::~RTPSenderVideo() { in ~RTPSenderVideo()
64 void RTPSenderVideo::SetVideoCodecType(RtpVideoCodecTypes videoType) { in SetVideoCodecType()
68 RtpVideoCodecTypes RTPSenderVideo::VideoCodecType() const { in VideoCodecType()
73 RtpUtility::Payload* RTPSenderVideo::CreateVideoPayload( in CreateVideoPayload()
98 void RTPSenderVideo::SendVideoPacket(uint8_t* data_buffer, in SendVideoPacket()
117 void RTPSenderVideo::SendVideoPacketAsRed(uint8_t* data_buffer, in SendVideoPacketAsRed()
179 void RTPSenderVideo::SetGenericFECStatus(const bool enable, in SetGenericFECStatus()
193 void RTPSenderVideo::GenericFECStatus(bool* enable, in GenericFECStatus()
202 size_t RTPSenderVideo::FECPacketOverhead() const { in FECPacketOverhead()
[all …]
Drtp_sender_video.h33 class RTPSenderVideo {
35 RTPSenderVideo(Clock* clock, RTPSenderInterface* rtpSender);
36 virtual ~RTPSenderVideo();
Drtp_sender.h36 class RTPSenderVideo; variable
396 rtc::scoped_ptr<RTPSenderVideo> video_;
Drtp_sender_unittest.cc190 new RTPSenderVideo(&fake_clock_, rtp_sender_.get())); in SetUp()
192 rtc::scoped_ptr<RTPSenderVideo> rtp_sender_video_;
Drtp_sender.cc136 video_(audio ? nullptr : new RTPSenderVideo(clock, this)), in RTPSender()