X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fframework%2Fmlt_service.c;h=b1f5c25dd1c4342d3e848c489cd2f9e2e5a1e221;hb=de477d594bdd9c5d9ee2d3441cd0ccf49ab52feb;hp=df416f0db9d25d86bc046c3be3f0b9ed511996dc;hpb=d3e965e4d67fcba9565f415d6915690306e31d6a;p=melted diff --git a/src/framework/mlt_service.c b/src/framework/mlt_service.c index df416f0..b1f5c25 100644 --- a/src/framework/mlt_service.c +++ b/src/framework/mlt_service.c @@ -319,8 +319,8 @@ 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_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 ); }