Commit e74378aa authored by Timothy Gu's avatar Timothy Gu

amrwbdec_mips: Add missing ff_ prefix

parent 44304ae3
...@@ -54,7 +54,7 @@ ...@@ -54,7 +54,7 @@
#include "amrwbdec_mips.h" #include "amrwbdec_mips.h"
#if HAVE_INLINE_ASM #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) float mem[HB_FIR_SIZE], const float *in)
{ {
int i; int i;
......
...@@ -54,9 +54,9 @@ ...@@ -54,9 +54,9 @@
#include "config.h" #include "config.h"
#if HAVE_MIPSFPU && HAVE_INLINE_ASM #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); float mem[], const float *in);
#define hb_fir_filter hb_fir_filter_mips #define hb_fir_filter ff_hb_fir_filter_mips
#endif #endif
#endif /* AVCODEC_AMRWBDEC_MIPS_H */ #endif /* AVCODEC_AMRWBDEC_MIPS_H */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment