LeviLamina
Loading...
Searching...
No Matches
RtpTransceiverDirection.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace webrtc {
6
7enum class RtpTransceiverDirection : int {
8 KSendRecv = 0,
9 KSendOnly = 1,
10 KRecvOnly = 2,
11 KInactive = 3,
12 KStopped = 4,
13};
14
15}