summaryrefslogtreecommitdiff
path: root/libavfilter/af_join.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-08-02 04:37:56 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-08-02 04:45:26 +0200
commitdcd984e24d0a1fb5616a5f4629a1328436d2ba7d (patch)
treef96bf0e71bd4b897b2b564d7ddb93b81b207d1f0 /libavfilter/af_join.c
parent98e42a249e7891d295228ff19892450ba1f09092 (diff)
parent87efaa97ceb0ad5820870855d6df3e569e6eac7e (diff)
Merge commit '87efaa97ceb0ad5820870855d6df3e569e6eac7e'
* commit '87efaa97ceb0ad5820870855d6df3e569e6eac7e': af_join: Set the output frame format See: e0dd8cadcc386a168e7acd079463880154086446 Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/af_join.c')
-rw-r--r--libavfilter/af_join.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/af_join.c b/libavfilter/af_join.c
index 3e9ccc8d74..560c5c82dc 100644
--- a/libavfilter/af_join.c
+++ b/libavfilter/af_join.c
@@ -470,8 +470,8 @@ static int join_request_frame(AVFilterLink *outlink)
frame->nb_samples = nb_samples;
frame->channel_layout = outlink->channel_layout;
av_frame_set_channels(frame, outlink->channels);
- frame->format = outlink->format;
frame->sample_rate = outlink->sample_rate;
+ frame->format = outlink->format;
frame->pts = s->input_frames[0]->pts;
frame->linesize[0] = linesize;
if (frame->data != frame->extended_data) {