summaryrefslogtreecommitdiff
path: root/libavfilter/avfilter.h
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2010-08-03 09:02:16 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-08-03 09:02:16 +0000
commitbe665c7da6ab657b6b56c61aed02644c2c9edd83 (patch)
tree98243121b9d753ef00928f9a54b57905b39bc7e4 /libavfilter/avfilter.h
parentcd2769c142a43733054ef15a8d17e82967e8be5e (diff)
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
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r--libavfilter/avfilter.h2
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;
}
/**