diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-11-03 02:09:43 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-11-03 02:38:23 +0100 |
commit | 03764f6735411148d6768e8a7cf064f26cf6c65b (patch) | |
tree | c627c9d4dcd52361a4a9c596fda7cbe88abf319d /libavfilter/af_earwax.c | |
parent | d3dfe99bc5292646cb5d7c55bf3dd9101019d50a (diff) | |
download | ffmpeg-03764f6735411148d6768e8a7cf064f26cf6c65b.tar.gz |
af_earwax: remove unused pointer value
Fixes CID703849
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/af_earwax.c')
-rw-r--r-- | libavfilter/af_earwax.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/af_earwax.c b/libavfilter/af_earwax.c index 7265c437d3..95602a1acc 100644 --- a/libavfilter/af_earwax.c +++ b/libavfilter/af_earwax.c @@ -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)); |