Browse Source

af_earwax: remove unused pointer value

Fixes CID703849
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.1
Michael Niedermayer 12 years ago
parent
commit
03764f6735
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/af_earwax.c

+ 1
- 1
libavfilter/af_earwax.c View File

@@ -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…
Cancel
Save