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/aac_defines.h | |
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/aac_defines.h')
-rw-r--r-- | libavcodec/aac_defines.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aac_defines.h b/libavcodec/aac_defines.h index 8765939731..a0c23c33ff 100644 --- a/libavcodec/aac_defines.h +++ b/libavcodec/aac_defines.h @@ -73,7 +73,7 @@ typedef int AAC_SIGNE; #define AAC_HALF_SUM(x, y) (((x) >> 1) + ((y) >> 1)) #ifdef LPC_USE_FIXED -#error aac_defines.h must be included before lpc.h for fixed point decoder +#error aac_defines.h must be included before lpc_functions.h for fixed point decoder #endif #define LPC_USE_FIXED 1 |