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:
parent
44304ae322
commit
e74378aa8c
@ -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…
Reference in New Issue
Block a user