X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fframework%2Fmlt_properties.c;h=970fbd4a02bab11f28ee6e42441779641f7f7b9a;hb=6159bd78fa8e72c784747776a2c4c63d9c461ff5;hp=27f4a27b6e41c3b43b0b25c3f43dd7db88a4eb32;hpb=36aad7b318537612374acfd3f626a8c1364ad95d;p=melted diff --git a/src/framework/mlt_properties.c b/src/framework/mlt_properties.c index 27f4a27..970fbd4 100644 --- a/src/framework/mlt_properties.c +++ b/src/framework/mlt_properties.c @@ -79,12 +79,15 @@ mlt_properties mlt_properties_new( ) static void mlt_properties_do_mirror( mlt_properties this, char *name ) { - mlt_properties mirror = mlt_properties_get_data( this, "mlt_mirror", NULL ); - if ( mirror != NULL ) + if ( strcmp( name, "in" ) && strcmp( name, "out" ) ) { - char *value = mlt_properties_get( this, name ); - if ( value != NULL ) - mlt_properties_set( mirror, name, value ); + mlt_properties mirror = mlt_properties_get_data( this, "mlt_mirror", NULL ); + if ( mirror != NULL ) + { + char *value = mlt_properties_get( this, name ); + if ( value != NULL ) + mlt_properties_set( mirror, name, value ); + } } }