]> git.sesse.net Git - mlt/blobdiff - src/mlt++/MltProducer.h
Make motion_est properties available to autotrack_rectangle filter
[mlt] / src / mlt++ / MltProducer.h
index b3f2617ba93443efa680543aada0b5a0e3f1e833..473f2f410fb8dc18594299559dc11ae33c4db690 100644 (file)
@@ -52,15 +52,19 @@ namespace Mlt
                        mlt_producer get_parent( );
                        mlt_service get_service( );
                        int seek( int position );
+                       int seek( const char* time );
                        int position( );
                        int frame( );
+                       char* frame_time( mlt_time_format = mlt_time_smpte );
                        int set_speed( double speed );
+                       int pause( );
                        double get_speed( );
                        double get_fps( );
                        int set_in_and_out( int in, int out );
                        int get_in( );
                        int get_out( );
                        int get_length( );
+                       char* get_length_time( mlt_time_format = mlt_time_smpte );
                        int get_playtime( );
                        Producer *cut( int in = 0, int out = -1 );
                        bool is_cut( );
@@ -68,6 +72,7 @@ namespace Mlt
                        bool same_clip( Producer &that );
                        bool runs_into( Producer &that );
                        void optimise( );
+                       int clear( );
        };
 }