diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-02-29 18:40:11 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-03-04 02:11:19 +0100 |
commit | 08aa791d203869b8f490a9482aba753fc25184e6 (patch) | |
tree | 92273ca7afff16424935439705bafac4b10e7f8e /libavcodec/aacdec_fixed.c | |
parent | 0aaee4741ce0c10ca09f5d17194b58d0cf0ebece (diff) | |
download | ffmpeg-08aa791d203869b8f490a9482aba753fc25184e6.tar.gz |
avcodec/lpc: Don't use AAC defines directly
It leads to defines for the AAC decoder being included
outside of the AAC decoder.
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 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aacdec_fixed.c b/libavcodec/aacdec_fixed.c index 57d3fc8bab..08343bf157 100644 --- a/libavcodec/aacdec_fixed.c +++ b/libavcodec/aacdec_fixed.c @@ -66,7 +66,6 @@ #include "avcodec.h" #include "codec_internal.h" #include "get_bits.h" -#include "lpc.h" #include "kbdwin.h" #include "sinewin_fixed_tablegen.h" @@ -76,6 +75,7 @@ #include "aacdectab.h" #include "adts_header.h" #include "cbrt_data.h" +#include "lpc.h" #include "sbr.h" #include "aacsbr.h" #include "mpeg4audio.h" |