Browse Source

lavfi/earwax: clip sample, this is what sox does

Fixes #1884.

Signed-off-by: Paul B Mahol <onemda@gmail.com>
tags/n2.0
Paul B Mahol 12 years ago
parent
commit
0ab10f69ef
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavfilter/af_earwax.c

+ 2
- 2
libavfilter/af_earwax.c View File

@@ -98,10 +98,10 @@ static inline int16_t *scalarproduct(const int16_t *in, const int16_t *endin, in
int16_t j; int16_t j;


while (in < endin) { while (in < endin) {
sample = 32;
sample = 0;
for (j = 0; j < NUMTAPS; j++) for (j = 0; j < NUMTAPS; j++)
sample += in[j] * filt[j]; sample += in[j] * filt[j];
*out = sample >> 6;
*out = av_clip_int16(sample >> 6);
out++; out++;
in++; in++;
} }


Loading…
Cancel
Save