summaryrefslogtreecommitdiff
path: root/libavcodec/h264dec.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-01-24 18:56:49 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-01-24 20:12:18 +0100
commit9af4ccc4ab918b755a171f7814a9895396b68ba4 (patch)
tree3f5a3cadfc64c82a577c1fbac184c650bf7448be /libavcodec/h264dec.c
parenta91e8790d084216c9cd3ad77c95c41da32815945 (diff)
avcodec/h264*: Remove unnecessary h264_mvpred.h inclusions
This is only needed by h264_cabac.c and h264_cavlc.c. Also fix up the other headers while at it. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/h264dec.c')
-rw-r--r--libavcodec/h264dec.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/libavcodec/h264dec.c b/libavcodec/h264dec.c
index 3706ae0e31..ed9a74b0c6 100644
--- a/libavcodec/h264dec.c
+++ b/libavcodec/h264dec.c
@@ -28,29 +28,20 @@
#define UNCHECKED_BITSTREAM_READER 1
#include "libavutil/avassert.h"
-#include "libavutil/display.h"
#include "libavutil/imgutils.h"
#include "libavutil/opt.h"
-#include "libavutil/stereo3d.h"
#include "libavutil/video_enc_params.h"
#include "internal.h"
-#include "bytestream.h"
-#include "cabac.h"
-#include "cabac_functions.h"
#include "error_resilience.h"
#include "avcodec.h"
#include "h264.h"
#include "h264dec.h"
#include "h2645_parse.h"
#include "h264data.h"
-#include "h264chroma.h"
-#include "h264_mvpred.h"
#include "h264_ps.h"
#include "golomb.h"
#include "hwconfig.h"
-#include "mathops.h"
-#include "me_cmp.h"
#include "mpegutils.h"
#include "profiles.h"
#include "rectangle.h"