X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fframework%2Fmlt_service.c;h=b1f5c25dd1c4342d3e848c489cd2f9e2e5a1e221;hb=ebcbb3571620a43fe24b3f8fa0161096ef628dbe;hp=9a1cc376e3dbe36209fdc910ec589f06dbcbf948;hpb=3e00d7e35326b6fecbd95f459266f91fc60e6f15;p=melted diff --git a/src/framework/mlt_service.c b/src/framework/mlt_service.c index 9a1cc37..b1f5c25 100644 --- a/src/framework/mlt_service.c +++ b/src/framework/mlt_service.c @@ -308,14 +308,6 @@ void mlt_service_apply_filters( mlt_service this, mlt_frame frame, int index ) mlt_position this_in = mlt_properties_get_position( service_properties, "in" ); mlt_position this_out = mlt_properties_get_position( service_properties, "out" ); - // Hmm - special case for cuts - apply filters from the parent first - if ( mlt_properties_get_int( service_properties, "_cut" ) ) - { - mlt_service_apply_filters( ( mlt_service )mlt_properties_get_data( service_properties, "_cut_parent", NULL ), frame, 0 ); - position -= this_in; - mlt_frame_set_position( frame, position ); - } - if ( index == 0 || mlt_properties_get_int( service_properties, "_filter_private" ) == 0 ) { // Process the frame with the attached filters @@ -327,23 +319,14 @@ void mlt_service_apply_filters( mlt_service this, mlt_frame frame, int index ) mlt_position out = mlt_filter_get_out( base->filters[ i ] ); if ( ( in == 0 && out == 0 ) || ( position >= in && ( position <= out || out == 0 ) ) ) { - mlt_properties_set_position( frame_properties, "in", 0 ); - mlt_properties_set_position( frame_properties, "out", out == 0 ? this_out - this_in : out - in ); - mlt_frame_set_position( frame, position - in ); + mlt_properties_set_position( frame_properties, "in", in == 0 ? this_in : in ); + mlt_properties_set_position( frame_properties, "out", out == 0 ? this_out : out ); mlt_filter_process( base->filters[ i ], frame ); mlt_service_apply_filters( mlt_filter_service( base->filters[ i ] ), frame, index + 1 ); - mlt_frame_set_position( frame, position + in ); } } } } - - if ( mlt_properties_get_int( service_properties, "_cut" ) ) - { - mlt_properties_set_position( frame_properties, "in", this_in ); - mlt_properties_set_position( frame_properties, "out", this_out ); - mlt_frame_set_position( frame, position + this_in ); - } } /** Obtain a frame.