Commit 0ab10f69 authored by Paul B Mahol's avatar Paul B Mahol

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

Fixes #1884.
Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 6e90d9e2
......@@ -98,10 +98,10 @@ static inline int16_t *scalarproduct(const int16_t *in, const int16_t *endin, in
int16_t j;
while (in < endin) {
sample = 32;
sample = 0;
for (j = 0; j < NUMTAPS; j++)
sample += in[j] * filt[j];
*out = sample >> 6;
*out = av_clip_int16(sample >> 6);
out++;
in++;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment