From be665c7da6ab657b6b56c61aed02644c2c9edd83 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Tue, 3 Aug 2010 09:02:16 +0000 Subject: [PATCH] Make avfilter_copy_picref_props() copy w and h from src to dst. Originally committed as revision 24678 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavfilter/avfilter.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index eceb76f..ebb5ad7 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -127,6 +127,8 @@ static inline void avfilter_copy_picref_props(AVFilterPicRef *dst, AVFilterPicRe dst->pixel_aspect = src->pixel_aspect; dst->interlaced = src->interlaced; dst->top_field_first = src->top_field_first; + dst->w = src->w; + dst->h = src->h; } /** -- 2.7.4