diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-03-15 16:13:53 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-03-15 16:13:53 +0100 |
commit | cd5f50a255321a6917f7a465cd1159fe4fc4948e (patch) | |
tree | 2c9058c6caaac9774139ea0a8c2ffea49eb86c44 /libavfilter/af_biquads.c | |
parent | 64308941d4043388a16c2d2fd51c792cfdcc2734 (diff) | |
download | ffmpeg-cd5f50a255321a6917f7a465cd1159fe4fc4948e.tar.gz |
avfilter: avoid direct access to AVFrame.channels
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/af_biquads.c')
-rw-r--r-- | libavfilter/af_biquads.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/af_biquads.c b/libavfilter/af_biquads.c index 6384090d4c..0bd61fda32 100644 --- a/libavfilter/af_biquads.c +++ b/libavfilter/af_biquads.c @@ -409,7 +409,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *buf) out_buf->pts = buf->pts; } - for (ch = 0; ch < buf->channels; ch++) + for (ch = 0; ch < av_frame_get_channels(buf); ch++) p->filter(buf->extended_data[ch], out_buf->extended_data[ch], nb_samples, &p->cache[ch].i1, &p->cache[ch].i2, |