[FFmpeg-cvslog] af_earwax: remove unused pointer value

Michael Niedermayer git at videolan.org
Sat Nov 3 02:46:02 CET 2012


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sat Nov  3 02:09:43 2012 +0100| [03764f6735411148d6768e8a7cf064f26cf6c65b] | committer: Michael Niedermayer

af_earwax: remove unused pointer value

Fixes CID703849
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=03764f6735411148d6768e8a7cf064f26cf6c65b
---

 libavfilter/af_earwax.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavfilter/af_earwax.c b/libavfilter/af_earwax.c
index 7265c43..95602a1 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));



More information about the ffmpeg-cvslog mailing list