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