Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMirjana Vulin <mvulin@mips.com>2013-02-21 17:46:53 +0400
committerMichael Niedermayer <michaelni@gmx.at>2013-02-22 01:43:26 +0400
commit46d52a0b098f0c9291dcd2b0c41e8e5d050ab558 (patch)
tree3125f2883a7ef6bc70a8e91790ecee9c39986bb3 /libavcodec/aacpsdsp.c
parent8d2eb5fe58ae30ddef6b052ffdfa3280cbcc5568 (diff)
mips: optimization for float aac decoder (ps module)
Signed-off-by: Mirjana Vulin <mvulin@mips.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/aacpsdsp.c')
-rw-r--r--libavcodec/aacpsdsp.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/aacpsdsp.c b/libavcodec/aacpsdsp.c
index e90c50b6a1..9526d3a4cb 100644
--- a/libavcodec/aacpsdsp.c
+++ b/libavcodec/aacpsdsp.c
@@ -211,4 +211,6 @@ av_cold void ff_psdsp_init(PSDSPContext *s)
if (ARCH_ARM)
ff_psdsp_init_arm(s);
+ if (ARCH_MIPS)
+ ff_psdsp_init_mips(s);
}