summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2022-01-24 18:00:07 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-01-26 15:23:30 +0100
commitdf2ee38178d22f57c706cc61f0acf37c40e16f96 (patch)
treed6c4acfa85bde13fbc816f4e225f3751b74d08ad
parentb6f3334a133c9df970ad2d55c96f9340995b6315 (diff)
lavc/h264_parser: add missing headers
-rw-r--r--libavcodec/h264_parser.c3
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"