X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=mlt%2B%2B%2Fsrc%2FMltPlaylist.cpp;fp=mlt%2B%2B%2Fsrc%2FMltPlaylist.cpp;h=4b613b32d965bfc2a43b5ca64b7ec84d2d6bb181;hb=e18ebb54d19da2259f74dfa107d2d5bdebd220be;hp=adace641655e9115b26f4fa21be8f021c7be8894;hpb=d71fb4bb03642d5f8447be77d37e39c4ae8113c5;p=melted diff --git a/mlt++/src/MltPlaylist.cpp b/mlt++/src/MltPlaylist.cpp index adace64..4b613b3 100644 --- a/mlt++/src/MltPlaylist.cpp +++ b/mlt++/src/MltPlaylist.cpp @@ -192,6 +192,11 @@ int Playlist::split( int clip, int position ) return mlt_playlist_split( get_playlist( ), clip, position ); } +int Playlist::split_at( int position, bool left ) +{ + return mlt_playlist_split_at( get_playlist( ), position, left ); +} + int Playlist::join( int clip, int count, int merge ) { return mlt_playlist_join( get_playlist( ), clip, count, merge );