From 265d45183be13a43dc08d962a5a60b15e6eff6c0 Mon Sep 17 00:00:00 2001 From: Marton Balint Date: Mon, 12 Dec 2016 22:42:27 +0100 Subject: avfilter/avfilter: fix filtering frames with unknown channel layouts for filters needing writable frames Reviewed-by: Paul B Mahol Signed-off-by: Marton Balint --- libavfilter/avfilter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index 662f933041..6f30e3bcfe 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -1096,7 +1096,7 @@ static int ff_filter_frame_framed(AVFilterLink *link, AVFrame *frame) case AVMEDIA_TYPE_AUDIO: av_samples_copy(out->extended_data, frame->extended_data, 0, 0, frame->nb_samples, - av_get_channel_layout_nb_channels(frame->channel_layout), + av_frame_get_channels(frame), frame->format); break; default: -- cgit v1.2.3