diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-08-03 09:02:16 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-08-03 09:02:16 +0000 |
commit | be665c7da6ab657b6b56c61aed02644c2c9edd83 (patch) | |
tree | 98243121b9d753ef00928f9a54b57905b39bc7e4 | |
parent | cd2769c142a43733054ef15a8d17e82967e8be5e (diff) | |
download | ffmpeg-be665c7da6ab657b6b56c61aed02644c2c9edd83.tar.gz |
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
-rw-r--r-- | libavfilter/avfilter.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index eceb76f2a7..ebb5ad73bc 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; } /** |