diff options
author | Anton Khirnov <anton@khirnov.net> | 2022-01-24 18:00:07 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-01-26 15:23:30 +0100 |
commit | df2ee38178d22f57c706cc61f0acf37c40e16f96 (patch) | |
tree | d6c4acfa85bde13fbc816f4e225f3751b74d08ad /libavcodec | |
parent | b6f3334a133c9df970ad2d55c96f9340995b6315 (diff) | |
download | ffmpeg-df2ee38178d22f57c706cc61f0acf37c40e16f96.tar.gz |
lavc/h264_parser: add missing headers
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/h264_parser.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/h264_parser.c b/libavcodec/h264_parser.c index aee7cdb934..4002bcad77 100644 --- a/libavcodec/h264_parser.c +++ b/libavcodec/h264_parser.c @@ -40,8 +40,11 @@ #include "get_bits.h" #include "golomb.h" #include "h264.h" +#include "h264dsp.h" +#include "h264_parse.h" #include "h264_sei.h" #include "h264_ps.h" +#include "h2645_parse.h" #include "h264data.h" #include "internal.h" #include "mpegutils.h" |