LeviLamina
Loading...
Searching...
No Matches
RtcpMode.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace webrtc {
6
7enum class RtcpMode : int {
8 KOff = 0,
9 KCompound = 1,
10 KReducedSize = 2,
11};
12
13}