amrwbdec_mips: Add missing ff_ prefix

pull/173/head
Timothy Gu 9 years ago
parent 44304ae322
commit e74378aa8c
  1. 2
      libavcodec/mips/amrwbdec_mips.c
  2. 4
      libavcodec/mips/amrwbdec_mips.h

@ -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 @@
#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 */

Loading…
Cancel
Save