X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fframework%2Fmlt_playlist.h;h=a7dd3f28ef666d70ffaad7ade570172b39375324;hb=76f260e441303164d9680fad0b52537a965e61b9;hp=1566b1a89f9acbcab64f23a1d937e0f8af3b3052;hpb=909d149697331a560edb1924f58fc58c5a25aaea;p=melted diff --git a/src/framework/mlt_playlist.h b/src/framework/mlt_playlist.h index 1566b1a..a7dd3f2 100644 --- a/src/framework/mlt_playlist.h +++ b/src/framework/mlt_playlist.h @@ -30,7 +30,7 @@ typedef struct { int clip; mlt_producer producer; - mlt_service service; + mlt_producer cut; mlt_position start; char *resource; mlt_position frame_in; @@ -38,7 +38,7 @@ typedef struct mlt_position frame_count; mlt_position length; float fps; - mlt_event event; + int repeat; } mlt_playlist_clip_info; @@ -62,8 +62,13 @@ extern int mlt_playlist_insert( mlt_playlist self, mlt_producer producer, int wh extern int mlt_playlist_remove( mlt_playlist self, int where ); extern int mlt_playlist_move( mlt_playlist self, int from, int to ); extern int mlt_playlist_resize_clip( mlt_playlist self, int clip, mlt_position in, mlt_position out ); +extern int mlt_playlist_repeat_clip( mlt_playlist self, int clip, int repeat ); extern int mlt_playlist_split( mlt_playlist self, int clip, mlt_position position ); extern int mlt_playlist_join( mlt_playlist self, int clip, int count, int merge ); +extern int mlt_playlist_mix( mlt_playlist self, int clip, int length, mlt_transition transition ); +extern int mlt_playlist_mix_add( mlt_playlist self, int clip, mlt_transition transition ); +extern mlt_producer mlt_playlist_get_clip( mlt_playlist self, int clip ); +extern int mlt_playlist_clip_is_mix( mlt_playlist self, int clip ); extern void mlt_playlist_close( mlt_playlist self ); #endif