diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-08-02 06:43:12 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-08-05 03:28:45 +0200 |
commit | 2345b4eb9c430946ff1ca04d9ee55168336fd1cb (patch) | |
tree | 8520e3e0ffd92acbd74b442dbdb975b93d6932e2 | |
parent | 0661472fa849901d73c382bb49741fdf2fb0021f (diff) | |
download | ffmpeg-2345b4eb9c430946ff1ca04d9ee55168336fd1cb.tar.gz |
avcodec/acelp_*: Remove unnecessary headers
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | libavcodec/acelp_filters.c | 2 | ||||
-rw-r--r-- | libavcodec/acelp_pitch_delay.c | 2 | ||||
-rw-r--r-- | libavcodec/acelp_vectors.c | 4 |
3 files changed, 3 insertions, 5 deletions
diff --git a/libavcodec/acelp_filters.c b/libavcodec/acelp_filters.c index 9182579330..db4908f31c 100644 --- a/libavcodec/acelp_filters.c +++ b/libavcodec/acelp_filters.c @@ -20,8 +20,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include <inttypes.h> #include <stddef.h> +#include <stdint.h> #include "config.h" #include "libavutil/avassert.h" diff --git a/libavcodec/acelp_pitch_delay.c b/libavcodec/acelp_pitch_delay.c index 1eca97ec69..6cf880e4ac 100644 --- a/libavcodec/acelp_pitch_delay.c +++ b/libavcodec/acelp_pitch_delay.c @@ -23,8 +23,6 @@ #include "libavutil/common.h" #include "libavutil/ffmath.h" #include "libavutil/float_dsp.h" -#include "libavutil/mathematics.h" -#include "avcodec.h" #include "acelp_pitch_delay.h" #include "celp_math.h" #include "audiodsp.h" diff --git a/libavcodec/acelp_vectors.c b/libavcodec/acelp_vectors.c index b8a2b50dde..04cbffd79f 100644 --- a/libavcodec/acelp_vectors.c +++ b/libavcodec/acelp_vectors.c @@ -20,12 +20,12 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include <inttypes.h> +#include <stdint.h> +#include "config.h" #include "libavutil/avassert.h" #include "libavutil/common.h" #include "libavutil/float_dsp.h" -#include "avcodec.h" #include "acelp_vectors.h" const uint8_t ff_fc_2pulses_9bits_track1_gray[16] = |