Added the response object
[melted] / mlt++ / src / MltPlaylist.h
index c9adcaa..ece8bed 100644 (file)
@@ -30,6 +30,7 @@ namespace Mlt
        class Producer;
        class Service;
        class Playlist;
+       class Transition;
 
        class ClipInfo
        {
@@ -51,10 +52,10 @@ namespace Mlt
        class Playlist : public Producer
        {
                private:
-                       bool destroy;
                        mlt_playlist instance;
                public:
                        Playlist( );
+                       Playlist( Service &playlist );
                        Playlist( Playlist &playlist );
                        Playlist( mlt_playlist playlist );
                        virtual ~Playlist( );
@@ -72,6 +73,9 @@ namespace Mlt
                        int remove( int where );
                        int move( int from, int to );
                        int resize_clip( int clip, int in, int out );
+                       int split( int clip, int position );
+                       int join( int clip, int count = 1, int merge = 1 );
+                       int mix( int clip, int length, Transition *transition = NULL );
        };
 }