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/omx.c | |
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/omx.c')
-rw-r--r-- | libavcodec/omx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/omx.c b/libavcodec/omx.c index d556a202e3..961ff86764 100644 --- a/libavcodec/omx.c +++ b/libavcodec/omx.c @@ -41,7 +41,7 @@ #include "libavutil/opt.h" #include "avcodec.h" -#include "h264dec.h" +#include "h264.h" #include "internal.h" #ifdef OMX_SKIP64BIT |