From 22b237f78474fdca383d29df1e58ae7021e9df58 Mon Sep 17 00:00:00 2001 From: lilo_booter Date: Mon, 27 Dec 2004 13:46:52 +0000 Subject: [PATCH] Feeds pseudo module added git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt@577 d19143bc-622f-0410-bfdd-b5b2a6649095 --- src/modules/core/transition_composite.c | 2 +- src/modules/feeds/Makefile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/core/transition_composite.c b/src/modules/core/transition_composite.c index e35d365b..dda6c65f 100644 --- a/src/modules/core/transition_composite.c +++ b/src/modules/core/transition_composite.c @@ -665,7 +665,7 @@ static int get_b_frame_image( mlt_transition this, mlt_frame b_frame, uint8_t ** mlt_properties b_props = MLT_FRAME_PROPERTIES( b_frame ); mlt_properties properties = MLT_TRANSITION_PROPERTIES( this ); - if ( mlt_properties_get( properties, "distort" ) == NULL && mlt_properties_get( b_props, "distort" ) == NULL && geometry->item.distort == 0 ) + if ( mlt_properties_get_int( properties, "distort" ) == 0 && mlt_properties_get_int( b_props, "distort" ) == 0 && geometry->item.distort == 0 ) { // Adjust b_frame pixel aspect int normalised_width = geometry->item.w; diff --git a/src/modules/feeds/Makefile b/src/modules/feeds/Makefile index 19e9fcfc..92d6a119 100644 --- a/src/modules/feeds/Makefile +++ b/src/modules/feeds/Makefile @@ -11,5 +11,5 @@ clean: install: all install -d $(prefix)/share/mlt/modules/feeds/PAL install -d $(prefix)/share/mlt/modules/feeds/NTSC - install -m 644 PAL/* $(prefix)/share/mlt/modules/feeds/PAL - install -m 644 NTSC/* $(prefix)/share/mlt/modules/feeds/NTSC + install -m 644 PAL/*.* $(prefix)/share/mlt/modules/feeds/PAL + install -m 644 NTSC/*.* $(prefix)/share/mlt/modules/feeds/NTSC -- 2.39.2