Commit acaee260 authored by Michael Niedermayer's avatar Michael Niedermayer

af_channelsplit: set output channels, fix assertion failure

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 7a14564b
......@@ -121,6 +121,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *buf)
buf_out->data[0] = buf_out->extended_data[0] = buf_out->extended_data[i];
buf_out->channel_layout =
av_channel_layout_extract_channel(buf->channel_layout, i);
av_frame_set_channels(buf_out, 1);
ret = ff_filter_frame(ctx->outputs[i], buf_out);
if (ret < 0)
......
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