From dafcbfe44361b0d3caa22b15bc95e38ba80af7e6 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Sun, 26 Aug 2012 11:29:39 +0200 Subject: celp_math: Replace duplicate ff_dot_productf() by ff_scalarproduct_c() --- libavcodec/celp_math.h | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'libavcodec/celp_math.h') diff --git a/libavcodec/celp_math.h b/libavcodec/celp_math.h index 92cc2abf7e..2fad31258e 100644 --- a/libavcodec/celp_math.h +++ b/libavcodec/celp_math.h @@ -55,14 +55,4 @@ static inline int bidir_sal(int value, int offset) else return value << offset; } -/** - * Return the dot product. - * @param a input data array - * @param b input data array - * @param length number of elements - * - * @return dot product = sum of elementwise products - */ -float ff_dot_productf(const float* a, const float* b, int length); - #endif /* AVCODEC_CELP_MATH_H */ -- cgit v1.2.3