diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-08-26 11:29:39 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-08-27 20:37:49 +0200 |
commit | dafcbfe44361b0d3caa22b15bc95e38ba80af7e6 (patch) | |
tree | be178be68a80c2ee0a2251b52f4238b476994156 /libavcodec/celp_math.h | |
parent | 55498543354335697bf1c5616a2ba94c64fbdcf1 (diff) | |
download | ffmpeg-dafcbfe44361b0d3caa22b15bc95e38ba80af7e6.tar.gz |
celp_math: Replace duplicate ff_dot_productf() by ff_scalarproduct_c()
Diffstat (limited to 'libavcodec/celp_math.h')
-rw-r--r-- | libavcodec/celp_math.h | 10 |
1 files changed, 0 insertions, 10 deletions
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 */ |