Commit 66f1de66 authored by Paul B Mahol's avatar Paul B Mahol

lavfi/transpose: call av_frame_copy_props()

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent e74a5acb
......@@ -228,8 +228,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
av_frame_free(&in);
return AVERROR(ENOMEM);
}
out->pts = in->pts;
av_frame_copy_props(out, in);
if (in->sample_aspect_ratio.num == 0) {
out->sample_aspect_ratio = in->sample_aspect_ratio;
......
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