CUSTOMISING
[melted] / mlt++ / src / MltFilter.h
index cdf574a..ac0a720 100644 (file)
@@ -32,19 +32,19 @@ namespace Mlt
        class Filter : public Service
        {
                private:
-                       bool destroy;
                        mlt_filter instance;
                public:
                        Filter( char *id, char *service = NULL );
+                       Filter( Service &filter );
                        Filter( Filter &filter );
                        Filter( mlt_filter filter );
                        virtual ~Filter( );
                        virtual mlt_filter get_filter( );
                        mlt_service get_service( );
                        int connect( Service &service, int index = 0 );
-                       void set_in_and_out( mlt_position in, mlt_position out );
-                       mlt_position get_in( );
-                       mlt_position get_out( );
+                       void set_in_and_out( int in, int out );
+                       int get_in( );
+                       int get_out( );
                        int get_track( );
        };
 }