diff options
author | Lynne <dev@lynne.ee> | 2024-03-21 08:23:55 +0100 |
---|---|---|
committer | Lynne <dev@lynne.ee> | 2024-04-23 08:31:40 +0200 |
commit | 03cf10164578aed33f4d0cb5b69d63669c01a538 (patch) | |
tree | 2283b4b7610118294f6d41431e7fa733b3bcd687 /libavcodec/sbrdsp_template.c | |
parent | ae7c6cc17d57e4ff73f88dc4a4284c1676a7e19a (diff) | |
download | ffmpeg-03cf10164578aed33f4d0cb5b69d63669c01a538.tar.gz |
aacdec: remove AAC-specific MIPS optimizations
The code was written in 2012, but seems to have been broken
for just as long. Compilation is broken on every MIPS/MIPS64
system with an FPU (which the code depends on).
Diffstat (limited to 'libavcodec/sbrdsp_template.c')
-rw-r--r-- | libavcodec/sbrdsp_template.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/sbrdsp_template.c b/libavcodec/sbrdsp_template.c index c1e583ea56..80d535cbfa 100644 --- a/libavcodec/sbrdsp_template.c +++ b/libavcodec/sbrdsp_template.c @@ -104,8 +104,6 @@ av_cold void AAC_RENAME(ff_sbrdsp_init)(SBRDSPContext *s) ff_sbrdsp_init_riscv(s); #elif ARCH_X86 ff_sbrdsp_init_x86(s); -#elif ARCH_MIPS - ff_sbrdsp_init_mips(s); #endif #endif /* !USE_FIXED */ } |