X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fframework%2Fmlt_filter.c;h=95dfc5aa8759a1faebc9374eaccbe255135d3524;hb=2d9ad7ff9d46ac8da7fb0d1d350febbe0c24317d;hp=0b4b03f690539db3ba4f0a3725edc2684f16b0b1;hpb=1fd5d30c5326f73a3889e3bf4f377f96e551a6d1;p=melted diff --git a/src/framework/mlt_filter.c b/src/framework/mlt_filter.c index 0b4b03f..95dfc5a 100644 --- a/src/framework/mlt_filter.c +++ b/src/framework/mlt_filter.c @@ -155,12 +155,9 @@ static int filter_get_frame( mlt_service service, mlt_frame_ptr frame, int index int ret = mlt_service_get_frame( this->producer, frame, index ); if ( ret == 0 ) { - if ( !mlt_frame_is_test_card( *frame ) ) - { - mlt_position position = mlt_frame_get_position( *frame ); - if ( position >= in && ( out == 0 || position < out ) ) - *frame = filter_process( this, *frame ); - } + mlt_position position = mlt_frame_get_position( *frame ); + if ( position >= in && ( out == 0 || position < out ) ) + *frame = filter_process( this, *frame ); return 0; } else