Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2016-05-18 10:16:35 +0300
committerAnton Khirnov <anton@khirnov.net>2016-06-21 12:12:41 +0300
commit251cbb44003caf179fb17afbb8a6c56643c2a646 (patch)
tree65f3b83d5d38ab0a088b20bf0c79b4a0ce942ec9 /libavcodec/h264_parse.c
parent9df889a5f116c1ee78c2f239e0ba599c492431aa (diff)
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/h264_parse.c')
-rw-r--r--libavcodec/h264_parse.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/h264_parse.c b/libavcodec/h264_parse.c
index be75b054e6..ba67f4e012 100644
--- a/libavcodec/h264_parse.c
+++ b/libavcodec/h264_parse.c
@@ -19,6 +19,7 @@
#include "bytestream.h"
#include "get_bits.h"
#include "golomb.h"
+#include "h264.h"
#include "h264dec.h"
#include "h264_parse.h"