LeviLamina
Loading...
Searching...
No Matches
VideoCodecComplexity.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace webrtc {
6
7enum class VideoCodecComplexity : int {
8 KComplexityLow = -1,
9 KComplexityNormal = 0,
10 KComplexityHigh = 1,
11 KComplexityHigher = 2,
12 KComplexityMax = 3,
13};
14
15}