summaryrefslogtreecommitdiff
path: root/libavfilter/avf_showfreqs.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavfilter/avf_showfreqs.c')
-rw-r--r--libavfilter/avf_showfreqs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/avf_showfreqs.c b/libavfilter/avf_showfreqs.c
index 6f9b55943a..e50b6840dd 100644
--- a/libavfilter/avf_showfreqs.c
+++ b/libavfilter/avf_showfreqs.c
@@ -165,7 +165,7 @@ static int config_output(AVFilterLink *outlink)
av_freep(&s->fft_input);
av_freep(&s->fft_data);
av_freep(&s->avg_data);
- s->nb_channels = inlink->channels;
+ s->nb_channels = inlink->ch_layout.nb_channels;
s->fft_input = av_calloc(s->nb_channels, sizeof(*s->fft_input));
if (!s->fft_input)
@@ -439,7 +439,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
const int offset = s->win_size - s->hop_size;
int64_t pts = in->pts;
- for (int ch = 0; ch < in->channels; ch++) {
+ for (int ch = 0; ch < in->ch_layout.nb_channels; ch++) {
float *dst = (float *)s->window->extended_data[ch];
memmove(dst, &dst[s->hop_size], offset * sizeof(float));