LeviLamina
Loading...
Searching...
No Matches
FlexfecReceiveStream.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/webrtc/ReceiveStreamInterface.h"
7#include "mc/external/webrtc/RtcpMode.h"
8#include "mc/external/webrtc/RtpPacketSinkInterface.h"
9
10// auto generated forward declare list
11// clang-format off
12namespace webrtc { class ReceiveStatistics; }
13// clang-format on
14
15namespace webrtc {
16
18public:
19 // FlexfecReceiveStream inner types declare
20 // clang-format off
21 struct Config;
22 // clang-format on
23
24 // FlexfecReceiveStream inner types define
25 struct Config {
26 public:
27 // member variables
28 // NOLINTBEGIN
34 // NOLINTEND
35
36 public:
37 // prevent constructor by default
38 Config& operator=(Config const&);
39 Config(Config const&);
40 Config();
41 };
42
43public:
44 // virtual functions
45 // NOLINTBEGIN
46 virtual ~FlexfecReceiveStream() /*override*/ = default;
47
48 virtual void SetRtcpMode(::webrtc::RtcpMode) = 0;
49
50 virtual void SetPayloadType(int) = 0;
51
52 virtual int payload_type() const = 0;
53
54 virtual ::webrtc::ReceiveStatistics const* GetStats() const = 0;
55 // NOLINTEND
56
57public:
58 // virtual function thunks
59 // NOLINTBEGIN
60
61 // NOLINTEND
62};
63
64} // namespace webrtc
Definition FlexfecReceiveStream.h:17
Definition ReceiveStatistics.h:16
Definition ReceiveStreamInterface.h:7
Definition RtpPacketSinkInterface.h:12
Definition Alias.h:14
Definition FlexfecReceiveStream.h:25