diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-01-24 19:35:49 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-01-26 15:30:54 +0100 |
commit | c3ff71680805267bc8f3fff86c1cf917f810c0d9 (patch) | |
tree | 9da5f2cabfa041bf330eefd29ab7ad12ca1e4a5a | |
parent | c793e05381090b1624e9b81f4a26da3214177afd (diff) | |
download | ffmpeg-c3ff71680805267bc8f3fff86c1cf917f810c0d9.tar.gz |
avcodec/h264_*: Remove unnecessary internal.h inclusions
Also remove some other unnecessary headers while at it.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | libavcodec/h264_cabac.c | 1 | ||||
-rw-r--r-- | libavcodec/h264_cavlc.c | 1 | ||||
-rw-r--r-- | libavcodec/h264_direct.c | 1 | ||||
-rw-r--r-- | libavcodec/h264_loopfilter.c | 3 | ||||
-rw-r--r-- | libavcodec/h264_mvpred.h | 2 |
5 files changed, 0 insertions, 8 deletions
diff --git a/libavcodec/h264_cabac.c b/libavcodec/h264_cabac.c index 884d392022..703b27aa96 100644 --- a/libavcodec/h264_cabac.c +++ b/libavcodec/h264_cabac.c @@ -34,7 +34,6 @@ #include "config.h" #include "cabac.h" #include "cabac_functions.h" -#include "internal.h" #include "h264dec.h" #include "h264data.h" #include "h264_mvpred.h" diff --git a/libavcodec/h264_cavlc.c b/libavcodec/h264_cavlc.c index fa8ba5dac7..9191df0303 100644 --- a/libavcodec/h264_cavlc.c +++ b/libavcodec/h264_cavlc.c @@ -28,7 +28,6 @@ #define CABAC(h) 0 #define UNCHECKED_BITSTREAM_READER 1 -#include "internal.h" #include "h264dec.h" #include "h264_mvpred.h" #include "h264data.h" diff --git a/libavcodec/h264_direct.c b/libavcodec/h264_direct.c index 8f07981130..93c2e1e438 100644 --- a/libavcodec/h264_direct.c +++ b/libavcodec/h264_direct.c @@ -25,7 +25,6 @@ * @author Michael Niedermayer <michaelni@gmx.at> */ -#include "internal.h" #include "avcodec.h" #include "h264dec.h" #include "h264_ps.h" diff --git a/libavcodec/h264_loopfilter.c b/libavcodec/h264_loopfilter.c index 558ec6c02d..2440cfa831 100644 --- a/libavcodec/h264_loopfilter.c +++ b/libavcodec/h264_loopfilter.c @@ -28,13 +28,10 @@ #include "libavutil/internal.h" #include "libavutil/intreadwrite.h" #include "libavutil/mem_internal.h" -#include "internal.h" #include "avcodec.h" #include "h264dec.h" #include "h264_ps.h" -#include "mathops.h" #include "mpegutils.h" -#include "rectangle.h" /* Deblocking filter (p153) */ static const uint8_t alpha_table[52*3] = { diff --git a/libavcodec/h264_mvpred.h b/libavcodec/h264_mvpred.h index 19d9ee462d..46ae2738f9 100644 --- a/libavcodec/h264_mvpred.h +++ b/libavcodec/h264_mvpred.h @@ -28,8 +28,6 @@ #ifndef AVCODEC_H264_MVPRED_H #define AVCODEC_H264_MVPRED_H -#include "internal.h" -#include "avcodec.h" #include "h264dec.h" #include "mpegutils.h" #include "libavutil/avassert.h" |