summaryrefslogtreecommitdiff
path: root/libavcodec/svq3.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2022-01-24 18:00:14 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-01-26 15:30:28 +0100
commitd0f0d613926550ebf293e1d32f7a395fa0a88aed (patch)
tree1e7d16bc21412139bb96b9f6483bd28f45821f13 /libavcodec/svq3.c
parent359912f0df3fa9ee9616b9f35ed151ffd5c62ece (diff)
lavc/svq3: stop including h264dec.h
The only thing that is actually used directly from there is the PART_NOT_AVAILABLE constant, which can be moved to h264pred.h. Otherwise it only depends on other indirectly included headers.
Diffstat (limited to 'libavcodec/svq3.c')
-rw-r--r--libavcodec/svq3.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/libavcodec/svq3.c b/libavcodec/svq3.c
index a3f434ff8d..be95e222aa 100644
--- a/libavcodec/svq3.c
+++ b/libavcodec/svq3.c
@@ -49,13 +49,16 @@
#include "internal.h"
#include "avcodec.h"
#include "mpegutils.h"
-#include "h264dec.h"
#include "h264data.h"
+#include "h264dsp.h"
+#include "h264pred.h"
+#include "h264_parse.h"
#include "golomb.h"
#include "hpeldsp.h"
#include "mathops.h"
#include "rectangle.h"
#include "tpeldsp.h"
+#include "videodsp.h"
#if CONFIG_ZLIB
#include <zlib.h>