Commit 2c3f211b authored by Paul B Mahol's avatar Paul B Mahol

avfilter/af_virtualbass: call av_frame_copy_props()

parent 07485a69
......@@ -146,10 +146,10 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
av_frame_free(&in);
return AVERROR(ENOMEM);
}
av_frame_copy_props(out, in);
vb_stereo(ctx, out, in);
out->pts = in->pts;
av_frame_free(&in);
return ff_filter_frame(outlink, out);
}
......
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