LeviLamina
Loading...
Searching...
No Matches
RTPVideoFrameSenderInterface.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/webrtc/VideoCodecType.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace webrtc { class TimeDelta; }
11namespace webrtc { class Timestamp; }
12namespace webrtc { struct FrameDependencyStructure; }
13namespace webrtc { struct RTPVideoHeader; }
14namespace webrtc { struct VideoLayersAllocation; }
15// clang-format on
16
17namespace webrtc {
18
20public:
21 // virtual functions
22 // NOLINTBEGIN
23 virtual bool SendVideo(
24 int payload_type,
25 ::std::optional<::webrtc::VideoCodecType> codec_type,
26 uint rtp_timestamp,
27 ::webrtc::Timestamp capture_time,
29 uint64 encoder_output_size,
30 ::webrtc::RTPVideoHeader video_header,
31 ::webrtc::TimeDelta expected_retransmission_time,
32 ::std::vector<uint> csrcs
33 ) = 0;
34
35 virtual void SetVideoStructureAfterTransformation(::webrtc::FrameDependencyStructure const* video_structure) = 0;
36
37 virtual void SetVideoLayersAllocationAfterTransformation(::webrtc::VideoLayersAllocation allocation) = 0;
38
39 virtual ~RTPVideoFrameSenderInterface() = default;
40 // NOLINTEND
41
42public:
43 // virtual function thunks
44 // NOLINTBEGIN
45
46 // NOLINTEND
47};
48
49} // namespace webrtc
Definition _HeaderOutputPredefine.h:310
Definition RTPVideoFrameSenderInterface.h:19
Definition TimeDelta.h:10
Definition Timestamp.h:15
Definition FrameDependencyStructure.h:7
Definition RTPVideoHeader.h:12
Definition VideoLayersAllocation.h:7