diff options
author | Lynne <dev@lynne.ee> | 2024-05-11 07:27:17 +0200 |
---|---|---|
committer | Lynne <dev@lynne.ee> | 2024-05-13 13:02:02 +0200 |
commit | baf8651d563bd42b27738e5215c0d822638c0a9b (patch) | |
tree | 0097735b5ba4cfe2768dbd6e8e5c4a5db52b9988 /libavcodec | |
parent | 37db0454e4c046d9f85636cf98175cced7a2af98 (diff) | |
download | ffmpeg-baf8651d563bd42b27738e5215c0d822638c0a9b.tar.gz |
aacdec: restore arm32 dequantization optimizations
Unintentionally removed as part of 03cf10164578aed33f4d0cb5b69d63669c01a538.
Untested, but its assumed that unlike most of the old ARM code,
this one was still working.
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/aac/aacdec_float.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/aac/aacdec_float.c b/libavcodec/aac/aacdec_float.c index 885d824fa7..03ec264c50 100644 --- a/libavcodec/aac/aacdec_float.c +++ b/libavcodec/aac/aacdec_float.c @@ -79,6 +79,11 @@ static const float cce_scale[] = { #include "aacdec_tab.h" #include "libavutil/intfloat.h" +#include "config.h" +#if ARCH_ARM +#include "libavcodec/arm/aac.h" +#endif + #ifndef VMUL2 static inline float *VMUL2(float *dst, const float *v, unsigned idx, const float *scale) |