Commit 03764f67 authored by Michael Niedermayer's avatar Michael Niedermayer

af_earwax: remove unused pointer value

Fixes CID703849
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent d3dfe99b
......@@ -141,7 +141,7 @@ static int filter_samples(AVFilterLink *inlink, AVFilterBufferRef *insamples)
// process current input
endin = in + insamples->audio->nb_samples * 2 - NUMTAPS;
out = scalarproduct(in, endin, out);
scalarproduct(in, endin, out);
// save part of input for next round
memcpy(taps, endin, NUMTAPS * sizeof(*taps));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment