From 66f1de66b89d67675e28066bb2086f27c7535295 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Wed, 14 Aug 2013 21:34:27 +0000 Subject: lavfi/transpose: call av_frame_copy_props() Signed-off-by: Paul B Mahol --- libavfilter/vf_transpose.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'libavfilter/vf_transpose.c') diff --git a/libavfilter/vf_transpose.c b/libavfilter/vf_transpose.c index 82f68e5311..2170b8aa0f 100644 --- a/libavfilter/vf_transpose.c +++ b/libavfilter/vf_transpose.c @@ -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; -- cgit v1.2.3