summaryrefslogtreecommitdiff
path: root/libavcodec/mips/celp_math_mips.c
diff options
context:
space:
mode:
authorNedeljko Babic <nbabic@mips.com>2012-11-09 12:45:40 +0100
committerMichael Niedermayer <michaelni@gmx.at>2012-11-10 19:55:54 +0100
commit304a1ed1e86429eb4e20a48d887546b1072ed4da (patch)
tree26396f285e31a7cd508ec3404c4651e501518ee6 /libavcodec/mips/celp_math_mips.c
parent2d71f31df23910f18b17f17fa568b13fd5dcaf1a (diff)
mips: Add dependencies on HAVE_INLINE_ASM
Add dependencies on HAVE_INLINE_ASM for files and parts of code where it is necessary. Signed-off-by: Nedeljko Babic <nbabic@mips.com> Reviewed-by: Vitor Sessak <vitor1001@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/mips/celp_math_mips.c')
-rw-r--r--libavcodec/mips/celp_math_mips.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/mips/celp_math_mips.c b/libavcodec/mips/celp_math_mips.c
index 6ab1823d77..f0335c9e9e 100644
--- a/libavcodec/mips/celp_math_mips.c
+++ b/libavcodec/mips/celp_math_mips.c
@@ -51,8 +51,10 @@
* @file
* Reference: libavcodec/celp_math.c
*/
+#include "config.h"
#include "libavcodec/celp_math.h"
+#if HAVE_INLINE_ASM
static float ff_dot_productf_mips(const float* a, const float* b,
int length)
{
@@ -77,8 +79,11 @@ static float ff_dot_productf_mips(const float* a, const float* b,
);
return sum;
}
+#endif /* HAVE_INLINE_ASM */
void ff_celp_math_init_mips(CELPMContext *c)
{
+#if HAVE_INLINE_ASM
c->dot_productf = ff_dot_productf_mips;
+#endif
}