rev 18386 - in krap/mlt/trunk/debian: . patches

Patrick Matthäi pmatthaei at alioth.debian.org
Mon Jun 21 11:55:53 UTC 2010


Author: pmatthaei
Date: 2010-06-21 11:55:52 +0000 (Mon, 21 Jun 2010)
New Revision: 18386

Added:
   krap/mlt/trunk/debian/patches/
   krap/mlt/trunk/debian/patches/01-in_out-points-region-transition.diff
   krap/mlt/trunk/debian/patches/series
Modified:
   krap/mlt/trunk/debian/changelog
Log:
* New upstream release.
  - Add patch 01-in_out-points-region-transition.diff, which fixes a new
    regression in this release with kdenlive.


Modified: krap/mlt/trunk/debian/changelog
===================================================================
--- krap/mlt/trunk/debian/changelog	2010-06-20 17:53:31 UTC (rev 18385)
+++ krap/mlt/trunk/debian/changelog	2010-06-21 11:55:52 UTC (rev 18386)
@@ -1,8 +1,11 @@
-mlt (0.5.4+git20100601-2) UNRELEASED; urgency=low
+mlt (0.5.6-1) UNRELEASED; urgency=low
 
+  * New upstream release.
+    - Add patch 01-in_out-points-region-transition.diff, which fixes a new
+      regression in this release with kdenlive.
   * Add the swig mlt.i file to the libmlt++-dev package.
 
- -- Patrick Matthäi <pmatthaei at debian.org>  Thu, 03 Jun 2010 11:46:07 +0200
+ -- Patrick Matthäi <pmatthaei at debian.org>  Mon, 21 Jun 2010 13:55:07 +0200
 
 mlt (0.5.4+git20100601-1) unstable; urgency=high
 

Added: krap/mlt/trunk/debian/patches/01-in_out-points-region-transition.diff
===================================================================
--- krap/mlt/trunk/debian/patches/01-in_out-points-region-transition.diff	                        (rev 0)
+++ krap/mlt/trunk/debian/patches/01-in_out-points-region-transition.diff	2010-06-21 11:55:52 UTC (rev 18386)
@@ -0,0 +1,24 @@
+# Fix in / out points of the region's composite transition.
+
+diff -Naur mlt-0.5.6.orig//src/modules/core/transition_region.c mlt-0.5.6/src/modules/core/transition_region.c
+--- mlt-0.5.6.orig//src/modules/core/transition_region.c	2010-06-20 21:07:20.000000000 +0200
++++ mlt-0.5.6/src/modules/core/transition_region.c	2010-06-21 13:52:07.000000000 +0200
+@@ -180,6 +180,9 @@
+ 			// We want to ensure that we don't get a wobble...
+ 			//mlt_properties_set_int( composite_properties, "distort", 1 );
+ 			mlt_properties_set_int( composite_properties, "progressive", 1 );
++			
++			mlt_properties_set_position( composite_properties, "in", mlt_transition_get_in( this ) );
++			mlt_properties_set_position( composite_properties, "out", mlt_transition_get_out( this ) );
+ 
+ 			// Pass all the composite. properties on the transition down
+ 			mlt_properties_pass( composite_properties, properties, "composite." );
+@@ -193,6 +196,8 @@
+ 		// Pass all current properties down
+ 		mlt_properties composite_properties = MLT_TRANSITION_PROPERTIES( composite );
+ 		mlt_properties_pass( composite_properties, properties, "composite." );
++		mlt_properties_set_position( composite_properties, "in", mlt_transition_get_in( this ) );
++		mlt_properties_set_position( composite_properties, "out", mlt_transition_get_out( this ) );
+ 	}
+ 
+ 	// Create filters

Added: krap/mlt/trunk/debian/patches/series
===================================================================
--- krap/mlt/trunk/debian/patches/series	                        (rev 0)
+++ krap/mlt/trunk/debian/patches/series	2010-06-21 11:55:52 UTC (rev 18386)
@@ -0,0 +1 @@
+01-in_out-points-region-transition.diff




More information about the pkg-kde-commits mailing list