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