Skip to content
Snippets Groups Projects
Commit e85bc9df authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

Merge commit 'f0e95948'


* commit 'f0e95948':
  af_channelmap: Set the frame channel layout

Merged-by: default avatarMichael Niedermayer <michaelni@gmx.at>
parents dcd984e2 f0e95948
No related branches found
No related tags found
No related merge requests found
...@@ -338,6 +338,8 @@ static int channelmap_filter_frame(AVFilterLink *inlink, AVFrame *buf) ...@@ -338,6 +338,8 @@ static int channelmap_filter_frame(AVFilterLink *inlink, AVFrame *buf)
memcpy(buf->data, buf->extended_data, memcpy(buf->data, buf->extended_data,
FFMIN(FF_ARRAY_ELEMS(buf->data), nch_out) * sizeof(buf->data[0])); FFMIN(FF_ARRAY_ELEMS(buf->data), nch_out) * sizeof(buf->data[0]));
buf->channel_layout = outlink->channel_layout;
return ff_filter_frame(outlink, buf); return ff_filter_frame(outlink, buf);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment