[FFmpeg-cvslog] r24678 - trunk/libavfilter/avfilter.h
stefano
subversion
Tue Aug 3 11:02:16 CEST 2010
Author: stefano
Date: Tue Aug 3 11:02:16 2010
New Revision: 24678
Log:
Make avfilter_copy_picref_props() copy w and h from src to dst.
Modified:
trunk/libavfilter/avfilter.h
Modified: trunk/libavfilter/avfilter.h
==============================================================================
--- trunk/libavfilter/avfilter.h Tue Aug 3 10:06:08 2010 (r24677)
+++ trunk/libavfilter/avfilter.h Tue Aug 3 11:02:16 2010 (r24678)
@@ -127,6 +127,8 @@ static inline void avfilter_copy_picref_
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;
}
/**
More information about the ffmpeg-cvslog
mailing list