diff options
author | Timothy Gu <timothygu99@gmail.com> | 2016-01-28 18:32:47 -0800 |
---|---|---|
committer | Timothy Gu <timothygu99@gmail.com> | 2016-01-28 19:49:51 -0800 |
commit | e74378aa8c5371d021a71b6810a8949ec5d65856 (patch) | |
tree | 29e970b6414364eb9edd30cb8f52931e47657580 /libavcodec/mips/amrwbdec_mips.c | |
parent | 44304ae3220f553d0b1458644e2a617ea1ad8d22 (diff) | |
download | ffmpeg-e74378aa8c5371d021a71b6810a8949ec5d65856.tar.gz |
amrwbdec_mips: Add missing ff_ prefix
Diffstat (limited to 'libavcodec/mips/amrwbdec_mips.c')
-rw-r--r-- | libavcodec/mips/amrwbdec_mips.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mips/amrwbdec_mips.c b/libavcodec/mips/amrwbdec_mips.c index 1d6ed2dfca..e933b8a6c5 100644 --- a/libavcodec/mips/amrwbdec_mips.c +++ b/libavcodec/mips/amrwbdec_mips.c @@ -54,7 +54,7 @@ #include "amrwbdec_mips.h" #if HAVE_INLINE_ASM -void hb_fir_filter_mips(float *out, const float fir_coef[HB_FIR_SIZE + 1], +void ff_hb_fir_filter_mips(float *out, const float fir_coef[HB_FIR_SIZE + 1], float mem[HB_FIR_SIZE], const float *in) { int i; |