This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
h264: give numbers to nalus
Signed-off-by: Janne Grunau <janne-libav@jannau.net>
tags/n2.2-rc1
Vittorio Giovara
Janne Grunau
11 years ago
parent
0cffd6fff5
commit
b141c7b37e
1 changed files
with
13 additions
and
13 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+13
-13
libavcodec/h264.h
+ 13
- 13
libavcodec/h264.h
View File
@@ -99,19 +99,19 @@
/* NAL unit types */
enum {
NAL_SLICE = 1,
NAL_DPA,
NAL_DPB,
NAL_DPC,
NAL_IDR_SLICE,
NAL_SEI,
NAL_SPS,
NAL_PPS,
NAL_AUD,
NAL_END_SEQUENCE,
NAL_END_STREAM,
NAL_FILLER_DATA,
NAL_SPS_EXT,
NAL_SLICE
= 1,
NAL_DPA
= 2
,
NAL_DPB
= 3
,
NAL_DPC
= 4
,
NAL_IDR_SLICE
= 5
,
NAL_SEI
= 6
,
NAL_SPS
= 7
,
NAL_PPS
= 8
,
NAL_AUD
= 9
,
NAL_END_SEQUENCE
= 10
,
NAL_END_STREAM
= 11
,
NAL_FILLER_DATA
= 12
,
NAL_SPS_EXT
= 13
,
NAL_AUXILIARY_SLICE = 19,
NAL_FF_IGNORE = 0xff0f001,
};
Write
Preview
Loading…
Cancel
Save