LeviLamina
Loading...
Searching...
No Matches
PacketReceiver.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/absl/AnyInvocable.h"
7#include "mc/external/webrtc/MediaType.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace rtc { class CopyOnWriteBuffer; }
12namespace webrtc { class RtpPacketReceived; }
13// clang-format on
14
15namespace webrtc {
16
18public:
19 // virtual functions
20 // NOLINTBEGIN
21 // vIndex: 0
22 virtual void DeliverRtcpPacket(::rtc::CopyOnWriteBuffer) = 0;
23
24 // vIndex: 1
25 virtual void DeliverRtpPacket(
26 ::webrtc::MediaType,
29 ) = 0;
30
31 // vIndex: 2
32 virtual ~PacketReceiver() = default;
33 // NOLINTEND
34
35public:
36 // virtual function thunks
37 // NOLINTBEGIN
38
39 // NOLINTEND
40};
41
42} // namespace webrtc
Definition AnyInvocable.h:8
Definition CopyOnWriteBuffer.h:11
Definition PacketReceiver.h:17
Definition RtpPacketReceived.h:16