[FFmpeg-cvslog] amrwbdec_mips: Add missing ff_ prefix
Timothy Gu
git at videolan.org
Fri Jan 29 04:49:59 CET 2016
ffmpeg | branch: master | Timothy Gu <timothygu99 at gmail.com> | Thu Jan 28 18:32:47 2016 -0800| [e74378aa8c5371d021a71b6810a8949ec5d65856] | committer: Timothy Gu
amrwbdec_mips: Add missing ff_ prefix
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e74378aa8c5371d021a71b6810a8949ec5d65856
---
libavcodec/mips/amrwbdec_mips.c | 2 +-
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 1d6ed2d..e933b8a 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 a469918..b3355fb 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 */
More information about the ffmpeg-cvslog
mailing list