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
This commit is contained in:
Stefano Sabatini 2010-08-03 09:02:16 +00:00
parent cd2769c142
commit be665c7da6
1 changed files with 2 additions and 0 deletions

View File

@ -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;
}
/**