Commit 697e0fc0 authored by Paul B Mahol's avatar Paul B Mahol

avfilter/af_afftfilt: call av_frame_copy_props()

parent 5625f054
......@@ -345,7 +345,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
goto fail;
}
out->pts = in->pts;
av_frame_copy_props(out, in);
out->nb_samples = in->nb_samples;
for (ch = 0; ch < inlink->ch_layout.nb_channels; ch++) {
......
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