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

avfilter/af_dialoguenhance: call av_frame_copy_props()

parent 8885d5dc
......@@ -320,7 +320,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
s->in = in;
de_stereo(ctx, out);
out->pts = in->pts;
av_frame_copy_props(out, in);
out->nb_samples = in->nb_samples;
ret = ff_filter_frame(outlink, out);
fail:
......
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