1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-28 20:53:54 +02:00

amrwbdec_mips: Add missing ff_ prefix

This commit is contained in:
Timothy Gu 2016-01-28 18:32:47 -08:00
parent 44304ae322
commit e74378aa8c
2 changed files with 3 additions and 3 deletions

View File

@ -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;

View File

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