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

Merge commit '87efaa97'


* commit '87efaa97':
  af_join: Set the output frame format

See: e0dd8cad
Merged-by: default avatarMichael Niedermayer <michaelni@gmx.at>
parents 98e42a24 87efaa97
No related branches found
No related tags found
No related merge requests found
...@@ -470,8 +470,8 @@ static int join_request_frame(AVFilterLink *outlink) ...@@ -470,8 +470,8 @@ static int join_request_frame(AVFilterLink *outlink)
frame->nb_samples = nb_samples; frame->nb_samples = nb_samples;
frame->channel_layout = outlink->channel_layout; frame->channel_layout = outlink->channel_layout;
av_frame_set_channels(frame, outlink->channels); av_frame_set_channels(frame, outlink->channels);
frame->format = outlink->format;
frame->sample_rate = outlink->sample_rate; frame->sample_rate = outlink->sample_rate;
frame->format = outlink->format;
frame->pts = s->input_frames[0]->pts; frame->pts = s->input_frames[0]->pts;
frame->linesize[0] = linesize; frame->linesize[0] = linesize;
if (frame->data != frame->extended_data) { if (frame->data != frame->extended_data) {
......
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