1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-13 21:28:01 +02:00

g729dec: fix scalarproduct_int16 after API change

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2012-03-13 21:20:07 +01:00
parent e05253bf49
commit 9ff43569d2

View File

@ -333,12 +333,12 @@ static int16_t g729d_voice_decision(int onset, int prev_voice_decision, const in
return voice_decision; return voice_decision;
} }
static int32_t scalarproduct_int16_c(const int16_t * v1, const int16_t * v2, int order, int shift) static int32_t scalarproduct_int16_c(const int16_t * v1, const int16_t * v2, int order)
{ {
int res = 0; int res = 0;
while (order--) while (order--)
res += (*v1++ * *v2++) >> shift; res += *v1++ * *v2++;
return res; return res;
} }