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-24 20:12:18 +0100
commit8e208e0178bebb2403df6d2e1e0995fb0720f366 (patch)
tree80478ee04d564c2d3bd7c2d076488daa7b412f6a
parent8c860927f4bbb008b5d954b844b1ff140882b37d (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"