LeviLamina
Loading...
Searching...
No Matches
NaluType.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace webrtc::H264 {
6
7enum class NaluType : uchar {
8 KSlice = 1,
9 KIdr = 5,
10 KSei = 6,
11 KSps = 7,
12 KPps = 8,
13 KAud = 9,
14 KEndOfSequence = 10,
15 KEndOfStream = 11,
16 KFiller = 12,
17 KPrefix = 14,
18 KStapA = 24,
19 KFuA = 28,
20};
21
22}