diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-02-29 18:55:13 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-03-04 02:11:38 +0100 |
commit | aaf26cffbac108cc3a4916e3284590e68b816865 (patch) | |
tree | 7b5cbf0140c69e81c9cb5f0bfe9564572d624ecb /libavcodec/aacdec.c | |
parent | 08aa791d203869b8f490a9482aba753fc25184e6 (diff) | |
download | ffmpeg-aaf26cffbac108cc3a4916e3284590e68b816865.tar.gz |
avcodec/lpc: Split inline functions into a header of their own
And move compute_ref_coefs() to its only user: lpc.c
There is no overlap between the users of compute_lpc_coefs()
and lpc proper.
Reviewed-by: Lynne <dev@lynne.ee>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/aacdec.c')
-rw-r--r-- | libavcodec/aacdec.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/aacdec.c b/libavcodec/aacdec.c index b1bce7542b..fa2187b61a 100644 --- a/libavcodec/aacdec.c +++ b/libavcodec/aacdec.c @@ -40,7 +40,6 @@ #include "avcodec.h" #include "codec_internal.h" #include "get_bits.h" -#include "lpc.h" #include "kbdwin.h" #include "sinewin.h" |