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