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_fixed.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_fixed.c')
-rw-r--r-- | libavcodec/aacdec_fixed.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/aacdec_fixed.c b/libavcodec/aacdec_fixed.c index 08343bf157..2abe6acb6b 100644 --- a/libavcodec/aacdec_fixed.c +++ b/libavcodec/aacdec_fixed.c @@ -75,7 +75,6 @@ #include "aacdectab.h" #include "adts_header.h" #include "cbrt_data.h" -#include "lpc.h" #include "sbr.h" #include "aacsbr.h" #include "mpeg4audio.h" |