mirror of https://git.ffmpeg.org/ffmpeg.git
lavfi/biquads: remove pointless casts
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
b70ea49ca3
commit
402ea625ab
|
@ -382,11 +382,11 @@ static int filter_frame(AVFilterLink *inlink, AVFilterBufferRef *buf)
|
|||
}
|
||||
|
||||
for (ch = 0; ch < buf->audio->channels; ch++)
|
||||
p->filter((const float *)buf->extended_data[ch],
|
||||
(float *)out_buf->extended_data[ch], nb_samples,
|
||||
&p->cache[ch].i1, &p->cache[ch].i2,
|
||||
&p->cache[ch].o1, &p->cache[ch].o2,
|
||||
p->b0, p->b1, p->b2, p->a1, p->a2);
|
||||
p->filter(buf->extended_data[ch],
|
||||
out_buf->extended_data[ch], nb_samples,
|
||||
&p->cache[ch].i1, &p->cache[ch].i2,
|
||||
&p->cache[ch].o1, &p->cache[ch].o2,
|
||||
p->b0, p->b1, p->b2, p->a1, p->a2);
|
||||
|
||||
if (buf != out_buf)
|
||||
avfilter_unref_buffer(buf);
|
||||
|
|
Loading…
Reference in New Issue