]> git.sesse.net Git - mlt/blob - src/framework/mlt_playlist.c
b4cc7534222654585ac763f49b0a6529141cb07d
[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
1173                 mlt_service_set_profile( MLT_TRACTOR_SERVICE( tractor ),
1174                         mlt_service_profile( MLT_PLAYLIST_SERVICE( self ) ) );
1175                 mlt_properties_set_lcnumeric( MLT_TRACTOR_PROPERTIES( tractor ),
1176                         mlt_properties_get_lcnumeric( MLT_PLAYLIST_PROPERTIES( self ) ) );
1177                 mlt_events_block( MLT_PLAYLIST_PROPERTIES( self ), self );
1178
1179                 // Check length is valid for both clips and resize if necessary.
1180                 int max_size = clip_a->frame_count > clip_b->frame_count ? clip_a->frame_count : clip_b->frame_count;
1181                 length = length > max_size ? max_size : length;
1182
1183                 // Create the a and b tracks/cuts if necessary - note that no cuts are required if the length matches
1184                 if ( length != clip_a->frame_count )
1185                         track_a = mlt_producer_cut( clip_a->producer, clip_a->frame_out - length + 1, clip_a->frame_out );
1186                 else
1187                         track_a = clip_a->producer;
1188
1189                 if ( length != clip_b->frame_count )
1190                         track_b = mlt_producer_cut( clip_b->producer, clip_b->frame_in, clip_b->frame_in + length - 1 );
1191                 else
1192                         track_b = clip_b->producer;
1193
1194                 // Set the tracks on the tractor
1195                 mlt_tractor_set_track( tractor, track_a, 0 );
1196                 mlt_tractor_set_track( tractor, track_b, 1 );
1197
1198                 // Insert the mix object into the playlist
1199                 mlt_playlist_insert( self, MLT_TRACTOR_PRODUCER( tractor ), clip + 1, -1, -1 );
1200                 mlt_properties_set_data( MLT_TRACTOR_PROPERTIES( tractor ), "mlt_mix", tractor, 0, NULL, NULL );
1201
1202                 // Attach the transition
1203                 if ( transition != NULL )
1204                 {
1205                         mlt_field field = mlt_tractor_field( tractor );
1206                         mlt_field_plant_transition( field, transition, 0, 1 );
1207                         mlt_transition_set_in_and_out( transition, 0, length - 1 );
1208                 }
1209
1210                 // Close our references to the tracks if we created new cuts above (the tracks can still be used here)
1211                 if ( track_a != clip_a->producer )
1212                         mlt_producer_close( track_a );
1213                 if ( track_b != clip_b->producer )
1214                         mlt_producer_close( track_b );
1215
1216                 // Check if we have anything left on the right hand clip
1217                 if ( track_b == clip_b->producer )
1218                 {
1219                         clip_b->preservation_hack = 1;
1220                         mlt_playlist_remove( self, clip + 2 );
1221                 }
1222                 else if ( clip_b->frame_out - clip_b->frame_in > length )
1223                 {
1224                         mlt_playlist_resize_clip( self, clip + 2, clip_b->frame_in + length, clip_b->frame_out );
1225                         mlt_properties_set_data( MLT_PRODUCER_PROPERTIES( clip_b->producer ), "mix_in", tractor, 0, NULL, NULL );
1226                         mlt_properties_set_data( MLT_TRACTOR_PROPERTIES( tractor ), "mix_out", clip_b->producer, 0, NULL, NULL );
1227                 }
1228                 else
1229                 {
1230                         mlt_producer_clear( clip_b->producer );
1231                         mlt_playlist_remove( self, clip + 2 );
1232                 }
1233
1234                 // Check if we have anything left on the left hand clip
1235                 if ( track_a == clip_a->producer )
1236                 {
1237                         clip_a->preservation_hack = 1;
1238                         mlt_playlist_remove( self, clip );
1239                 }
1240                 else if ( clip_a->frame_out - clip_a->frame_in > length )
1241                 {
1242                         mlt_playlist_resize_clip( self, clip, clip_a->frame_in, clip_a->frame_out - length );
1243                         mlt_properties_set_data( MLT_PRODUCER_PROPERTIES( clip_a->producer ), "mix_out", tractor, 0, NULL, NULL );
1244                         mlt_properties_set_data( MLT_TRACTOR_PROPERTIES( tractor ), "mix_in", clip_a->producer, 0, NULL, NULL );
1245                 }
1246                 else
1247                 {
1248                         mlt_producer_clear( clip_a->producer );
1249                         mlt_playlist_remove( self, clip );
1250                 }
1251
1252                 // Unblock and force a fire off of change events to listeners
1253                 mlt_events_unblock( MLT_PLAYLIST_PROPERTIES( self ), self );
1254                 mlt_playlist_virtual_refresh( self );
1255                 mlt_tractor_close( tractor );
1256         }
1257         return error;
1258 }
1259
1260 /** Add a transition to an existing mix.
1261  *
1262  * \public \memberof mlt_playlist_s
1263  * \param self a playlist
1264  * \param clip the index of the playlist entry
1265  * \param transition a transition
1266  * \return true if there was an error
1267  */
1268
1269 int mlt_playlist_mix_add( mlt_playlist self, int clip, mlt_transition transition )
1270 {
1271         mlt_producer producer = mlt_producer_cut_parent( mlt_playlist_get_clip( self, clip ) );
1272         mlt_properties properties = producer != NULL ? MLT_PRODUCER_PROPERTIES( producer ) : NULL;
1273         mlt_tractor tractor = properties != NULL ? mlt_properties_get_data( properties, "mlt_mix", NULL ) : NULL;
1274         int error = transition == NULL || tractor == NULL;
1275         if ( error == 0 )
1276         {
1277                 mlt_field field = mlt_tractor_field( tractor );
1278                 mlt_field_plant_transition( field, transition, 0, 1 );
1279                 mlt_transition_set_in_and_out( transition, 0, self->list[ clip ]->frame_count - 1 );
1280         }
1281         return error;
1282 }
1283
1284 /** Return the clip at the clip index.
1285  *
1286  * \public \memberof mlt_playlist_s
1287  * \param self a playlist
1288  * \param clip the index of a playlist entry
1289  * \return a producer or NULL if there was an error
1290  */
1291
1292 mlt_producer mlt_playlist_get_clip( mlt_playlist self, int clip )
1293 {
1294         if ( clip >= 0 && clip < self->count )
1295                 return self->list[ clip ]->producer;
1296         return NULL;
1297 }
1298
1299 /** Return the clip at the specified position.
1300  *
1301  * \public \memberof mlt_playlist_s
1302  * \param self a playlist
1303  * \param position a time relative to the beginning of the playlist
1304  * \return a producer or NULL if not found
1305  */
1306
1307 mlt_producer mlt_playlist_get_clip_at( mlt_playlist self, mlt_position position )
1308 {
1309         int index = 0, total = 0;
1310         return mlt_playlist_locate( self, &position, &index, &total );
1311 }
1312
1313 /** Return the clip index of the specified position.
1314  *
1315  * \public \memberof mlt_playlist_s
1316  * \param self a playlist
1317  * \param position a time relative to the beginning of the playlist
1318  * \return the index of the playlist entry
1319  */
1320
1321 int mlt_playlist_get_clip_index_at( mlt_playlist self, mlt_position position )
1322 {
1323         int index = 0, total = 0;
1324         mlt_playlist_locate( self, &position, &index, &total );
1325         return index;
1326 }
1327
1328 /** Determine if the clip is a mix.
1329  *
1330  * \public \memberof mlt_playlist_s
1331  * \param self a playlist
1332  * \param clip the index of the playlist entry
1333  * \return true if the producer is a mix
1334  */
1335
1336 int mlt_playlist_clip_is_mix( mlt_playlist self, int clip )
1337 {
1338         mlt_producer producer = mlt_producer_cut_parent( mlt_playlist_get_clip( self, clip ) );
1339         mlt_properties properties = producer != NULL ? MLT_PRODUCER_PROPERTIES( producer ) : NULL;
1340         mlt_tractor tractor = properties != NULL ? mlt_properties_get_data( properties, "mlt_mix", NULL ) : NULL;
1341         return tractor != NULL;
1342 }
1343
1344 /** Remove a mixed clip - ensure that the cuts included in the mix find their way
1345  * back correctly on to the playlist.
1346  *
1347  * \private \memberof mlt_playlist_s
1348  * \param self a playlist
1349  * \param clip the index of the playlist entry
1350  * \return true if there was an error
1351  */
1352
1353 static int mlt_playlist_unmix( mlt_playlist self, int clip )
1354 {
1355         int error = ( clip < 0 || clip >= self->count );
1356
1357         // Ensure that the clip request is actually a mix
1358         if ( error == 0 )
1359         {
1360                 mlt_producer producer = mlt_producer_cut_parent( self->list[ clip ]->producer );
1361                 mlt_properties properties = MLT_PRODUCER_PROPERTIES( producer );
1362                 error = mlt_properties_get_data( properties, "mlt_mix", NULL ) == NULL ||
1363                             self->list[ clip ]->preservation_hack;
1364         }
1365
1366         if ( error == 0 )
1367         {
1368                 playlist_entry *mix = self->list[ clip ];
1369                 mlt_tractor tractor = ( mlt_tractor )mlt_producer_cut_parent( mix->producer );
1370                 mlt_properties properties = MLT_TRACTOR_PROPERTIES( tractor );
1371                 mlt_producer clip_a = mlt_properties_get_data( properties, "mix_in", NULL );
1372                 mlt_producer clip_b = mlt_properties_get_data( properties, "mix_out", NULL );
1373                 int length = mlt_producer_get_playtime( MLT_TRACTOR_PRODUCER( tractor ) );
1374                 mlt_events_block( MLT_PLAYLIST_PROPERTIES( self ), self );
1375
1376                 if ( clip_a != NULL )
1377                 {
1378                         mlt_producer_set_in_and_out( clip_a, mlt_producer_get_in( clip_a ), mlt_producer_get_out( clip_a ) + length );
1379                 }
1380                 else
1381                 {
1382                         mlt_producer cut = mlt_tractor_get_track( tractor, 0 );
1383                         mlt_playlist_insert( self, cut, clip, -1, -1 );
1384                         clip ++;
1385                 }
1386
1387                 if ( clip_b != NULL )
1388                 {
1389                         mlt_producer_set_in_and_out( clip_b, mlt_producer_get_in( clip_b ) - length, mlt_producer_get_out( clip_b ) );
1390                 }
1391                 else
1392                 {
1393                         mlt_producer cut = mlt_tractor_get_track( tractor, 1 );
1394                         mlt_playlist_insert( self, cut, clip + 1, -1, -1 );
1395                 }
1396
1397                 mlt_properties_set_data( properties, "mlt_mix", NULL, 0, NULL, NULL );
1398                 mlt_playlist_remove( self, clip );
1399                 mlt_events_unblock( MLT_PLAYLIST_PROPERTIES( self ), self );
1400                 mlt_playlist_virtual_refresh( self );
1401         }
1402         return error;
1403 }
1404
1405 /** Resize a mix clip.
1406  *
1407  * \private \memberof mlt_playlist_s
1408  * \param self a playlist
1409  * \param clip the index of the playlist entry
1410  * \param in the new starting point
1411  * \param out the new ending point
1412  * \return true if there was an error
1413  */
1414
1415 static int mlt_playlist_resize_mix( mlt_playlist self, int clip, int in, int out )
1416 {
1417         int error = ( clip < 0 || clip >= self->count );
1418
1419         // Ensure that the clip request is actually a mix
1420         if ( error == 0 )
1421         {
1422                 mlt_producer producer = mlt_producer_cut_parent( self->list[ clip ]->producer );
1423                 mlt_properties properties = MLT_PRODUCER_PROPERTIES( producer );
1424                 error = mlt_properties_get_data( properties, "mlt_mix", NULL ) == NULL;
1425         }
1426
1427         if ( error == 0 )
1428         {
1429                 playlist_entry *mix = self->list[ clip ];
1430                 mlt_tractor tractor = ( mlt_tractor )mlt_producer_cut_parent( mix->producer );
1431                 mlt_properties properties = MLT_TRACTOR_PROPERTIES( tractor );
1432                 mlt_producer clip_a = mlt_properties_get_data( properties, "mix_in", NULL );
1433                 mlt_producer clip_b = mlt_properties_get_data( properties, "mix_out", NULL );
1434                 mlt_producer track_a = mlt_tractor_get_track( tractor, 0 );
1435                 mlt_producer track_b = mlt_tractor_get_track( tractor, 1 );
1436                 int length = out - in + 1;
1437                 int length_diff = length - mlt_producer_get_playtime( MLT_TRACTOR_PRODUCER( tractor ) );
1438                 mlt_events_block( MLT_PLAYLIST_PROPERTIES( self ), self );
1439
1440                 if ( clip_a != NULL )
1441                         mlt_producer_set_in_and_out( clip_a, mlt_producer_get_in( clip_a ), mlt_producer_get_out( clip_a ) - length_diff );
1442
1443                 if ( clip_b != NULL )
1444                         mlt_producer_set_in_and_out( clip_b, mlt_producer_get_in( clip_b ) + length_diff, mlt_producer_get_out( clip_b ) );
1445
1446                 mlt_producer_set_in_and_out( track_a, mlt_producer_get_in( track_a ) - length_diff, mlt_producer_get_out( track_a ) );
1447                 mlt_producer_set_in_and_out( track_b, mlt_producer_get_in( track_b ), mlt_producer_get_out( track_b ) + length_diff );
1448                 mlt_producer_set_in_and_out( MLT_MULTITRACK_PRODUCER( mlt_tractor_multitrack( tractor ) ), in, out );
1449                 mlt_producer_set_in_and_out( MLT_TRACTOR_PRODUCER( tractor ), in, out );
1450                 mlt_properties_set_position( MLT_PRODUCER_PROPERTIES( mix->producer ), "length", out - in + 1 );
1451                 mlt_producer_set_in_and_out( mix->producer, in, out );
1452
1453                 mlt_events_unblock( MLT_PLAYLIST_PROPERTIES( self ), self );
1454                 mlt_playlist_virtual_refresh( self );
1455         }
1456         return error;
1457 }
1458
1459 /** Consolidate adjacent blank producers.
1460  *
1461  * \public \memberof mlt_playlist_s
1462  * \param self a playlist
1463  * \param keep_length set false to remove the last entry if it is blank
1464  */
1465
1466 void mlt_playlist_consolidate_blanks( mlt_playlist self, int keep_length )
1467 {
1468         if ( self != NULL )
1469         {
1470                 int i = 0;
1471                 mlt_properties properties = MLT_PLAYLIST_PROPERTIES( self );
1472
1473                 mlt_events_block( properties, properties );
1474                 for ( i = 1; i < self->count; i ++ )
1475                 {
1476                         playlist_entry *left = self->list[ i - 1 ];
1477                         playlist_entry *right = self->list[ i ];
1478
1479                         if ( mlt_producer_is_blank( left->producer ) && mlt_producer_is_blank( right->producer ) )
1480                         {
1481                                 mlt_playlist_resize_clip( self, i - 1, 0, left->frame_count + right->frame_count - 1 );
1482                                 mlt_playlist_remove( self, i -- );
1483                         }
1484                 }
1485
1486                 if ( !keep_length && self->count > 0 )
1487                 {
1488                         playlist_entry *last = self->list[ self->count - 1 ];
1489                         if ( mlt_producer_is_blank( last->producer ) )
1490                                 mlt_playlist_remove( self, self->count - 1 );
1491                 }
1492
1493                 mlt_events_unblock( properties, properties );
1494                 mlt_playlist_virtual_refresh( self );
1495         }
1496 }
1497
1498 /** Determine if the specified clip index is a blank.
1499  *
1500  * \public \memberof mlt_playlist_s
1501  * \param self a playlist
1502  * \param clip the index of the playlist entry
1503  * \return true if \p clip is a "blank" producer
1504  */
1505
1506 int mlt_playlist_is_blank( mlt_playlist self, int clip )
1507 {
1508         return self == NULL || mlt_producer_is_blank( mlt_playlist_get_clip( self, clip ) );
1509 }
1510
1511 /** Determine if the specified position is a blank.
1512  *
1513  * \public \memberof mlt_playlist_s
1514  * \param self a playlist
1515  * \param position a time relative to the start or end (negative) of the playlist
1516  * \return true if there was an error
1517  */
1518
1519 int mlt_playlist_is_blank_at( mlt_playlist self, mlt_position position )
1520 {
1521         return self == NULL || mlt_producer_is_blank( mlt_playlist_get_clip_at( self, position ) );
1522 }
1523
1524 /** Replace the specified clip with a blank and return the clip.
1525  *
1526  * \public \memberof mlt_playlist_s
1527  * \param self a playlist
1528  * \param clip the index of the playlist entry
1529  * \return a producer or NULL if there was an error
1530  */
1531
1532 mlt_producer mlt_playlist_replace_with_blank( mlt_playlist self, int clip )
1533 {
1534         mlt_producer producer = NULL;
1535         if ( !mlt_playlist_is_blank( self, clip ) )
1536         {
1537                 playlist_entry *entry = self->list[ clip ];
1538                 int in = entry->frame_in;
1539                 int out = entry->frame_out;
1540                 mlt_properties properties = MLT_PLAYLIST_PROPERTIES( self );
1541                 producer = entry->producer;
1542                 mlt_properties_inc_ref( MLT_PRODUCER_PROPERTIES( producer ) );
1543                 mlt_events_block( properties, properties );
1544                 mlt_playlist_remove( self, clip );
1545                 mlt_playlist_blank( self, out - in );
1546                 mlt_playlist_move( self, self->count - 1, clip );
1547                 mlt_events_unblock( properties, properties );
1548                 mlt_playlist_virtual_refresh( self );
1549                 mlt_producer_set_in_and_out( producer, in, out );
1550         }
1551         return producer;
1552 }
1553
1554 /** Insert blank space.
1555  *
1556  * \public \memberof mlt_playlist_s
1557  * \param self a playlist
1558  * \param clip the index of the new blank section
1559  * \param out the ending time of the new blank section (duration - 1)
1560  */
1561
1562 void mlt_playlist_insert_blank( mlt_playlist self, int clip, int out )
1563 {
1564         if ( self != NULL && out >= 0 )
1565         {
1566                 mlt_properties properties = MLT_PLAYLIST_PROPERTIES( self );
1567                 mlt_events_block( properties, properties );
1568                 mlt_playlist_blank( self, out );
1569                 mlt_playlist_move( self, self->count - 1, clip );
1570                 mlt_events_unblock( properties, properties );
1571                 mlt_playlist_virtual_refresh( self );
1572         }
1573 }
1574
1575 /** Resize a blank entry.
1576  *
1577  * \public \memberof mlt_playlist_s
1578  * \param self a playlist
1579  * \param position the time at which the blank entry exists relative to the start or end (negative) of the playlist.
1580  * \param length the additional amount of blank frames to add
1581  * \param find true to fist locate the blank after the clip at position
1582  */
1583 void mlt_playlist_pad_blanks( mlt_playlist self, mlt_position position, int length, int find )
1584 {
1585         if ( self != NULL && length != 0 )
1586         {
1587                 int clip = mlt_playlist_get_clip_index_at( self, position );
1588                 mlt_properties properties = MLT_PLAYLIST_PROPERTIES( self );
1589                 mlt_events_block( properties, properties );
1590                 if ( find && clip < self->count && !mlt_playlist_is_blank( self, clip ) )
1591                         clip ++;
1592                 if ( clip < self->count && mlt_playlist_is_blank( self, clip ) )
1593                 {
1594                         mlt_playlist_clip_info info;
1595                         mlt_playlist_get_clip_info( self, &info, clip );
1596                         if ( info.frame_out + length > info.frame_in )
1597                                 mlt_playlist_resize_clip( self, clip, info.frame_in, info.frame_out + length );
1598                         else
1599                                 mlt_playlist_remove( self, clip );
1600                 }
1601                 else if ( find && clip < self->count && length > 0  )
1602                 {
1603                         mlt_playlist_insert_blank( self, clip, length );
1604                 }
1605                 mlt_events_unblock( properties, properties );
1606                 mlt_playlist_virtual_refresh( self );
1607         }
1608 }
1609
1610 /** Insert a clip at a specific time.
1611  *
1612  * \public \memberof mlt_playlist_s
1613  * \param self a playlist
1614  * \param position the time at which to insert
1615  * \param producer the producer to insert
1616  * \param mode true if you want to overwrite any blank section
1617  * \return true if there was an error
1618  */
1619
1620 int mlt_playlist_insert_at( mlt_playlist self, mlt_position position, mlt_producer producer, int mode )
1621 {
1622         int ret = self == NULL || position < 0 || producer == NULL;
1623         if ( ret == 0 )
1624         {
1625                 mlt_properties properties = MLT_PLAYLIST_PROPERTIES( self );
1626                 int length = mlt_producer_get_playtime( producer );
1627                 int clip = mlt_playlist_get_clip_index_at( self, position );
1628                 mlt_playlist_clip_info info;
1629                 mlt_playlist_get_clip_info( self, &info, clip );
1630                 mlt_events_block( properties, self );
1631                 if ( clip < self->count && mlt_playlist_is_blank( self, clip ) )
1632                 {
1633                         // Split and move to new clip if need be
1634                         if ( position != info.start && mlt_playlist_split( self, clip, position - info.start - 1 ) == 0 )
1635                                 mlt_playlist_get_clip_info( self, &info, ++ clip );
1636
1637                         // Split again if need be
1638                         if ( length < info.frame_count )
1639                                 mlt_playlist_split( self, clip, length - 1 );
1640
1641                         // Remove
1642                         mlt_playlist_remove( self, clip );
1643
1644                         // Insert
1645                         mlt_playlist_insert( self, producer, clip, -1, -1 );
1646                         ret = clip;
1647                 }
1648                 else if ( clip < self->count )
1649                 {
1650                         if ( position > info.start + info.frame_count / 2 )
1651                                 clip ++;
1652                         if ( mode == 1 && clip < self->count && mlt_playlist_is_blank( self, clip ) )
1653                         {
1654                                 mlt_playlist_get_clip_info( self, &info, clip );
1655                                 if ( length < info.frame_count )
1656                                         mlt_playlist_split( self, clip, length );
1657                                 mlt_playlist_remove( self, clip );
1658                         }
1659                         mlt_playlist_insert( self, producer, clip, -1, -1 );
1660                         ret = clip;
1661                 }
1662                 else
1663                 {
1664                         if ( mode == 1 ) {
1665                                 if ( position == info.start )
1666                                         mlt_playlist_remove( self, clip );
1667                                 else
1668                                         mlt_playlist_blank( self, position - mlt_properties_get_int( properties, "length" ) - 1 );
1669                         }
1670                         mlt_playlist_append( self, producer );
1671                         ret = self->count - 1;
1672                 }
1673                 mlt_events_unblock( properties, self );
1674                 mlt_playlist_virtual_refresh( self );
1675         }
1676         else
1677         {
1678                 ret = -1;
1679         }
1680         return ret;
1681 }
1682
1683 /** Get the time at which the clip starts relative to the playlist.
1684  *
1685  * \public \memberof mlt_playlist_s
1686  * \param self a playlist
1687  * \param clip the index of the playlist entry
1688  * \return the starting time
1689  */
1690
1691 int mlt_playlist_clip_start( mlt_playlist self, int clip )
1692 {
1693         mlt_playlist_clip_info info;
1694         if ( mlt_playlist_get_clip_info( self, &info, clip ) == 0 )
1695                 return info.start;
1696         return clip < 0 ? 0 : mlt_producer_get_playtime( MLT_PLAYLIST_PRODUCER( self ) );
1697 }
1698
1699 /** Get the playable duration of the clip.
1700  *
1701  * \public \memberof mlt_playlist_s
1702  * \param self a playlist
1703  * \param clip the index of the playlist entry
1704  * \return the duration of the playlist entry
1705  */
1706
1707 int mlt_playlist_clip_length( mlt_playlist self, int clip )
1708 {
1709         mlt_playlist_clip_info info;
1710         if ( mlt_playlist_get_clip_info( self, &info, clip ) == 0 )
1711                 return info.frame_count;
1712         return 0;
1713 }
1714
1715 /** Get the duration of a blank space.
1716  *
1717  * \public \memberof mlt_playlist_s
1718  * \param self a playlist
1719  * \param clip the index of the playlist entry
1720  * \param bounded the maximum number of blank entries or 0 for all
1721  * \return the duration of a blank section
1722  */
1723
1724 int mlt_playlist_blanks_from( mlt_playlist self, int clip, int bounded )
1725 {
1726         int count = 0;
1727         mlt_playlist_clip_info info;
1728         if ( self != NULL && clip < self->count )
1729         {
1730                 mlt_playlist_get_clip_info( self, &info, clip );
1731                 if ( mlt_playlist_is_blank( self, clip ) )
1732                         count += info.frame_count;
1733                 if ( bounded == 0 )
1734                         bounded = self->count;
1735                 for ( clip ++; clip < self->count && bounded >= 0; clip ++ )
1736                 {
1737                         mlt_playlist_get_clip_info( self, &info, clip );
1738                         if ( mlt_playlist_is_blank( self, clip ) )
1739                                 count += info.frame_count;
1740                         else
1741                                 bounded --;
1742                 }
1743         }
1744         return count;
1745 }
1746
1747 /** Remove a portion of the playlist by time.
1748  *
1749  * \public \memberof mlt_playlist_s
1750  * \param self a playlist
1751  * \param position the starting time
1752  * \param length the duration of time to remove
1753  * \return the new entry index at the position
1754  */
1755
1756 int mlt_playlist_remove_region( mlt_playlist self, mlt_position position, int length )
1757 {
1758         int index = mlt_playlist_get_clip_index_at( self, position );
1759         if ( index >= 0 && index < self->count )
1760         {
1761                 mlt_properties properties = MLT_PLAYLIST_PROPERTIES( self );
1762                 int clip_start = mlt_playlist_clip_start( self, index );
1763                 int list_length = mlt_producer_get_playtime( MLT_PLAYLIST_PRODUCER( self ) );
1764                 mlt_events_block( properties, self );
1765
1766                 if ( position + length > list_length )
1767                         length -= ( position + length - list_length );
1768
1769                 if ( clip_start < position )
1770                 {
1771                         mlt_playlist_split( self, index ++, position - clip_start - 1 );
1772                 }
1773
1774                 while( length > 0 )
1775                 {
1776                         if ( mlt_playlist_clip_length( self, index ) > length )
1777                                 mlt_playlist_split( self, index, length - 1 );
1778                         length -= mlt_playlist_clip_length( self, index );
1779                         mlt_playlist_remove( self, index );
1780                 }
1781
1782                 mlt_playlist_consolidate_blanks( self, 0 );
1783                 mlt_events_unblock( properties, self );
1784                 mlt_playlist_virtual_refresh( self );
1785
1786                 // Just to be sure, we'll get the clip index again...
1787                 index = mlt_playlist_get_clip_index_at( self, position );
1788         }
1789         return index;
1790 }
1791
1792 /** Not implemented
1793  *
1794  * \deprecated not implemented
1795  * \public \memberof mlt_playlist_s
1796  * \param self
1797  * \param position
1798  * \param length
1799  * \param new_position
1800  * \return
1801  */
1802
1803 int mlt_playlist_move_region( mlt_playlist self, mlt_position position, int length, int new_position )
1804 {
1805         if ( self != NULL )
1806         {
1807         }
1808         return 0;
1809 }
1810
1811 /** Get the current frame.
1812  *
1813  * The implementation of the get_frame virtual function.
1814  * \private \memberof mlt_playlist_s
1815  * \param producer a producer
1816  * \param frame a frame by reference
1817  * \param index the time at which to get the frame
1818  * \return false
1819  */
1820
1821 static int producer_get_frame( mlt_producer producer, mlt_frame_ptr frame, int index )
1822 {
1823         // Check that we have a producer
1824         if ( producer == NULL )
1825         {
1826                 *frame = NULL;
1827                 return -1;
1828         }
1829
1830         // Get this mlt_playlist
1831         mlt_playlist self = producer->child;
1832
1833         // Need to ensure the frame is deinterlaced when repeating 1 frame
1834         int progressive = 0;
1835
1836         // Get the real producer
1837         mlt_service real = mlt_playlist_virtual_seek( self, &progressive );
1838
1839         // Check that we have a producer
1840         if ( real == NULL )
1841         {
1842                 *frame = mlt_frame_init( MLT_PRODUCER_SERVICE( producer ) );
1843                 return 0;
1844         }
1845
1846         // Get the frame
1847         if ( !mlt_properties_get_int( MLT_SERVICE_PROPERTIES( real ), "meta.fx_cut" ) )
1848         {
1849                 mlt_service_get_frame( real, frame, index );
1850         }
1851         else
1852         {
1853                 mlt_producer parent = mlt_producer_cut_parent( ( mlt_producer )real );
1854                 *frame = mlt_frame_init( MLT_PRODUCER_SERVICE( parent ) );
1855                 mlt_properties_set_int( MLT_FRAME_PROPERTIES( *frame ), "fx_cut", 1 );
1856                 mlt_frame_push_service( *frame, NULL );
1857                 mlt_frame_push_audio( *frame, NULL );
1858                 mlt_service_apply_filters( MLT_PRODUCER_SERVICE( parent ), *frame, 0 );
1859                 mlt_service_apply_filters( real, *frame, 0 );
1860                 mlt_deque_pop_front( MLT_FRAME_IMAGE_STACK( *frame ) );
1861                 mlt_deque_pop_front( MLT_FRAME_AUDIO_STACK( *frame ) );
1862         }
1863
1864         // Check if we're at the end of the clip
1865         mlt_properties properties = MLT_FRAME_PROPERTIES( *frame );
1866         if ( mlt_properties_get_int( properties, "end_of_clip" ) )
1867                 mlt_playlist_virtual_set_out( self );
1868
1869         // Set the consumer progressive property
1870         if ( progressive )
1871         {
1872                 mlt_properties_set_int( properties, "consumer_deinterlace", progressive );
1873                 mlt_properties_set_int( properties, "test_audio", 1 );
1874         }
1875
1876         // Check for notifier and call with appropriate argument
1877         mlt_properties playlist_properties = MLT_PRODUCER_PROPERTIES( producer );
1878         void ( *notifier )( void * ) = mlt_properties_get_data( playlist_properties, "notifier", NULL );
1879         if ( notifier != NULL )
1880         {
1881                 void *argument = mlt_properties_get_data( playlist_properties, "notifier_arg", NULL );
1882                 notifier( argument );
1883         }
1884
1885         // Update position on the frame we're creating
1886         mlt_frame_set_position( *frame, mlt_producer_frame( producer ) );
1887
1888         // Position ourselves on the next frame
1889         mlt_producer_prepare_next( producer );
1890
1891         return 0;
1892 }
1893
1894 /** Close the playlist.
1895  *
1896  * \public \memberof mlt_playlist_s
1897  * \param self a playlist
1898  */
1899
1900 void mlt_playlist_close( mlt_playlist self )
1901 {
1902         if ( self != NULL && mlt_properties_dec_ref( MLT_PLAYLIST_PROPERTIES( self ) ) <= 0 )
1903         {
1904                 int i = 0;
1905                 self->parent.close = NULL;
1906                 for ( i = 0; i < self->count; i ++ )
1907                 {
1908                         mlt_event_close( self->list[ i ]->event );
1909                         mlt_producer_close( self->list[ i ]->producer );
1910                         free( self->list[ i ] );
1911                 }
1912                 mlt_producer_close( &self->blank );
1913                 mlt_producer_close( &self->parent );
1914                 free( self->list );
1915                 free( self );
1916         }
1917 }