mirror of https://git.ffmpeg.org/ffmpeg.git
avfilter/af_dialoguenhance: call av_frame_copy_props()
This commit is contained in:
parent
8885d5dc7a
commit
2cee62295f
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue