diff options
author | Bojan Zivkovic <bojan@mips.com> | 2012-11-06 14:06:21 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-11-19 22:24:44 +0100 |
commit | a74ae4691a45c49cfc071ba7280fdcac30feb933 (patch) | |
tree | 4203e3120a11f92a62727ce5f178c5480d7f2504 /libavutil/float_dsp.c | |
parent | c02ae4827191d6da702c7baceccfa63929721a0b (diff) | |
download | ffmpeg-a74ae4691a45c49cfc071ba7280fdcac30feb933.tar.gz |
mips: Optimization of AC3 FP encoder and EAC3 FP decoder
Signed-off-by: Bojan Zivkovic <bojan@mips.com>
Reveiwed-by: Vitor Sessak <vitor1001@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil/float_dsp.c')
-rw-r--r-- | libavutil/float_dsp.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavutil/float_dsp.c b/libavutil/float_dsp.c index f5a8360c86..48f67c6253 100644 --- a/libavutil/float_dsp.c +++ b/libavutil/float_dsp.c @@ -50,5 +50,7 @@ void avpriv_float_dsp_init(AVFloatDSPContext *fdsp, int bit_exact) ff_float_dsp_init_ppc(fdsp, bit_exact); #elif ARCH_X86 ff_float_dsp_init_x86(fdsp); +#elif ARCH_MIPS + ff_float_dsp_init_mips(fdsp); #endif } |