[SCM] libav/experimental: Make avfilter_copy_picref_props() copy w and h from src to dst.

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 17:13:28 UTC 2013


The following commit has been merged in the experimental branch:
commit be665c7da6ab657b6b56c61aed02644c2c9edd83
Author: Stefano Sabatini <stefano.sabatini-lala at poste.it>
Date:   Tue Aug 3 09:02:16 2010 +0000

    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

diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h
index eceb76f..ebb5ad7 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;
 }
 
 /**

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list