Commit be665c7d authored by Stefano Sabatini's avatar Stefano Sabatini

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
parent cd2769c1
...@@ -127,6 +127,8 @@ static inline void avfilter_copy_picref_props(AVFilterPicRef *dst, AVFilterPicRe ...@@ -127,6 +127,8 @@ static inline void avfilter_copy_picref_props(AVFilterPicRef *dst, AVFilterPicRe
dst->pixel_aspect = src->pixel_aspect; dst->pixel_aspect = src->pixel_aspect;
dst->interlaced = src->interlaced; dst->interlaced = src->interlaced;
dst->top_field_first = src->top_field_first; dst->top_field_first = src->top_field_first;
dst->w = src->w;
dst->h = src->h;
} }
/** /**
......
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