]> git.sesse.net Git - mlt/blob - src/framework/mlt_playlist.c
Set version to 0.8.8.
[mlt] / src / framework / mlt_playlist.c
1 /**
2  * \file mlt_playlist.c
3  * \brief playlist service class
4  * \see mlt_playlist_s
5  *
6  * Copyright (C) 2003-2009 Ushodaya Enterprises Limited
7  * \author Charles Yates <charles.yates@pandora.be>
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 2.1 of the License, or (at your option) any later version.
13  *
14  * This library is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with this library; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
22  */
23
24 #include "mlt_playlist.h"
25 #include "mlt_tractor.h"
26 #include "mlt_multitrack.h"
27 #include "mlt_field.h"
28 #include "mlt_frame.h"
29 #include "mlt_transition.h"
30
31 #include <stdio.h>
32 #include <stdlib.h>
33 #include <string.h>
34
35 /** \brief Virtual playlist entry used by mlt_playlist_s
36 */
37
38 struct playlist_entry_s
39 {
40         mlt_producer producer;
41         mlt_position frame_in;
42         mlt_position frame_out;
43         mlt_position frame_count;
44         int repeat;
45         mlt_position producer_length;
46         mlt_event event;
47         int preservation_hack;
48 };
49
50 /* Forward declarations
51 */
52
53 static int producer_get_frame( mlt_producer producer, mlt_frame_ptr frame, int index );
54 static int mlt_playlist_unmix( mlt_playlist self, int clip );
55 static int mlt_playlist_resize_mix( mlt_playlist self, int clip, int in, int out );
56 static void mlt_playlist_next( mlt_listener listener, mlt_properties owner, mlt_service self, void **args );
57
58 /** Construct a playlist.
59  *
60  * Sets the resource property to "<playlist>".
61  * Set the mlt_type to property to "mlt_producer".
62  * \public \memberof mlt_playlist_s
63  * \return a new playlist
64  */
65
66 mlt_playlist mlt_playlist_init( )
67 {
68         mlt_playlist self = calloc( 1, sizeof( struct mlt_playlist_s ) );
69         if ( self != NULL )
70         {
71                 mlt_producer producer = &self->parent;
72
73                 // Construct the producer
74                 if ( mlt_producer_init( producer, self ) != 0 ) goto error1;
75
76                 // Override the producer get_frame
77                 producer->get_frame = producer_get_frame;
78
79                 // Define the destructor
80                 producer->close = ( mlt_destructor )mlt_playlist_close;
81                 producer->close_object = self;
82
83                 // Initialise blank
84                 if ( mlt_producer_init( &self->blank, NULL ) != 0 ) goto error1;
85                 mlt_properties_set( MLT_PRODUCER_PROPERTIES( &self->blank ), "mlt_service", "blank" );
86                 mlt_properties_set( MLT_PRODUCER_PROPERTIES( &self->blank ), "resource", "blank" );
87
88                 // Indicate that this producer is a playlist
89                 mlt_properties_set_data( MLT_PLAYLIST_PROPERTIES( self ), "playlist", self, 0, NULL, NULL );
90
91                 // Specify the eof condition
92                 mlt_properties_set( MLT_PLAYLIST_PROPERTIES( self ), "eof", "pause" );
93                 mlt_properties_set( MLT_PLAYLIST_PROPERTIES( self ), "resource", "<playlist>" );
94                 mlt_properties_set( MLT_PLAYLIST_PROPERTIES( self ), "mlt_type", "mlt_producer" );
95                 mlt_properties_set_position( MLT_PLAYLIST_PROPERTIES( self ), "in", 0 );
96                 mlt_properties_set_position( MLT_PLAYLIST_PROPERTIES( self ), "out", -1 );
97                 mlt_properties_set_position( MLT_PLAYLIST_PROPERTIES( self ), "length", 0 );
98
99                 self->size = 10;
100                 self->list = calloc( self->size, sizeof( playlist_entry * ) );
101                 if ( self->list == NULL ) goto error2;
102                 
103                 mlt_events_register( MLT_PLAYLIST_PROPERTIES( self ), "playlist-next", (mlt_transmitter) mlt_playlist_next );
104         }
105
106         return self;
107 error2:
108         free( self->list );
109 error1:
110         free( self );
111         return NULL;
112 }
113
114 /** Construct a playlist with a profile.
115  *
116  * Sets the resource property to "<playlist>".
117  * Set the mlt_type to property to "mlt_producer".
118  * \public \memberof mlt_playlist_s
119  * \param profile the profile to use with the profile
120  * \return a new playlist
121  */
122
123 mlt_playlist mlt_playlist_new( mlt_profile profile )
124 {
125     mlt_playlist self = mlt_playlist_init();
126     if ( self )
127         mlt_properties_set_data( MLT_PLAYLIST_PROPERTIES( self ), "_profile", profile, 0, NULL, NULL );
128     return self;
129 }
130
131 /** Get the producer associated to this playlist.
132  *
133  * \public \memberof mlt_playlist_s
134  * \param self a playlist
135  * \return the producer interface
136  * \see MLT_PLAYLIST_PRODUCER
137  */
138
139 mlt_producer mlt_playlist_producer( mlt_playlist self )
140 {
141         return self != NULL ? &self->parent : NULL;
142 }
143
144 /** Get the service associated to this playlist.
145  *
146  * \public \memberof mlt_playlist_s
147  * \param self a playlist
148  * \return the service interface
149  * \see MLT_PLAYLIST_SERVICE
150  */
151
152 mlt_service mlt_playlist_service( mlt_playlist self )
153 {
154         return MLT_PRODUCER_SERVICE( &self->parent );
155 }
156
157 /** Get the properties associated to this playlist.
158  *
159  * \public \memberof mlt_playlist_s
160  * \param self a playlist
161  * \return the playlist's properties list
162  * \see MLT_PLAYLIST_PROPERTIES
163  */
164
165 mlt_properties mlt_playlist_properties( mlt_playlist self )
166 {
167         return MLT_PRODUCER_PROPERTIES( &self->parent );
168 }
169
170 /** Refresh the playlist after a clip has been changed.
171  *
172  * \private \memberof mlt_playlist_s
173  * \param self a playlist
174  * \return false
175  */
176
177 static int mlt_playlist_virtual_refresh( mlt_playlist self )
178 {
179         // Obtain the properties
180         mlt_properties properties = MLT_PLAYLIST_PROPERTIES( self );
181         int i = 0;
182         mlt_position frame_count = 0;
183
184         for ( i = 0; i < self->count; i ++ )
185         {
186                 // Get the producer
187                 mlt_producer producer = self->list[ i ]->producer;
188                 if ( producer )
189                 {
190                         int current_length = mlt_producer_get_playtime( producer );
191
192                         // Check if the length of the producer has changed
193                         if ( self->list[ i ]->frame_in != mlt_producer_get_in( producer ) ||
194                                 self->list[ i ]->frame_out != mlt_producer_get_out( producer ) )
195                         {
196                                 // This clip should be removed...
197                                 if ( current_length < 1 )
198                                 {
199                                         self->list[ i ]->frame_in = 0;
200                                         self->list[ i ]->frame_out = -1;
201                                         self->list[ i ]->frame_count = 0;
202                                 }
203                                 else
204                                 {
205                                         self->list[ i ]->frame_in = mlt_producer_get_in( producer );
206                                         self->list[ i ]->frame_out = mlt_producer_get_out( producer );
207                                         self->list[ i ]->frame_count = current_length;
208                                 }
209
210                                 // Update the producer_length
211                                 self->list[ i ]->producer_length = current_length;
212                         }
213                 }
214
215                 // Calculate the frame_count
216                 self->list[ i ]->frame_count = ( self->list[ i ]->frame_out - self->list[ i ]->frame_in + 1 ) * self->list[ i ]->repeat;
217
218                 // Update the frame_count for self clip
219                 frame_count += self->list[ i ]->frame_count;
220         }
221
222         // Refresh all properties
223         mlt_events_block( properties, properties );
224         mlt_properties_set_position( properties, "length", frame_count );
225         mlt_events_unblock( properties, properties );
226         mlt_properties_set_position( properties, "out", frame_count - 1 );
227
228         return 0;
229 }
230
231 /** Listener for producers on the playlist.
232  *
233  * Refreshes the playlist whenever an entry receives producer-changed.
234  * \private \memberof mlt_playlist_s
235  * \param producer a producer
236  * \param self a playlist
237  */
238
239 static void mlt_playlist_listener( mlt_producer producer, mlt_playlist self )
240 {
241         mlt_playlist_virtual_refresh( self );
242 }
243
244 /** Append to the virtual playlist.
245  *
246  * \private \memberof mlt_playlist_s
247  * \param self a playlist
248  * \param source a producer
249  * \param in the producer's starting time
250  * \param out the producer's ending time
251  * \return true if there was an error
252  */
253
254 static int mlt_playlist_virtual_append( mlt_playlist self, mlt_producer source, mlt_position in, mlt_position out )
255 {
256         mlt_producer producer = NULL;
257         mlt_properties properties = NULL;
258         mlt_properties parent = NULL;
259
260         // If we have a cut, then use the in/out points from the cut
261         if ( mlt_producer_is_blank( source )  )
262         {
263                 mlt_position length = out - in + 1;
264
265                 // Make sure the blank is long enough to accomodate the length specified
266                 if ( length > mlt_producer_get_length( &self->blank ) )
267                 {
268                         mlt_properties blank_props = MLT_PRODUCER_PROPERTIES( &self->blank );
269                         mlt_events_block( blank_props, blank_props );
270                         mlt_producer_set_in_and_out( &self->blank, in, out );
271                         mlt_events_unblock( blank_props, blank_props );
272                 }
273
274                 // Now make sure the cut comes from this self->blank
275                 if ( source == NULL )
276                 {
277                         producer = mlt_producer_cut( &self->blank, in, out );
278                 }
279                 else if ( !mlt_producer_is_cut( source ) || mlt_producer_cut_parent( source ) != &self->blank )
280                 {
281                         producer = mlt_producer_cut( &self->blank, in, out );
282                 }
283                 else
284                 {
285                         producer = source;
286                         mlt_properties_inc_ref( MLT_PRODUCER_PROPERTIES( producer ) );
287                 }
288
289                 properties = MLT_PRODUCER_PROPERTIES( producer );
290
291                 // Make sure this cut of blank is long enough
292                 if ( length > mlt_producer_get_length( producer ) )
293                         mlt_properties_set_int( properties, "length", length );
294         }
295         else if ( mlt_producer_is_cut( source ) )
296         {
297                 producer = source;
298                 if ( in < 0 )
299                         in = mlt_producer_get_in( producer );
300                 if ( out < 0 || out > mlt_producer_get_out( producer ) )
301                         out = mlt_producer_get_out( producer );
302                 properties = MLT_PRODUCER_PROPERTIES( producer );
303                 mlt_properties_inc_ref( properties );
304         }
305         else
306         {
307                 producer = mlt_producer_cut( source, in, out );
308                 if ( in < 0 || in < mlt_producer_get_in( producer ) )
309                         in = mlt_producer_get_in( producer );
310                 if ( out < 0 || out > mlt_producer_get_out( producer ) )
311                         out = mlt_producer_get_out( producer );
312                 properties = MLT_PRODUCER_PROPERTIES( producer );
313         }
314
315         // Fetch the cuts parent properties
316         parent = MLT_PRODUCER_PROPERTIES( mlt_producer_cut_parent( producer ) );
317
318         // Remove loader normalisers for fx cuts
319         if ( mlt_properties_get_int( parent, "meta.fx_cut" ) )
320         {
321                 mlt_service service = MLT_PRODUCER_SERVICE( mlt_producer_cut_parent( producer ) );
322                 mlt_filter filter = mlt_service_filter( service, 0 );
323                 while ( filter != NULL && mlt_properties_get_int( MLT_FILTER_PROPERTIES( filter ), "_loader" ) )
324                 {
325                         mlt_service_detach( service, filter );
326                         filter = mlt_service_filter( service, 0 );
327                 }
328                 mlt_properties_set_int( MLT_PRODUCER_PROPERTIES( producer ), "meta.fx_cut", 1 );
329         }
330
331         // Check that we have room
332         if ( self->count >= self->size )
333         {
334                 int i;
335                 self->list = realloc( self->list, ( self->size + 10 ) * sizeof( playlist_entry * ) );
336                 for ( i = self->size; i < self->size + 10; i ++ ) self->list[ i ] = NULL;
337                 self->size += 10;
338         }
339
340         // Create the entry
341         self->list[ self->count ] = calloc( 1, sizeof( playlist_entry ) );
342         if ( self->list[ self->count ] != NULL )
343         {
344                 self->list[ self->count ]->producer = producer;
345                 self->list[ self->count ]->frame_in = in;
346                 self->list[ self->count ]->frame_out = out;
347                 self->list[ self->count ]->frame_count = out - in + 1;
348                 self->list[ self->count ]->repeat = 1;
349                 self->list[ self->count ]->producer_length = mlt_producer_get_playtime( producer );
350                 self->list[ self->count ]->event = mlt_events_listen( parent, self, "producer-changed", ( mlt_listener )mlt_playlist_listener );
351                 mlt_event_inc_ref( self->list[ self->count ]->event );
352                 mlt_properties_set( properties, "eof", "pause" );
353                 mlt_producer_set_speed( producer, 0 );
354                 self->count ++;
355         }
356
357         return mlt_playlist_virtual_refresh( self );
358 }
359
360 /** Locate a producer by index.
361  *
362  * \private \memberof mlt_playlist_s
363  * \param self a playlist
364  * \param[in, out] position the time at which to locate the producer, returns the time relative to the producer's starting point
365  * \param[out] clip the index of the playlist entry
366  * \param[out] total the duration of the playlist up to and including this producer
367  * \return a producer or NULL if not found
368  */
369
370 static mlt_producer mlt_playlist_locate( mlt_playlist self, mlt_position *position, int *clip, int *total )
371 {
372         // Default producer to NULL
373         mlt_producer producer = NULL;
374
375         // Loop for each producer until found
376         for ( *clip = 0; *clip < self->count; *clip += 1 )
377         {
378                 // Increment the total
379                 *total += self->list[ *clip ]->frame_count;
380
381                 // Check if the position indicates that we have found the clip
382                 // Note that 0 length clips get skipped automatically
383                 if ( *position < self->list[ *clip ]->frame_count )
384                 {
385                         // Found it, now break
386                         producer = self->list[ *clip ]->producer;
387                         break;
388                 }
389                 else
390                 {
391                         // Decrement position by length of self entry
392                         *position -= self->list[ *clip ]->frame_count;
393                 }
394         }
395
396         return producer;
397 }
398
399 /** The transmitter for the producer-next event
400  *
401  * Invokes the listener.
402  *
403  * \private \memberof mlt_playlist_s
404  * \param listener a function pointer that will be invoked
405  * \param owner the events object that will be passed to \p listener
406  * \param self a service that will be passed to \p listener
407  * \param args an array of pointers.
408  */
409
410 static void mlt_playlist_next( mlt_listener listener, mlt_properties owner, mlt_service self, void **args )
411 {
412         if ( listener )
413                 listener( owner, self, args[ 0 ] );
414 }
415
416
417 /** Seek in the virtual playlist.
418  *
419  * This gets the producer at the current position and seeks on the producer
420  * while doing repeat and end-of-file handling. This is also responsible for
421  * closing producers previous to the preceding playlist if the autoclose
422  * property is set.
423  * \private \memberof mlt_playlist_s
424  * \param self a playlist
425  * \param[out] progressive true if the producer should be displayed progressively
426  * \return the service interface of the producer at the play head
427  * \see producer_get_frame
428  */
429
430 static mlt_service mlt_playlist_virtual_seek( mlt_playlist self, int *progressive )
431 {
432         // Map playlist position to real producer in virtual playlist
433         mlt_position position = mlt_producer_frame( &self->parent );
434
435         // Keep the original position since we change it while iterating through the list
436         mlt_position original = position;
437
438         // Clip index and total
439         int i = 0;
440         int total = 0;
441
442         // Locate the producer for the position
443         mlt_producer producer = mlt_playlist_locate( self, &position, &i, &total );
444
445         // Get the properties
446         mlt_properties properties = MLT_PLAYLIST_PROPERTIES( self );
447
448         // Automatically close previous producers if requested
449         if ( i > 1 // keep immediate previous in case app wants to get info about what just finished
450                 && position < 2 // tolerate off-by-one error on going to next clip
451                 && mlt_properties_get_int( properties, "autoclose" ) )
452         {
453                 int j;
454                 // They might have jumped ahead!
455                 for ( j = 0; j < i - 1; j++ )
456                 {
457                         mlt_service_lock( MLT_PRODUCER_SERVICE( self->list[ j ]->producer ) );
458                         mlt_producer p = self->list[ j ]->producer;
459                         if ( p )
460                         {
461                                 self->list[ j ]->producer = NULL;
462                                 mlt_service_unlock( MLT_PRODUCER_SERVICE( p ) );
463                                 mlt_producer_close( p );
464                         }
465                         // If p is null, the lock will not have been "taken"
466                 }
467         }
468
469         // Get the eof handling
470         char *eof = mlt_properties_get( properties, "eof" );
471
472         // Seek in real producer to relative position
473         if ( producer != NULL )
474         {
475                 int count = self->list[ i ]->frame_count / self->list[ i ]->repeat;
476                 *progressive = count == 1;
477                 mlt_producer_seek( producer, (int)position % count );
478         }
479         else if ( !strcmp( eof, "pause" ) && total > 0 )
480         {
481                 playlist_entry *entry = self->list[ self->count - 1 ];
482                 int count = entry->frame_count / entry->repeat;
483                 mlt_producer self_producer = MLT_PLAYLIST_PRODUCER( self );
484                 mlt_producer_seek( self_producer, original - 1 );
485                 producer = entry->producer;
486                 mlt_producer_seek( producer, (int)entry->frame_out % count );
487                 mlt_producer_set_speed( self_producer, 0 );
488                 mlt_producer_set_speed( producer, 0 );
489                 *progressive = count == 1;
490         }
491         else if ( !strcmp( eof, "loop" ) && total > 0 )
492         {
493                 playlist_entry *entry = self->list[ 0 ];
494                 mlt_producer self_producer = MLT_PLAYLIST_PRODUCER( self );
495                 mlt_producer_seek( self_producer, 0 );
496                 producer = entry->producer;
497                 mlt_producer_seek( producer, 0 );
498         }
499         else
500         {
501                 producer = &self->blank;
502         }
503
504         // Determine if we have moved to the next entry in the playlist.
505         if ( original == total - 2 )
506                 mlt_events_fire( properties, "playlist-next", i, NULL );
507
508         return MLT_PRODUCER_SERVICE( producer );
509 }
510
511 /** Invoked when a producer indicates that it has prematurely reached its end.
512  *
513  * \private \memberof mlt_playlist_s
514  * \param self a playlist
515  * \return a producer
516  * \see producer_get_frame
517  */
518
519 static mlt_producer mlt_playlist_virtual_set_out( mlt_playlist self )
520 {
521         // Default producer to blank
522         mlt_producer producer = &self->blank;
523
524         // Map playlist position to real producer in virtual playlist
525         mlt_position position = mlt_producer_frame( &self->parent );
526
527         // Loop through the virtual playlist
528         int i = 0;
529
530         for ( i = 0; i < self->count; i ++ )
531         {
532                 if ( position < self->list[ i ]->frame_count )
533                 {
534                         // Found it, now break
535                         producer = self->list[ i ]->producer;
536                         break;
537                 }
538                 else
539                 {
540                         // Decrement position by length of this entry
541                         position -= self->list[ i ]->frame_count;
542                 }
543         }
544
545         // Seek in real producer to relative position
546         if ( i < self->count && self->list[ i ]->frame_out != position )
547         {
548                 // Update the frame_count for the changed clip (hmmm)
549                 self->list[ i ]->frame_out = position;
550                 self->list[ i ]->frame_count = self->list[ i ]->frame_out - self->list[ i ]->frame_in + 1;
551
552                 // Refresh the playlist
553                 mlt_playlist_virtual_refresh( self );
554         }
555
556         return producer;
557 }
558
559 /** Obtain the current clips index.
560  *
561  * \public \memberof mlt_playlist_s
562  * \param self a playlist
563  * \return the index of the playlist entry at the current position
564  */
565
566 int mlt_playlist_current_clip( mlt_playlist self )
567 {
568         // Map playlist position to real producer in virtual playlist
569         mlt_position position = mlt_producer_frame( &self->parent );
570
571         // Loop through the virtual playlist
572         int i = 0;
573
574         for ( i = 0; i < self->count; i ++ )
575         {
576                 if ( position < self->list[ i ]->frame_count )
577                 {
578                         // Found it, now break
579                         break;
580                 }
581                 else
582                 {
583                         // Decrement position by length of this entry
584                         position -= self->list[ i ]->frame_count;
585                 }
586         }
587
588         return i;
589 }
590
591 /** Obtain the current clips producer.
592  *
593  * \public \memberof mlt_playlist_s
594  * \param self a playlist
595  * \return the producer at the current position
596  */
597
598 mlt_producer mlt_playlist_current( mlt_playlist self )
599 {
600         int i = mlt_playlist_current_clip( self );
601         if ( i < self->count )
602                 return self->list[ i ]->producer;
603         else
604                 return &self->blank;
605 }
606
607 /** Get the position which corresponds to the start of the next clip.
608  *
609  * \public \memberof mlt_playlist_s
610  * \param self a playlist
611  * \param whence the location from which to make the index relative:
612  * start of playlist, end of playlist, or current position
613  * \param index the playlist entry index relative to whence
614  * \return the time at which the referenced clip starts
615  */
616
617 mlt_position mlt_playlist_clip( mlt_playlist self, mlt_whence whence, int index )
618 {
619         mlt_position position = 0;
620         int absolute_clip = index;
621         int i = 0;
622
623         // Determine the absolute clip
624         switch ( whence )
625         {
626                 case mlt_whence_relative_start:
627                         absolute_clip = index;
628                         break;
629
630                 case mlt_whence_relative_current:
631                         absolute_clip = mlt_playlist_current_clip( self ) + index;
632                         break;
633
634                 case mlt_whence_relative_end:
635                         absolute_clip = self->count - index;
636                         break;
637         }
638
639         // Check that we're in a valid range
640         if ( absolute_clip < 0 )
641                 absolute_clip = 0;
642         else if ( absolute_clip > self->count )
643                 absolute_clip = self->count;
644
645         // Now determine the position
646         for ( i = 0; i < absolute_clip; i ++ )
647                 position += self->list[ i ]->frame_count;
648
649         return position;
650 }
651
652 /** Get all the info about the clip specified.
653  *
654  * \public \memberof mlt_playlist_s
655  * \param self a playlist
656  * \param info a clip info struct
657  * \param index a playlist entry index
658  * \return true if there was an error
659  */
660
661 int mlt_playlist_get_clip_info( mlt_playlist self, mlt_playlist_clip_info *info, int index )
662 {
663         int error = index < 0 || index >= self->count || self->list[ index ]->producer == NULL;
664         memset( info, 0, sizeof( mlt_playlist_clip_info ) );
665         if ( !error )
666         {
667                 mlt_producer producer = mlt_producer_cut_parent( self->list[ index ]->producer );
668                 mlt_properties properties = MLT_PRODUCER_PROPERTIES( producer );
669                 info->clip = index;
670                 info->producer = producer;
671                 info->cut = self->list[ index ]->producer;
672                 info->start = mlt_playlist_clip( self, mlt_whence_relative_start, index );
673                 info->resource = mlt_properties_get( properties, "resource" );
674                 info->frame_in = self->list[ index ]->frame_in;
675                 info->frame_out = self->list[ index ]->frame_out;
676                 info->frame_count = self->list[ index ]->frame_count;
677                 info->repeat = self->list[ index ]->repeat;
678                 info->length = mlt_producer_get_length( producer );
679                 info->fps = mlt_producer_get_fps( producer );
680         }
681
682         return error;
683 }
684
685 /** Get number of clips in the playlist.
686  *
687  * \public \memberof mlt_playlist_s
688  * \param self a playlist
689  * \return the number of playlist entries
690  */
691
692 int mlt_playlist_count( mlt_playlist self )
693 {
694         return self->count;
695 }
696
697 /** Clear the playlist.
698  *
699  * \public \memberof mlt_playlist_s
700  * \param self a playlist
701  * \return true if there was an error
702  */
703
704 int mlt_playlist_clear( mlt_playlist self )
705 {
706         int i;
707         for ( i = 0; i < self->count; i ++ )
708         {
709                 mlt_event_close( self->list[ i ]->event );
710                 mlt_producer_close( self->list[ i ]->producer );
711         }
712         self->count = 0;
713         return mlt_playlist_virtual_refresh( self );
714 }
715
716 /** Append a producer to the playlist.
717  *
718  * \public \memberof mlt_playlist_s
719  * \param self a playlist
720  * \param producer the producer to append
721  * \return true if there was an error
722  */
723
724 int mlt_playlist_append( mlt_playlist self, mlt_producer producer )
725 {
726         // Append to virtual list
727         return mlt_playlist_virtual_append( self, producer, 0, mlt_producer_get_playtime( producer ) - 1 );
728 }
729
730 /** Append a producer to the playlist with in/out points.
731  *
732  * \public \memberof mlt_playlist_s
733  * \param self a playlist
734  * \param producer the producer to append
735  * \param in the starting point on the producer; a negative value is the same as 0
736  * \param out the ending point on the producer; a negative value is the same as producer length - 1
737  * \return true if there was an error
738  */
739
740 int mlt_playlist_append_io( mlt_playlist self, mlt_producer producer, mlt_position in, mlt_position out )
741 {
742         // Append to virtual list
743         if ( in < 0 && out < 0 )
744                 return mlt_playlist_append( self, producer );
745         else
746                 return mlt_playlist_virtual_append( self, producer, in, out );
747 }
748
749 /** Append a blank to the playlist of a given length.
750  *
751  * \public \memberof mlt_playlist_s
752  * \param self a playlist
753  * \param out the ending time of the blank entry, not its duration
754  * \return true if there was an error
755  */
756
757 int mlt_playlist_blank( mlt_playlist self, mlt_position out )
758 {
759         // Append to the virtual list
760         if ( out >= 0 )
761                 return mlt_playlist_virtual_append( self, &self->blank, 0, out );
762         else
763                 return 1;
764 }
765
766 /** Append a blank item to the playlist with duration as a time string.
767  *
768  * \public \memberof mlt_playlist_s
769  * \param self a playlist
770  * \param length the duration of the blank entry as a time string
771  * \return true if there was an error
772  */
773
774 int mlt_playlist_blank_time( mlt_playlist self, const char* length )
775 {
776         if ( self && length )
777         {
778                 mlt_properties properties = MLT_PLAYLIST_PROPERTIES( self );
779                 mlt_properties_set( properties , "_blank_time", length );
780                 mlt_position duration = mlt_properties_get_position( properties, "_blank_time" );
781                 return mlt_playlist_blank( self, duration - 1 );
782         }
783         else
784                 return 1;
785 }
786
787 /** Insert a producer into the playlist.
788  *
789  * \public \memberof mlt_playlist_s
790  * \param self a playlist
791  * \param producer the producer to insert
792  * \param where the producer's playlist entry index
793  * \param in the starting point on the producer
794  * \param out the ending point on the producer
795  * \return true if there was an error
796  */
797
798 int mlt_playlist_insert( mlt_playlist self, mlt_producer producer, int where, mlt_position in, mlt_position out )
799 {
800         // Append to end
801         mlt_events_block( MLT_PLAYLIST_PROPERTIES( self ), self );
802         mlt_playlist_append_io( self, producer, in, out );
803
804         // Move to the position specified
805         mlt_playlist_move( self, self->count - 1, where );
806         mlt_events_unblock( MLT_PLAYLIST_PROPERTIES( self ), self );
807
808         return mlt_playlist_virtual_refresh( self );
809 }
810
811 /** Remove an entry in the playlist.
812  *
813  * \public \memberof mlt_playlist_s
814  * \param self a playlist
815  * \param where the playlist entry index
816  * \return true if there was an error
817  */
818
819 int mlt_playlist_remove( mlt_playlist self, int where )
820 {
821         int error = where < 0 || where >= self->count;
822         if ( error == 0 && mlt_playlist_unmix( self, where ) != 0 )
823         {
824                 // We need to know the current clip and the position within the playlist
825                 int current = mlt_playlist_current_clip( self );
826                 mlt_position position = mlt_producer_position( MLT_PLAYLIST_PRODUCER( self ) );
827
828                 // We need all the details about the clip we're removing
829                 mlt_playlist_clip_info where_info;
830                 playlist_entry *entry = self->list[ where ];
831                 mlt_properties properties = MLT_PRODUCER_PROPERTIES( entry->producer );
832
833                 // Loop variable
834                 int i = 0;
835
836                 // Get the clip info
837                 mlt_playlist_get_clip_info( self, &where_info, where );
838
839                 // Reorganise the list
840                 for ( i = where + 1; i < self->count; i ++ )
841                         self->list[ i - 1 ] = self->list[ i ];
842                 self->count --;
843
844                 if ( entry->preservation_hack == 0 )
845                 {
846                         // Decouple from mix_in/out if necessary
847                         if ( mlt_properties_get_data( properties, "mix_in", NULL ) != NULL )
848                         {
849                                 mlt_properties mix = mlt_properties_get_data( properties, "mix_in", NULL );
850                                 mlt_properties_set_data( mix, "mix_out", NULL, 0, NULL, NULL );
851                         }
852                         if ( mlt_properties_get_data( properties, "mix_out", NULL ) != NULL )
853                         {
854                                 mlt_properties mix = mlt_properties_get_data( properties, "mix_out", NULL );
855                                 mlt_properties_set_data( mix, "mix_in", NULL, 0, NULL, NULL );
856                         }
857
858                         if ( mlt_properties_ref_count( MLT_PRODUCER_PROPERTIES( entry->producer ) ) == 1 )
859                                 mlt_producer_clear( entry->producer );
860                 }
861
862                 // Close the producer associated to the clip info
863                 mlt_event_close( entry->event );
864                 mlt_producer_close( entry->producer );
865
866                 // Correct position
867                 if ( where == current )
868                         mlt_producer_seek( MLT_PLAYLIST_PRODUCER( self ), where_info.start );
869                 else if ( where < current && self->count > 0 )
870                         mlt_producer_seek( MLT_PLAYLIST_PRODUCER( self ), position - where_info.frame_count );
871                 else if ( self->count == 0 )
872                         mlt_producer_seek( MLT_PLAYLIST_PRODUCER( self ), 0 );
873
874                 // Free the entry
875                 free( entry );
876
877                 // Refresh the playlist
878                 mlt_playlist_virtual_refresh( self );
879         }
880
881         return error;
882 }
883
884 /** Move an entry in the playlist.
885  *
886  * \public \memberof mlt_playlist_s
887  * \param self a playlist
888  * \param src an entry index
889  * \param dest an entry index
890  * \return false
891  */
892
893 int mlt_playlist_move( mlt_playlist self, int src, int dest )
894 {
895         int i;
896
897         /* We need to ensure that the requested indexes are valid and correct it as necessary */
898         if ( src < 0 )
899                 src = 0;
900         if ( src >= self->count )
901                 src = self->count - 1;
902
903         if ( dest < 0 )
904                 dest = 0;
905         if ( dest >= self->count )
906                 dest = self->count - 1;
907
908         if ( src != dest && self->count > 1 )
909         {
910                 int current = mlt_playlist_current_clip( self );
911                 mlt_position position = mlt_producer_position( MLT_PLAYLIST_PRODUCER( self ) );
912                 playlist_entry *src_entry = NULL;
913
914                 // We need all the details about the current clip
915                 mlt_playlist_clip_info current_info;
916
917                 mlt_playlist_get_clip_info( self, &current_info, current );
918                 position -= current_info.start;
919
920                 if ( current == src )
921                         current = dest;
922                 else if ( current > src && current < dest )
923                         current ++;
924                 else if ( current == dest )
925                         current = src;
926
927                 src_entry = self->list[ src ];
928                 if ( src > dest )
929                 {
930                         for ( i = src; i > dest; i -- )
931                                 self->list[ i ] = self->list[ i - 1 ];
932                 }
933                 else
934                 {
935                         for ( i = src; i < dest; i ++ )
936                                 self->list[ i ] = self->list[ i + 1 ];
937                 }
938                 self->list[ dest ] = src_entry;
939
940                 mlt_playlist_get_clip_info( self, &current_info, current );
941                 mlt_producer_seek( MLT_PLAYLIST_PRODUCER( self ), current_info.start + position );
942                 mlt_playlist_virtual_refresh( self );
943         }
944
945         return 0;
946 }
947
948 /** Repeat the specified clip n times.
949  *
950  * \public \memberof mlt_playlist_s
951  * \param self a playlist
952  * \param clip a playlist entry index
953  * \param repeat the number of times to repeat the clip
954  * \return true if there was an error
955  */
956
957 int mlt_playlist_repeat_clip( mlt_playlist self, int clip, int repeat )
958 {
959         int error = repeat < 1 || clip < 0 || clip >= self->count;
960         if ( error == 0 )
961         {
962                 playlist_entry *entry = self->list[ clip ];
963                 entry->repeat = repeat;
964                 mlt_playlist_virtual_refresh( self );
965         }
966         return error;
967 }
968
969 /** Resize the specified clip.
970  *
971  * \public \memberof mlt_playlist_s
972  * \param self a playlist
973  * \param clip the index of the playlist entry
974  * \param in the new starting time on the clip's producer;  a negative value is the same as 0
975  * \param out the new ending time on the clip's producer;  a negative value is the same as length - 1
976  * \return true if there was an error
977  */
978
979 int mlt_playlist_resize_clip( mlt_playlist self, int clip, mlt_position in, mlt_position out )
980 {
981         int error = clip < 0 || clip >= self->count;
982         if ( error == 0 && mlt_playlist_resize_mix( self, clip, in, out ) != 0 )
983         {
984                 playlist_entry *entry = self->list[ clip ];
985                 mlt_producer producer = entry->producer;
986                 mlt_properties properties = MLT_PLAYLIST_PROPERTIES( self );
987
988                 mlt_events_block( properties, properties );
989
990                 if ( mlt_producer_is_blank( producer ) )
991                 {
992                         mlt_position length = out - in + 1;
993
994                         // Make sure the parent blank is long enough to accomodate the length specified
995                         if ( length > mlt_producer_get_length( &self->blank ) )
996                         {
997                                 mlt_properties blank_props = MLT_PRODUCER_PROPERTIES( &self->blank );
998                                 mlt_properties_set_int( blank_props, "length", length );
999                                 mlt_producer_set_in_and_out( &self->blank, 0, out - in );
1000                         }
1001                         // Make sure this cut of blank is long enough
1002                         if ( length > mlt_producer_get_length( producer ) )
1003                                 mlt_properties_set_int( MLT_PRODUCER_PROPERTIES( producer ), "length", length );
1004                 }
1005
1006                 if ( in < 0 )
1007                         in = 0;
1008                 if ( out < 0 || out >= mlt_producer_get_length( producer ) )
1009                         out = mlt_producer_get_length( producer ) - 1;
1010
1011                 if ( out < in )
1012                 {
1013                         mlt_position t = in;
1014                         in = out;
1015                         out = t;
1016                 }
1017
1018                 mlt_producer_set_in_and_out( producer, in, out );
1019                 mlt_events_unblock( properties, properties );
1020                 mlt_playlist_virtual_refresh( self );
1021         }
1022         return error;
1023 }
1024
1025 /** Split a clip on the playlist at the given position.
1026  *
1027  * This splits after the specified frame.
1028  * \public \memberof mlt_playlist_s
1029  * \param self a playlist
1030  * \param clip the index of the playlist entry
1031  * \param position the time at which to split relative to the beginning of the clip or its end if negative
1032  * \return true if there was an error
1033  */
1034
1035 int mlt_playlist_split( mlt_playlist self, int clip, mlt_position position )
1036 {
1037         int error = clip < 0 || clip >= self->count;
1038         if ( error == 0 )
1039         {
1040                 playlist_entry *entry = self->list[ clip ];
1041                 position = position < 0 ? entry->frame_count + position - 1 : position;
1042                 if ( position >= 0 && position < entry->frame_count - 1 )
1043                 {
1044                         int in = entry->frame_in;
1045                         int out = entry->frame_out;
1046                         mlt_events_block( MLT_PLAYLIST_PROPERTIES( self ), self );
1047                         mlt_playlist_resize_clip( self, clip, in, in + position );
1048                         if ( !mlt_producer_is_blank( entry->producer ) )
1049                         {
1050                                 int i = 0;
1051                                 mlt_properties entry_properties = MLT_PRODUCER_PROPERTIES( entry->producer );
1052                                 mlt_producer split = mlt_producer_cut( entry->producer, in + position + 1, out );
1053                                 mlt_properties split_properties = MLT_PRODUCER_PROPERTIES( split );
1054                                 mlt_playlist_insert( self, split, clip + 1, 0, -1 );
1055                                 mlt_properties_lock( entry_properties );
1056                                 for ( i = 0; i < mlt_properties_count( entry_properties ); i ++ )
1057                                 {
1058                                         char *name = mlt_properties_get_name( entry_properties, i );
1059                                         if ( name != NULL && !strncmp( name, "meta.", 5 ) )
1060                                                 mlt_properties_set( split_properties, name, mlt_properties_get_value( entry_properties, i ) );
1061                                 }
1062                                 mlt_properties_unlock( entry_properties );
1063                                 mlt_producer_close( split );
1064                         }
1065                         else
1066                         {
1067                                 mlt_playlist_insert( self, &self->blank, clip + 1, 0, out - position - 1 );
1068                         }
1069                         mlt_events_unblock( MLT_PLAYLIST_PROPERTIES( self ), self );
1070                         mlt_playlist_virtual_refresh( self );
1071                 }
1072                 else
1073                 {
1074                         error = 1;
1075                 }
1076         }
1077         return error;
1078 }
1079
1080 /** Split the playlist at the absolute position.
1081  *
1082  * \public \memberof mlt_playlist_s
1083  * \param self a playlist
1084  * \param position the time at which to split relative to the beginning of the clip
1085  * \param left true to split before the frame starting at position
1086  * \return true if there was an error
1087  */
1088
1089 int mlt_playlist_split_at( mlt_playlist self, mlt_position position, int left )
1090 {
1091         int result = self == NULL ? -1 : 0;
1092         if ( !result )
1093         {
1094                 if ( position >= 0 && position < mlt_producer_get_playtime( MLT_PLAYLIST_PRODUCER( self ) ) )
1095                 {
1096                         int clip = mlt_playlist_get_clip_index_at( self, position );
1097                         mlt_playlist_clip_info info;
1098                         mlt_playlist_get_clip_info( self, &info, clip );
1099                         if ( left && position != info.start )
1100                                 mlt_playlist_split( self, clip, position - info.start - 1 );
1101                         else if ( !left )
1102                                 mlt_playlist_split( self, clip, position - info.start );
1103                         result = position;
1104                 }
1105                 else if ( position <= 0 )
1106                 {
1107                         result = 0;
1108                 }
1109                 else
1110                 {
1111                         result = mlt_producer_get_playtime( MLT_PLAYLIST_PRODUCER( self ) );
1112                 }
1113         }
1114         return result;
1115 }
1116
1117 /** Join 1 or more consecutive clips.
1118  *
1119  * \public \memberof mlt_playlist_s
1120  * \param self a playlist
1121  * \param clip the starting playlist entry index
1122  * \param count the number of entries to merge
1123  * \param merge ignored
1124  * \return true if there was an error
1125  */
1126
1127 int mlt_playlist_join( mlt_playlist self, int clip, int count, int merge )
1128 {
1129         int error = clip < 0 || clip >= self->count;
1130         if ( error == 0 )
1131         {
1132                 int i = clip;
1133                 mlt_playlist new_clip = mlt_playlist_new( mlt_service_profile( MLT_PLAYLIST_SERVICE(self) ) );
1134                 mlt_events_block( MLT_PLAYLIST_PROPERTIES( self ), self );
1135                 if ( clip + count >= self->count )
1136                         count = self->count - clip - 1;
1137                 for ( i = 0; i <= count; i ++ )
1138                 {
1139                         playlist_entry *entry = self->list[ clip ];
1140                         mlt_playlist_append( new_clip, entry->producer );
1141                         mlt_playlist_repeat_clip( new_clip, i, entry->repeat );
1142                         entry->preservation_hack = 1;
1143                         mlt_playlist_remove( self, clip );
1144                 }
1145                 mlt_events_unblock( MLT_PLAYLIST_PROPERTIES( self ), self );
1146                 mlt_playlist_insert( self, MLT_PLAYLIST_PRODUCER( new_clip ), clip, 0, -1 );
1147                 mlt_playlist_close( new_clip );
1148         }
1149         return error;
1150 }
1151
1152 /** Mix consecutive clips for a specified length and apply transition if specified.
1153  *
1154  * \public \memberof mlt_playlist_s
1155  * \param self a playlist
1156  * \param clip the index of the playlist entry
1157  * \param length the number of frames over which to create the mix
1158  * \param transition the transition to use for the mix
1159  * \return true if there was an error
1160  */
1161
1162 int mlt_playlist_mix( mlt_playlist self, int clip, int length, mlt_transition transition )
1163 {
1164         int error = ( clip < 0 || clip + 1 >= self->count );
1165         if ( error == 0 )
1166         {
1167                 playlist_entry *clip_a = self->list[ clip ];
1168                 playlist_entry *clip_b = self->list[ clip + 1 ];
1169                 mlt_producer track_a = NULL;
1170                 mlt_producer track_b = NULL;
1171                 mlt_tractor tractor = mlt_tractor_new( );
1172                 mlt_events_block( MLT_PLAYLIST_PROPERTIES( self ), self );
1173
1174                 // Check length is valid for both clips and resize if necessary.
1175                 int max_size = clip_a->frame_count > clip_b->frame_count ? clip_a->frame_count : clip_b->frame_count;
1176                 length = length > max_size ? max_size : length;
1177
1178                 // Create the a and b tracks/cuts if necessary - note that no cuts are required if the length matches
1179                 if ( length != clip_a->frame_count )
1180                         track_a = mlt_producer_cut( clip_a->producer, clip_a->frame_out - length + 1, clip_a->frame_out );
1181                 else
1182                         track_a = clip_a->producer;
1183
1184                 if ( length != clip_b->frame_count )
1185                         track_b = mlt_producer_cut( clip_b->producer, clip_b->frame_in, clip_b->frame_in + length - 1 );
1186                 else
1187                         track_b = clip_b->producer;
1188
1189                 // Set the tracks on the tractor
1190                 mlt_tractor_set_track( tractor, track_a, 0 );
1191                 mlt_tractor_set_track( tractor, track_b, 1 );
1192
1193                 // Insert the mix object into the playlist
1194                 mlt_playlist_insert( self, MLT_TRACTOR_PRODUCER( tractor ), clip + 1, -1, -1 );
1195                 mlt_properties_set_data( MLT_TRACTOR_PROPERTIES( tractor ), "mlt_mix", tractor, 0, NULL, NULL );
1196
1197                 // Attach the transition
1198                 if ( transition != NULL )
1199                 {
1200                         mlt_field field = mlt_tractor_field( tractor );
1201                         mlt_field_plant_transition( field, transition, 0, 1 );
1202                         mlt_transition_set_in_and_out( transition, 0, length - 1 );
1203                 }
1204
1205                 // Close our references to the tracks if we created new cuts above (the tracks can still be used here)
1206                 if ( track_a != clip_a->producer )
1207                         mlt_producer_close( track_a );
1208                 if ( track_b != clip_b->producer )
1209                         mlt_producer_close( track_b );
1210
1211                 // Check if we have anything left on the right hand clip
1212                 if ( track_b == clip_b->producer )
1213                 {
1214                         clip_b->preservation_hack = 1;
1215                         mlt_playlist_remove( self, clip + 2 );
1216                 }
1217                 else if ( clip_b->frame_out - clip_b->frame_in > length )
1218                 {
1219                         mlt_playlist_resize_clip( self, clip + 2, clip_b->frame_in + length, clip_b->frame_out );
1220                         mlt_properties_set_data( MLT_PRODUCER_PROPERTIES( clip_b->producer ), "mix_in", tractor, 0, NULL, NULL );
1221                         mlt_properties_set_data( MLT_TRACTOR_PROPERTIES( tractor ), "mix_out", clip_b->producer, 0, NULL, NULL );
1222                 }
1223                 else
1224                 {
1225                         mlt_producer_clear( clip_b->producer );
1226                         mlt_playlist_remove( self, clip + 2 );
1227                 }
1228
1229                 // Check if we have anything left on the left hand clip
1230                 if ( track_a == clip_a->producer )
1231                 {
1232                         clip_a->preservation_hack = 1;
1233                         mlt_playlist_remove( self, clip );
1234                 }
1235                 else if ( clip_a->frame_out - clip_a->frame_in > length )
1236                 {
1237                         mlt_playlist_resize_clip( self, clip, clip_a->frame_in, clip_a->frame_out - length );
1238                         mlt_properties_set_data( MLT_PRODUCER_PROPERTIES( clip_a->producer ), "mix_out", tractor, 0, NULL, NULL );
1239                         mlt_properties_set_data( MLT_TRACTOR_PROPERTIES( tractor ), "mix_in", clip_a->producer, 0, NULL, NULL );
1240                 }
1241                 else
1242                 {
1243                         mlt_producer_clear( clip_a->producer );
1244                         mlt_playlist_remove( self, clip );
1245                 }
1246
1247                 // Unblock and force a fire off of change events to listeners
1248                 mlt_events_unblock( MLT_PLAYLIST_PROPERTIES( self ), self );
1249                 mlt_playlist_virtual_refresh( self );
1250                 mlt_tractor_close( tractor );
1251         }
1252         return error;
1253 }
1254
1255 /** Add a transition to an existing mix.
1256  *
1257  * \public \memberof mlt_playlist_s
1258  * \param self a playlist
1259  * \param clip the index of the playlist entry
1260  * \param transition a transition
1261  * \return true if there was an error
1262  */
1263
1264 int mlt_playlist_mix_add( mlt_playlist self, int clip, mlt_transition transition )
1265 {
1266         mlt_producer producer = mlt_producer_cut_parent( mlt_playlist_get_clip( self, clip ) );
1267         mlt_properties properties = producer != NULL ? MLT_PRODUCER_PROPERTIES( producer ) : NULL;
1268         mlt_tractor tractor = properties != NULL ? mlt_properties_get_data( properties, "mlt_mix", NULL ) : NULL;
1269         int error = transition == NULL || tractor == NULL;
1270         if ( error == 0 )
1271         {
1272                 mlt_field field = mlt_tractor_field( tractor );
1273                 mlt_field_plant_transition( field, transition, 0, 1 );
1274                 mlt_transition_set_in_and_out( transition, 0, self->list[ clip ]->frame_count - 1 );
1275         }
1276         return error;
1277 }
1278
1279 /** Return the clip at the clip index.
1280  *
1281  * \public \memberof mlt_playlist_s
1282  * \param self a playlist
1283  * \param clip the index of a playlist entry
1284  * \return a producer or NULL if there was an error
1285  */
1286
1287 mlt_producer mlt_playlist_get_clip( mlt_playlist self, int clip )
1288 {
1289         if ( clip >= 0 && clip < self->count )
1290                 return self->list[ clip ]->producer;
1291         return NULL;
1292 }
1293
1294 /** Return the clip at the specified position.
1295  *
1296  * \public \memberof mlt_playlist_s
1297  * \param self a playlist
1298  * \param position a time relative to the beginning of the playlist
1299  * \return a producer or NULL if not found
1300  */
1301
1302 mlt_producer mlt_playlist_get_clip_at( mlt_playlist self, mlt_position position )
1303 {
1304         int index = 0, total = 0;
1305         return mlt_playlist_locate( self, &position, &index, &total );
1306 }
1307
1308 /** Return the clip index of the specified position.
1309  *
1310  * \public \memberof mlt_playlist_s
1311  * \param self a playlist
1312  * \param position a time relative to the beginning of the playlist
1313  * \return the index of the playlist entry
1314  */
1315
1316 int mlt_playlist_get_clip_index_at( mlt_playlist self, mlt_position position )
1317 {
1318         int index = 0, total = 0;
1319         mlt_playlist_locate( self, &position, &index, &total );
1320         return index;
1321 }
1322
1323 /** Determine if the clip is a mix.
1324  *
1325  * \public \memberof mlt_playlist_s
1326  * \param self a playlist
1327  * \param clip the index of the playlist entry
1328  * \return true if the producer is a mix
1329  */
1330
1331 int mlt_playlist_clip_is_mix( mlt_playlist self, int clip )
1332 {
1333         mlt_producer producer = mlt_producer_cut_parent( mlt_playlist_get_clip( self, clip ) );
1334         mlt_properties properties = producer != NULL ? MLT_PRODUCER_PROPERTIES( producer ) : NULL;
1335         mlt_tractor tractor = properties != NULL ? mlt_properties_get_data( properties, "mlt_mix", NULL ) : NULL;
1336         return tractor != NULL;
1337 }
1338
1339 /** Remove a mixed clip - ensure that the cuts included in the mix find their way
1340  * back correctly on to the playlist.
1341  *
1342  * \private \memberof mlt_playlist_s
1343  * \param self a playlist
1344  * \param clip the index of the playlist entry
1345  * \return true if there was an error
1346  */
1347
1348 static int mlt_playlist_unmix( mlt_playlist self, int clip )
1349 {
1350         int error = ( clip < 0 || clip >= self->count );
1351
1352         // Ensure that the clip request is actually a mix
1353         if ( error == 0 )
1354         {
1355                 mlt_producer producer = mlt_producer_cut_parent( self->list[ clip ]->producer );
1356                 mlt_properties properties = MLT_PRODUCER_PROPERTIES( producer );
1357                 error = mlt_properties_get_data( properties, "mlt_mix", NULL ) == NULL ||
1358                             self->list[ clip ]->preservation_hack;
1359         }
1360
1361         if ( error == 0 )
1362         {
1363                 playlist_entry *mix = self->list[ clip ];
1364                 mlt_tractor tractor = ( mlt_tractor )mlt_producer_cut_parent( mix->producer );
1365                 mlt_properties properties = MLT_TRACTOR_PROPERTIES( tractor );
1366                 mlt_producer clip_a = mlt_properties_get_data( properties, "mix_in", NULL );
1367                 mlt_producer clip_b = mlt_properties_get_data( properties, "mix_out", NULL );
1368                 int length = mlt_producer_get_playtime( MLT_TRACTOR_PRODUCER( tractor ) );
1369                 mlt_events_block( MLT_PLAYLIST_PROPERTIES( self ), self );
1370
1371                 if ( clip_a != NULL )
1372                 {
1373                         mlt_producer_set_in_and_out( clip_a, mlt_producer_get_in( clip_a ), mlt_producer_get_out( clip_a ) + length );
1374                 }
1375                 else
1376                 {
1377                         mlt_producer cut = mlt_tractor_get_track( tractor, 0 );
1378                         mlt_playlist_insert( self, cut, clip, -1, -1 );
1379                         clip ++;
1380                 }
1381
1382                 if ( clip_b != NULL )
1383                 {
1384                         mlt_producer_set_in_and_out( clip_b, mlt_producer_get_in( clip_b ) - length, mlt_producer_get_out( clip_b ) );
1385                 }
1386                 else
1387                 {
1388                         mlt_producer cut = mlt_tractor_get_track( tractor, 1 );
1389                         mlt_playlist_insert( self, cut, clip + 1, -1, -1 );
1390                 }
1391
1392                 mlt_properties_set_data( properties, "mlt_mix", NULL, 0, NULL, NULL );
1393                 mlt_playlist_remove( self, clip );
1394                 mlt_events_unblock( MLT_PLAYLIST_PROPERTIES( self ), self );
1395                 mlt_playlist_virtual_refresh( self );
1396         }
1397         return error;
1398 }
1399
1400 /** Resize a mix clip.
1401  *
1402  * \private \memberof mlt_playlist_s
1403  * \param self a playlist
1404  * \param clip the index of the playlist entry
1405  * \param in the new starting point
1406  * \param out the new ending point
1407  * \return true if there was an error
1408  */
1409
1410 static int mlt_playlist_resize_mix( mlt_playlist self, int clip, int in, int out )
1411 {
1412         int error = ( clip < 0 || clip >= self->count );
1413
1414         // Ensure that the clip request is actually a mix
1415         if ( error == 0 )
1416         {
1417                 mlt_producer producer = mlt_producer_cut_parent( self->list[ clip ]->producer );
1418                 mlt_properties properties = MLT_PRODUCER_PROPERTIES( producer );
1419                 error = mlt_properties_get_data( properties, "mlt_mix", NULL ) == NULL;
1420         }
1421
1422         if ( error == 0 )
1423         {
1424                 playlist_entry *mix = self->list[ clip ];
1425                 mlt_tractor tractor = ( mlt_tractor )mlt_producer_cut_parent( mix->producer );
1426                 mlt_properties properties = MLT_TRACTOR_PROPERTIES( tractor );
1427                 mlt_producer clip_a = mlt_properties_get_data( properties, "mix_in", NULL );
1428                 mlt_producer clip_b = mlt_properties_get_data( properties, "mix_out", NULL );
1429                 mlt_producer track_a = mlt_tractor_get_track( tractor, 0 );
1430                 mlt_producer track_b = mlt_tractor_get_track( tractor, 1 );
1431                 int length = out - in + 1;
1432                 int length_diff = length - mlt_producer_get_playtime( MLT_TRACTOR_PRODUCER( tractor ) );
1433                 mlt_events_block( MLT_PLAYLIST_PROPERTIES( self ), self );
1434
1435                 if ( clip_a != NULL )
1436                         mlt_producer_set_in_and_out( clip_a, mlt_producer_get_in( clip_a ), mlt_producer_get_out( clip_a ) - length_diff );
1437
1438                 if ( clip_b != NULL )
1439                         mlt_producer_set_in_and_out( clip_b, mlt_producer_get_in( clip_b ) + length_diff, mlt_producer_get_out( clip_b ) );
1440
1441                 mlt_producer_set_in_and_out( track_a, mlt_producer_get_in( track_a ) - length_diff, mlt_producer_get_out( track_a ) );
1442                 mlt_producer_set_in_and_out( track_b, mlt_producer_get_in( track_b ), mlt_producer_get_out( track_b ) + length_diff );
1443                 mlt_producer_set_in_and_out( MLT_MULTITRACK_PRODUCER( mlt_tractor_multitrack( tractor ) ), in, out );
1444                 mlt_producer_set_in_and_out( MLT_TRACTOR_PRODUCER( tractor ), in, out );
1445                 mlt_properties_set_position( MLT_PRODUCER_PROPERTIES( mix->producer ), "length", out - in + 1 );
1446                 mlt_producer_set_in_and_out( mix->producer, in, out );
1447
1448                 mlt_events_unblock( MLT_PLAYLIST_PROPERTIES( self ), self );
1449                 mlt_playlist_virtual_refresh( self );
1450         }
1451         return error;
1452 }
1453
1454 /** Consolidate adjacent blank producers.
1455  *
1456  * \public \memberof mlt_playlist_s
1457  * \param self a playlist
1458  * \param keep_length set false to remove the last entry if it is blank
1459  */
1460
1461 void mlt_playlist_consolidate_blanks( mlt_playlist self, int keep_length )
1462 {
1463         if ( self != NULL )
1464         {
1465                 int i = 0;
1466                 mlt_properties properties = MLT_PLAYLIST_PROPERTIES( self );
1467
1468                 mlt_events_block( properties, properties );
1469                 for ( i = 1; i < self->count; i ++ )
1470                 {
1471                         playlist_entry *left = self->list[ i - 1 ];
1472                         playlist_entry *right = self->list[ i ];
1473
1474                         if ( mlt_producer_is_blank( left->producer ) && mlt_producer_is_blank( right->producer ) )
1475                         {
1476                                 mlt_playlist_resize_clip( self, i - 1, 0, left->frame_count + right->frame_count - 1 );
1477                                 mlt_playlist_remove( self, i -- );
1478                         }
1479                 }
1480
1481                 if ( !keep_length && self->count > 0 )
1482                 {
1483                         playlist_entry *last = self->list[ self->count - 1 ];
1484                         if ( mlt_producer_is_blank( last->producer ) )
1485                                 mlt_playlist_remove( self, self->count - 1 );
1486                 }
1487
1488                 mlt_events_unblock( properties, properties );
1489                 mlt_playlist_virtual_refresh( self );
1490         }
1491 }
1492
1493 /** Determine if the specified clip index is a blank.
1494  *
1495  * \public \memberof mlt_playlist_s
1496  * \param self a playlist
1497  * \param clip the index of the playlist entry
1498  * \return true if there was an error
1499  */
1500
1501 int mlt_playlist_is_blank( mlt_playlist self, int clip )
1502 {
1503         return self == NULL || mlt_producer_is_blank( mlt_playlist_get_clip( self, clip ) );
1504 }
1505
1506 /** Determine if the specified position is a blank.
1507  *
1508  * \public \memberof mlt_playlist_s
1509  * \param self a playlist
1510  * \param position a time relative to the start or end (negative) of the playlist
1511  * \return true if there was an error
1512  */
1513
1514 int mlt_playlist_is_blank_at( mlt_playlist self, mlt_position position )
1515 {
1516         return self == NULL || mlt_producer_is_blank( mlt_playlist_get_clip_at( self, position ) );
1517 }
1518
1519 /** Replace the specified clip with a blank and return the clip.
1520  *
1521  * \public \memberof mlt_playlist_s
1522  * \param self a playlist
1523  * \param clip the index of the playlist entry
1524  * \return a producer or NULL if there was an error
1525  */
1526
1527 mlt_producer mlt_playlist_replace_with_blank( mlt_playlist self, int clip )
1528 {
1529         mlt_producer producer = NULL;
1530         if ( !mlt_playlist_is_blank( self, clip ) )
1531         {
1532                 playlist_entry *entry = self->list[ clip ];
1533                 int in = entry->frame_in;
1534                 int out = entry->frame_out;
1535                 mlt_properties properties = MLT_PLAYLIST_PROPERTIES( self );
1536                 producer = entry->producer;
1537                 mlt_properties_inc_ref( MLT_PRODUCER_PROPERTIES( producer ) );
1538                 mlt_events_block( properties, properties );
1539                 mlt_playlist_remove( self, clip );
1540                 mlt_playlist_blank( self, out - in );
1541                 mlt_playlist_move( self, self->count - 1, clip );
1542                 mlt_events_unblock( properties, properties );
1543                 mlt_playlist_virtual_refresh( self );
1544                 mlt_producer_set_in_and_out( producer, in, out );
1545         }
1546         return producer;
1547 }
1548
1549 /** Insert blank space.
1550  *
1551  * \public \memberof mlt_playlist_s
1552  * \param self a playlist
1553  * \param clip the index of the new blank section
1554  * \param length the ending time of the new blank section (duration - 1)
1555  */
1556
1557 void mlt_playlist_insert_blank( mlt_playlist self, int clip, int length )
1558 {
1559         if ( self != NULL && length >= 0 )
1560         {
1561                 mlt_properties properties = MLT_PLAYLIST_PROPERTIES( self );
1562                 mlt_events_block( properties, properties );
1563                 mlt_playlist_blank( self, length );
1564                 mlt_playlist_move( self, self->count - 1, clip );
1565                 mlt_events_unblock( properties, properties );
1566                 mlt_playlist_virtual_refresh( self );
1567         }
1568 }
1569
1570 /** Resize a blank entry.
1571  *
1572  * \public \memberof mlt_playlist_s
1573  * \param self a playlist
1574  * \param position the time at which the blank entry exists relative to the start or end (negative) of the playlist.
1575  * \param length the additional amount of blank frames to add
1576  * \param find true to fist locate the blank after the clip at position
1577  */
1578 void mlt_playlist_pad_blanks( mlt_playlist self, mlt_position position, int length, int find )
1579 {
1580         if ( self != NULL && length != 0 )
1581         {
1582                 int clip = mlt_playlist_get_clip_index_at( self, position );
1583                 mlt_properties properties = MLT_PLAYLIST_PROPERTIES( self );
1584                 mlt_events_block( properties, properties );
1585                 if ( find && clip < self->count && !mlt_playlist_is_blank( self, clip ) )
1586                         clip ++;
1587                 if ( clip < self->count && mlt_playlist_is_blank( self, clip ) )
1588                 {
1589                         mlt_playlist_clip_info info;
1590                         mlt_playlist_get_clip_info( self, &info, clip );
1591                         if ( info.frame_out + length > info.frame_in )
1592                                 mlt_playlist_resize_clip( self, clip, info.frame_in, info.frame_out + length );
1593                         else
1594                                 mlt_playlist_remove( self, clip );
1595                 }
1596                 else if ( find && clip < self->count && length > 0  )
1597                 {
1598                         mlt_playlist_insert_blank( self, clip, length );
1599                 }
1600                 mlt_events_unblock( properties, properties );
1601                 mlt_playlist_virtual_refresh( self );
1602         }
1603 }
1604
1605 /** Insert a clip at a specific time.
1606  *
1607  * \public \memberof mlt_playlist_s
1608  * \param self a playlist
1609  * \param position the time at which to insert
1610  * \param producer the producer to insert
1611  * \param mode true if you want to overwrite any blank section
1612  * \return true if there was an error
1613  */
1614
1615 int mlt_playlist_insert_at( mlt_playlist self, mlt_position position, mlt_producer producer, int mode )
1616 {
1617         int ret = self == NULL || position < 0 || producer == NULL;
1618         if ( ret == 0 )
1619         {
1620                 mlt_properties properties = MLT_PLAYLIST_PROPERTIES( self );
1621                 int length = mlt_producer_get_playtime( producer );
1622                 int clip = mlt_playlist_get_clip_index_at( self, position );
1623                 mlt_playlist_clip_info info;
1624                 mlt_playlist_get_clip_info( self, &info, clip );
1625                 mlt_events_block( properties, self );
1626                 if ( clip < self->count && mlt_playlist_is_blank( self, clip ) )
1627                 {
1628                         // Split and move to new clip if need be
1629                         if ( position != info.start && mlt_playlist_split( self, clip, position - info.start - 1 ) == 0 )
1630                                 mlt_playlist_get_clip_info( self, &info, ++ clip );
1631
1632                         // Split again if need be
1633                         if ( length < info.frame_count )
1634                                 mlt_playlist_split( self, clip, length - 1 );
1635
1636                         // Remove
1637                         mlt_playlist_remove( self, clip );
1638
1639                         // Insert
1640                         mlt_playlist_insert( self, producer, clip, -1, -1 );
1641                         ret = clip;
1642                 }
1643                 else if ( clip < self->count )
1644                 {
1645                         if ( position > info.start + info.frame_count / 2 )
1646                                 clip ++;
1647                         if ( mode == 1 && clip < self->count && mlt_playlist_is_blank( self, clip ) )
1648                         {
1649                                 mlt_playlist_get_clip_info( self, &info, clip );
1650                                 if ( length < info.frame_count )
1651                                         mlt_playlist_split( self, clip, length );
1652                                 mlt_playlist_remove( self, clip );
1653                         }
1654                         mlt_playlist_insert( self, producer, clip, -1, -1 );
1655                         ret = clip;
1656                 }
1657                 else
1658                 {
1659                         if ( mode == 1 ) {
1660                                 if ( position == info.start )
1661                                         mlt_playlist_remove( self, clip );
1662                                 else
1663                                         mlt_playlist_blank( self, position - mlt_properties_get_int( properties, "length" ) - 1 );
1664                         }
1665                         mlt_playlist_append( self, producer );
1666                         ret = self->count - 1;
1667                 }
1668                 mlt_events_unblock( properties, self );
1669                 mlt_playlist_virtual_refresh( self );
1670         }
1671         else
1672         {
1673                 ret = -1;
1674         }
1675         return ret;
1676 }
1677
1678 /** Get the time at which the clip starts relative to the playlist.
1679  *
1680  * \public \memberof mlt_playlist_s
1681  * \param self a playlist
1682  * \param clip the index of the playlist entry
1683  * \return the starting time
1684  */
1685
1686 int mlt_playlist_clip_start( mlt_playlist self, int clip )
1687 {
1688         mlt_playlist_clip_info info;
1689         if ( mlt_playlist_get_clip_info( self, &info, clip ) == 0 )
1690                 return info.start;
1691         return clip < 0 ? 0 : mlt_producer_get_playtime( MLT_PLAYLIST_PRODUCER( self ) );
1692 }
1693
1694 /** Get the playable duration of the clip.
1695  *
1696  * \public \memberof mlt_playlist_s
1697  * \param self a playlist
1698  * \param clip the index of the playlist entry
1699  * \return the duration of the playlist entry
1700  */
1701
1702 int mlt_playlist_clip_length( mlt_playlist self, int clip )
1703 {
1704         mlt_playlist_clip_info info;
1705         if ( mlt_playlist_get_clip_info( self, &info, clip ) == 0 )
1706                 return info.frame_count;
1707         return 0;
1708 }
1709
1710 /** Get the duration of a blank space.
1711  *
1712  * \public \memberof mlt_playlist_s
1713  * \param self a playlist
1714  * \param clip the index of the playlist entry
1715  * \param bounded the maximum number of blank entries or 0 for all
1716  * \return the duration of a blank section
1717  */
1718
1719 int mlt_playlist_blanks_from( mlt_playlist self, int clip, int bounded )
1720 {
1721         int count = 0;
1722         mlt_playlist_clip_info info;
1723         if ( self != NULL && clip < self->count )
1724         {
1725                 mlt_playlist_get_clip_info( self, &info, clip );
1726                 if ( mlt_playlist_is_blank( self, clip ) )
1727                         count += info.frame_count;
1728                 if ( bounded == 0 )
1729                         bounded = self->count;
1730                 for ( clip ++; clip < self->count && bounded >= 0; clip ++ )
1731                 {
1732                         mlt_playlist_get_clip_info( self, &info, clip );
1733                         if ( mlt_playlist_is_blank( self, clip ) )
1734                                 count += info.frame_count;
1735                         else
1736                                 bounded --;
1737                 }
1738         }
1739         return count;
1740 }
1741
1742 /** Remove a portion of the playlist by time.
1743  *
1744  * \public \memberof mlt_playlist_s
1745  * \param self a playlist
1746  * \param position the starting time
1747  * \param length the duration of time to remove
1748  * \return the new entry index at the position
1749  */
1750
1751 int mlt_playlist_remove_region( mlt_playlist self, mlt_position position, int length )
1752 {
1753         int index = mlt_playlist_get_clip_index_at( self, position );
1754         if ( index >= 0 && index < self->count )
1755         {
1756                 mlt_properties properties = MLT_PLAYLIST_PROPERTIES( self );
1757                 int clip_start = mlt_playlist_clip_start( self, index );
1758                 int list_length = mlt_producer_get_playtime( MLT_PLAYLIST_PRODUCER( self ) );
1759                 mlt_events_block( properties, self );
1760
1761                 if ( position + length > list_length )
1762                         length -= ( position + length - list_length );
1763
1764                 if ( clip_start < position )
1765                 {
1766                         mlt_playlist_split( self, index ++, position - clip_start - 1 );
1767                 }
1768
1769                 while( length > 0 )
1770                 {
1771                         if ( mlt_playlist_clip_length( self, index ) > length )
1772                                 mlt_playlist_split( self, index, length - 1 );
1773                         length -= mlt_playlist_clip_length( self, index );
1774                         mlt_playlist_remove( self, index );
1775                 }
1776
1777                 mlt_playlist_consolidate_blanks( self, 0 );
1778                 mlt_events_unblock( properties, self );
1779                 mlt_playlist_virtual_refresh( self );
1780
1781                 // Just to be sure, we'll get the clip index again...
1782                 index = mlt_playlist_get_clip_index_at( self, position );
1783         }
1784         return index;
1785 }
1786
1787 /** Not implemented
1788  *
1789  * \deprecated not implemented
1790  * \public \memberof mlt_playlist_s
1791  * \param self
1792  * \param position
1793  * \param length
1794  * \param new_position
1795  * \return
1796  */
1797
1798 int mlt_playlist_move_region( mlt_playlist self, mlt_position position, int length, int new_position )
1799 {
1800         if ( self != NULL )
1801         {
1802         }
1803         return 0;
1804 }
1805
1806 /** Get the current frame.
1807  *
1808  * The implementation of the get_frame virtual function.
1809  * \private \memberof mlt_playlist_s
1810  * \param producer a producer
1811  * \param frame a frame by reference
1812  * \param index the time at which to get the frame
1813  * \return false
1814  */
1815
1816 static int producer_get_frame( mlt_producer producer, mlt_frame_ptr frame, int index )
1817 {
1818         // Check that we have a producer
1819         if ( producer == NULL )
1820         {
1821                 *frame = NULL;
1822                 return -1;
1823         }
1824
1825         // Get this mlt_playlist
1826         mlt_playlist self = producer->child;
1827
1828         // Need to ensure the frame is deinterlaced when repeating 1 frame
1829         int progressive = 0;
1830
1831         // Get the real producer
1832         mlt_service real = mlt_playlist_virtual_seek( self, &progressive );
1833
1834         // Check that we have a producer
1835         if ( real == NULL )
1836         {
1837                 *frame = mlt_frame_init( MLT_PRODUCER_SERVICE( producer ) );
1838                 return 0;
1839         }
1840
1841         // Get the frame
1842         if ( !mlt_properties_get_int( MLT_SERVICE_PROPERTIES( real ), "meta.fx_cut" ) )
1843         {
1844                 mlt_service_get_frame( real, frame, index );
1845         }
1846         else
1847         {
1848                 mlt_producer parent = mlt_producer_cut_parent( ( mlt_producer )real );
1849                 *frame = mlt_frame_init( MLT_PRODUCER_SERVICE( parent ) );
1850                 mlt_properties_set_int( MLT_FRAME_PROPERTIES( *frame ), "fx_cut", 1 );
1851                 mlt_frame_push_service( *frame, NULL );
1852                 mlt_frame_push_audio( *frame, NULL );
1853                 mlt_service_apply_filters( MLT_PRODUCER_SERVICE( parent ), *frame, 0 );
1854                 mlt_service_apply_filters( real, *frame, 0 );
1855                 mlt_deque_pop_front( MLT_FRAME_IMAGE_STACK( *frame ) );
1856                 mlt_deque_pop_front( MLT_FRAME_AUDIO_STACK( *frame ) );
1857         }
1858
1859         // Check if we're at the end of the clip
1860         mlt_properties properties = MLT_FRAME_PROPERTIES( *frame );
1861         if ( mlt_properties_get_int( properties, "end_of_clip" ) )
1862                 mlt_playlist_virtual_set_out( self );
1863
1864         // Set the consumer progressive property
1865         if ( progressive )
1866         {
1867                 mlt_properties_set_int( properties, "consumer_deinterlace", progressive );
1868                 mlt_properties_set_int( properties, "test_audio", 1 );
1869         }
1870
1871         // Check for notifier and call with appropriate argument
1872         mlt_properties playlist_properties = MLT_PRODUCER_PROPERTIES( producer );
1873         void ( *notifier )( void * ) = mlt_properties_get_data( playlist_properties, "notifier", NULL );
1874         if ( notifier != NULL )
1875         {
1876                 void *argument = mlt_properties_get_data( playlist_properties, "notifier_arg", NULL );
1877                 notifier( argument );
1878         }
1879
1880         // Update position on the frame we're creating
1881         mlt_frame_set_position( *frame, mlt_producer_frame( producer ) );
1882
1883         // Position ourselves on the next frame
1884         mlt_producer_prepare_next( producer );
1885
1886         return 0;
1887 }
1888
1889 /** Close the playlist.
1890  *
1891  * \public \memberof mlt_playlist_s
1892  * \param self a playlist
1893  */
1894
1895 void mlt_playlist_close( mlt_playlist self )
1896 {
1897         if ( self != NULL && mlt_properties_dec_ref( MLT_PLAYLIST_PROPERTIES( self ) ) <= 0 )
1898         {
1899                 int i = 0;
1900                 self->parent.close = NULL;
1901                 for ( i = 0; i < self->count; i ++ )
1902                 {
1903                         mlt_event_close( self->list[ i ]->event );
1904                         mlt_producer_close( self->list[ i ]->producer );
1905                         free( self->list[ i ] );
1906                 }
1907                 mlt_producer_close( &self->blank );
1908                 mlt_producer_close( &self->parent );
1909                 free( self->list );
1910                 free( self );
1911         }
1912 }