diff options
author | Anton Khirnov <anton@khirnov.net> | 2016-05-18 09:16:35 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2016-06-21 11:12:41 +0200 |
commit | 251cbb44003caf179fb17afbb8a6c56643c2a646 (patch) | |
tree | 65f3b83d5d38ab0a088b20bf0c79b4a0ce942ec9 /libavcodec/h264dec.h | |
parent | 9df889a5f116c1ee78c2f239e0ba599c492431aa (diff) | |
download | ffmpeg-251cbb44003caf179fb17afbb8a6c56643c2a646.tar.gz |
h264: create a new header for common h264 definitions
Move the NAL unit types into it. This will allow to stop including the
whole decoder-specific h264dec.h in some code that is unrelated to the
decoder and only needs some enum values.
Diffstat (limited to 'libavcodec/h264dec.h')
-rw-r--r-- | libavcodec/h264dec.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/libavcodec/h264dec.h b/libavcodec/h264dec.h index 300077d7f2..e79257ea36 100644 --- a/libavcodec/h264dec.h +++ b/libavcodec/h264dec.h @@ -108,24 +108,6 @@ #define QP_MAX_NUM (51 + 2 * 6) // The maximum supported qp -/* NAL unit types */ -enum { - 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, -}; - /** * Sequence parameter set */ |