LeviLamina
Loading...
Searching...
No Matches
VideoCodecType.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace webrtc {
6
7enum class VideoCodecType : int {
8 KVideoCodecGeneric = 0,
9 KVideoCodecVP8 = 1,
10 KVideoCodecVP9 = 2,
11 KVideoCodecAV1 = 3,
12 KVideoCodecH264 = 4,
13 KVideoCodecH265 = 5,
14};
15
16}