diff options
author | Anton Khirnov <anton@khirnov.net> | 2022-01-24 18:00:11 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-01-26 15:23:30 +0100 |
commit | ded77f56549097cb69a00bc05a5a575c8dc06f8f (patch) | |
tree | 4eeecd41debd0b8ac667d92d373c3d1204968a24 /libavcodec/h264data.c | |
parent | 2f1716dcd6f25ba92fd0fe357174ca3bed307bf1 (diff) | |
download | ffmpeg-ded77f56549097cb69a00bc05a5a575c8dc06f8f.tar.gz |
lavc/h264: move MB_TYPE defs from h264dec.h to h264_parse
Allows to stop including h264dec.h in h264data.c.
Diffstat (limited to 'libavcodec/h264data.c')
-rw-r--r-- | libavcodec/h264data.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264data.c b/libavcodec/h264data.c index eb8728a9db..3e9e68cb04 100644 --- a/libavcodec/h264data.c +++ b/libavcodec/h264data.c @@ -30,7 +30,7 @@ #include "libavutil/avutil.h" -#include "h264dec.h" +#include "h264_parse.h" #include "h264data.h" #include "mpegutils.h" |