mirror of
https://github.com/librempeg/librempeg
synced 2024-11-23 11:39:47 +00:00
af_earwax: remove unused pointer value
Fixes CID703849 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
d3dfe99bc5
commit
03764f6735
@ -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));
|
||||
|
Loading…
Reference in New Issue
Block a user