X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fframework%2Fmlt_filter.c;h=e97d6e075147ba13507e180ac622c1a4b87b5465;hb=27252e3c2f46c5bfd92c841e3453525ecea2a7d5;hp=6ca7afb4b960fdf2fb6e32ee81690745ab6d12bd;hpb=fab74b3d7391168c82a3b0408288a3ae82242ff4;p=melted diff --git a/src/framework/mlt_filter.c b/src/framework/mlt_filter.c index 6ca7afb..e97d6e0 100644 --- a/src/framework/mlt_filter.c +++ b/src/framework/mlt_filter.c @@ -147,7 +147,8 @@ mlt_position mlt_filter_get_out( mlt_filter this ) mlt_frame mlt_filter_process( mlt_filter this, mlt_frame frame ) { - if ( this->process == NULL ) + int disable = mlt_properties_get_int( MLT_FILTER_PROPERTIES( this ), "disable" ); + if ( disable || this->process == NULL ) return frame; else return this->process( this, frame );