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 | |
parent | 44304ae3220f553d0b1458644e2a617ea1ad8d22 (diff) | |
download | ffmpeg-e74378aa8c5371d021a71b6810a8949ec5d65856.tar.gz |
amrwbdec_mips: Add missing ff_ prefix
Diffstat (limited to 'libavcodec/mips')
-rw-r--r-- | libavcodec/mips/amrwbdec_mips.c | 2 | ||||
-rw-r--r-- | libavcodec/mips/amrwbdec_mips.h | 4 |
2 files changed, 3 insertions, 3 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; diff --git a/libavcodec/mips/amrwbdec_mips.h b/libavcodec/mips/amrwbdec_mips.h index a469918d2c..b3355fb45b 100644 --- a/libavcodec/mips/amrwbdec_mips.h +++ b/libavcodec/mips/amrwbdec_mips.h @@ -54,9 +54,9 @@ #include "config.h" #if HAVE_MIPSFPU && HAVE_INLINE_ASM -void hb_fir_filter_mips(float *out, const float fir_coef[], +void ff_hb_fir_filter_mips(float *out, const float fir_coef[], float mem[], const float *in); -#define hb_fir_filter hb_fir_filter_mips +#define hb_fir_filter ff_hb_fir_filter_mips #endif #endif /* AVCODEC_AMRWBDEC_MIPS_H */ |