Adding the mix part 1
[melted] / src / framework / mlt_playlist.c
index 04e61d4..366b021 100644 (file)
 #include "config.h"
 
 #include "mlt_playlist.h"
+#include "mlt_tractor.h"
+#include "mlt_field.h"
 #include "mlt_frame.h"
+#include "mlt_transition.h"
 
 #include <stdio.h>
 #include <stdlib.h>
 /** Virtual playlist entry.
 */
 
-typedef struct
+typedef struct playlist_entry_s
 {
        mlt_producer producer;
        mlt_position frame_in;
        mlt_position frame_out;
        mlt_position frame_count;
+       mlt_position producer_length;
+       mlt_event event;
+       int mix_in_length;
+       int mix_out_length;
+       struct playlist_entry_s *mix_in;
+       struct playlist_entry_s *mix_out;
 }
 playlist_entry;
 
@@ -56,6 +65,8 @@ struct mlt_playlist_s
 */
 
 static int producer_get_frame( mlt_producer producer, mlt_frame_ptr frame, int index );
+static int mlt_playlist_unmix( mlt_playlist this, int clip );
+static int mlt_playlist_resize_mix( mlt_playlist this, int clip, int in, int out );
 
 /** Constructor.
 */
@@ -89,6 +100,9 @@ mlt_playlist mlt_playlist_init( )
                mlt_properties_set( mlt_playlist_properties( this ), "eof", "pause" );
                mlt_properties_set( mlt_playlist_properties( this ), "resource", "<playlist>" );
                mlt_properties_set( mlt_playlist_properties( this ), "mlt_type", "mlt_producer" );
+               mlt_properties_set_position( mlt_playlist_properties( this ), "in", 0 );
+               mlt_properties_set_position( mlt_playlist_properties( this ), "out", 0 );
+               mlt_properties_set_position( mlt_playlist_properties( this ), "length", 0 );
 
                this->size = 10;
                this->list = malloc( this->size * sizeof( playlist_entry * ) );
@@ -126,16 +140,19 @@ mlt_properties mlt_playlist_properties( mlt_playlist this )
 
 static int mlt_playlist_virtual_refresh( mlt_playlist this )
 {
-       int i = 0;
+       // Obtain the properties
+       mlt_properties properties = mlt_playlist_properties( this );
 
        // Get the fps of the first producer
-       double fps = mlt_properties_get_double( mlt_playlist_properties( this ), "first_fps" );
+       double fps = mlt_properties_get_double( properties, "first_fps" );
+       int i = 0;
        mlt_position frame_count = 0;
 
        for ( i = 0; i < this->count; i ++ )
        {
                // Get the producer
                mlt_producer producer = this->list[ i ]->producer;
+               int current_length = mlt_producer_get_out( producer ) - mlt_producer_get_in( producer ) + 1;
 
                // If fps is 0
                if ( fps == 0 )
@@ -152,24 +169,56 @@ static int mlt_playlist_virtual_refresh( mlt_playlist this )
                        mlt_properties_set_double( mlt_producer_properties( producer ), "fps", fps );
                }
 
+               // Check if the length of the producer has changed
+               if ( this->list[ i ]->producer_length != current_length )
+               {
+                       // This clip should be removed...
+                       if ( this->list[ i ]->frame_in > current_length )
+                       {
+                               this->list[ i ]->frame_count = 0;
+                               this->list[ i ]->frame_in = 0;
+                               this->list[ i ]->frame_out = 0;
+                       }
+                       else if ( this->list[ i ]->frame_out >= current_length )
+                       {
+                               this->list[ i ]->frame_out = current_length - 1;
+                               this->list[ i ]->frame_count = this->list[ i ]->frame_out - this->list[ i ]->frame_in + 1;
+                       }
+
+                       // Update the producer_length
+                       this->list[ i ]->producer_length = current_length;
+               }
+
                // Update the frame_count for this clip
                frame_count += this->list[ i ]->frame_count;
        }
 
        // Refresh all properties
-       mlt_properties_set_double( mlt_playlist_properties( this ), "first_fps", fps );
-       mlt_properties_set_double( mlt_playlist_properties( this ), "fps", fps == 0 ? 25 : fps );
-       mlt_properties_set_position( mlt_playlist_properties( this ), "length", frame_count );
-       mlt_properties_set_position( mlt_playlist_properties( this ), "out", frame_count - 1 );
+       mlt_properties_set_double( properties, "first_fps", fps );
+       mlt_properties_set_double( properties, "fps", fps == 0 ? 25 : fps );
+       mlt_events_block( properties, properties );
+       mlt_properties_set_position( properties, "length", frame_count );
+       mlt_events_unblock( properties, properties );
+       mlt_properties_set_position( properties, "out", frame_count - 1 );
 
        return 0;
 }
 
+/** Listener for producers on the playlist.
+*/
+
+static void mlt_playlist_listener( mlt_producer producer, mlt_playlist this )
+{
+       mlt_playlist_virtual_refresh( this );
+}
+
 /** Append to the virtual playlist.
 */
 
 static int mlt_playlist_virtual_append( mlt_playlist this, mlt_producer producer, mlt_position in, mlt_position out )
 {
+       mlt_properties properties = mlt_producer_properties( producer );
+
        // Check that we have room
        if ( this->count >= this->size )
        {
@@ -184,14 +233,17 @@ static int mlt_playlist_virtual_append( mlt_playlist this, mlt_producer producer
        this->list[ this->count ]->frame_in = in;
        this->list[ this->count ]->frame_out = out;
        this->list[ this->count ]->frame_count = out - in + 1;
+       this->list[ this->count ]->producer_length = mlt_producer_get_out( producer ) - mlt_producer_get_in( producer ) + 1;
+       this->list[ this->count ]->event = mlt_events_listen( properties, this, "producer-changed", ( mlt_listener )mlt_playlist_listener );
+       mlt_event_inc_ref( this->list[ this->count ]->event );
 
-       mlt_properties_set( mlt_producer_properties( producer ), "eof", "pause" );
+       mlt_properties_set( properties, "eof", "pause" );
 
        mlt_producer_set_speed( producer, 0 );
 
        this->count ++;
 
-       mlt_properties_inc_ref( mlt_producer_properties( producer ) );
+       mlt_properties_inc_ref( properties );
 
        return mlt_playlist_virtual_refresh( this );
 }
@@ -203,7 +255,6 @@ static mlt_service mlt_playlist_virtual_seek( mlt_playlist this )
 {
        // Default producer to blank
        mlt_producer producer = NULL;
-       mlt_service service = NULL;
 
        // Map playlist position to real producer in virtual playlist
        mlt_position position = mlt_producer_frame( &this->parent );
@@ -271,14 +322,7 @@ static mlt_service mlt_playlist_virtual_seek( mlt_playlist this )
                producer = &this->blank;
        }
 
-       if ( producer != NULL )
-       {
-               service = mlt_producer_service( producer );
-               while ( mlt_service_consumer( service ) != NULL )
-                       service = mlt_service_consumer( service );
-       }
-
-       return service;
+       return mlt_producer_service( producer );
 }
 
 /** Invoked when a producer indicates that it has prematurely reached its end.
@@ -311,7 +355,7 @@ static mlt_producer mlt_playlist_virtual_set_out( mlt_playlist this )
        }
 
        // Seek in real producer to relative position
-       if ( i < this->count )
+       if ( i < this->count && this->list[ i ]->frame_out != position )
        {
                // Update the frame_count for the changed clip (hmmm)
                this->list[ i ]->frame_out = position;
@@ -422,6 +466,7 @@ int mlt_playlist_get_clip_info( mlt_playlist this, mlt_playlist_clip_info *info,
                info->frame_count = this->list[ index ]->frame_count;
                info->length = mlt_producer_get_length( producer );
                info->fps = mlt_producer_get_fps( producer );
+               info->event = this->list[ index ]->event;
        }
 
        // Determine the consuming filter service
@@ -450,7 +495,10 @@ int mlt_playlist_clear( mlt_playlist this )
 {
        int i;
        for ( i = 0; i < this->count; i ++ )
+       {
+               mlt_event_close( this->list[ i ]->event );
                mlt_producer_close( this->list[ i ]->producer );
+       }
        this->count = 0;
        mlt_properties_set_double( mlt_playlist_properties( this ), "first_fps", 0 );
        return mlt_playlist_virtual_refresh( this );
@@ -492,10 +540,14 @@ int mlt_playlist_blank( mlt_playlist this, mlt_position length )
 int mlt_playlist_insert( mlt_playlist this, mlt_producer producer, int where, mlt_position in, mlt_position out )
 {
        // Append to end
+       mlt_events_block( mlt_playlist_properties( this ), this );
        mlt_playlist_append_io( this, producer, in, out );
 
        // Move to the position specified
-       return mlt_playlist_move( this, this->count - 1, where );
+       mlt_playlist_move( this, this->count - 1, where );
+       mlt_events_unblock( mlt_playlist_properties( this ), this );
+
+       return mlt_playlist_virtual_refresh( this );
 }
 
 /** Remove an entry in the playlist.
@@ -503,7 +555,8 @@ int mlt_playlist_insert( mlt_playlist this, mlt_producer producer, int where, ml
 
 int mlt_playlist_remove( mlt_playlist this, int where )
 {
-       if ( this->count > 0 )
+       int error = where < 0 || where >= this->count;
+       if ( error == 0 && mlt_playlist_unmix( this, where ) != 0 )
        {
                // We need to know the current clip and the position within the playlist
                int current = mlt_playlist_current_clip( this );
@@ -511,21 +564,27 @@ int mlt_playlist_remove( mlt_playlist this, int where )
 
                // We need all the details about the clip we're removing
                mlt_playlist_clip_info where_info;
+               playlist_entry *entry = this->list[ where ];
 
                // Loop variable
                int i = 0;
 
+               // Get the clip info 
+               mlt_playlist_get_clip_info( this, &where_info, where );
+
                // Make sure the clip to be removed is valid and correct if necessary
                if ( where < 0 ) 
                        where = 0;
                if ( where >= this->count )
                        where = this->count - 1;
 
-               // Get the clip info of the clip to be removed
-               mlt_playlist_get_clip_info( this, &where_info, where );
-
                // Close the producer associated to the clip info
-               mlt_producer_close( where_info.producer );
+               mlt_event_close( entry->event );
+               mlt_producer_close( entry->producer );
+               if ( entry->mix_in != NULL )
+                       entry->mix_in->mix_out = NULL;
+               if ( entry->mix_out != NULL )
+                       entry->mix_out->mix_in = NULL;
 
                // Reorganise the list
                for ( i = where + 1; i < this->count; i ++ )
@@ -539,9 +598,15 @@ int mlt_playlist_remove( mlt_playlist this, int where )
                        mlt_producer_seek( mlt_playlist_producer( this ), position - where_info.frame_count );
                else if ( this->count == 0 )
                        mlt_producer_seek( mlt_playlist_producer( this ), 0 );
+
+               // Free the entry
+               free( entry );
+
+               // Refresh the playlist
+               mlt_playlist_virtual_refresh( this );
        }
 
-       return 0;
+       return error;
 }
 
 /** Move an entry in the playlist.
@@ -596,6 +661,7 @@ int mlt_playlist_move( mlt_playlist this, int src, int dest )
 
                mlt_playlist_get_clip_info( this, &current_info, current );
                mlt_producer_seek( mlt_playlist_producer( this ), current_info.start + position );
+               mlt_playlist_virtual_refresh( this );
        }
 
        return 0;
@@ -607,7 +673,7 @@ int mlt_playlist_move( mlt_playlist this, int src, int dest )
 int mlt_playlist_resize_clip( mlt_playlist this, int clip, mlt_position in, mlt_position out )
 {
        int error = clip < 0 || clip >= this->count;
-       if ( error == 0 )
+       if ( error == 0 && mlt_playlist_resize_mix( this, clip, in, out ) != 0 )
        {
                playlist_entry *entry = this->list[ clip ];
                mlt_producer producer = entry->producer;
@@ -641,12 +707,23 @@ int mlt_playlist_split( mlt_playlist this, int clip, mlt_position position )
        if ( error == 0 )
        {
                playlist_entry *entry = this->list[ clip ];
+               playlist_entry *new_entry = NULL;
                if ( position > 0 && position < entry->frame_count )
                {
                        int in = entry->frame_in;
                        int out = entry->frame_out;
+                       mlt_events_block( mlt_playlist_properties( this ), this );
                        mlt_playlist_resize_clip( this, clip, in, in + position );
                        mlt_playlist_insert( this, entry->producer, clip + 1, in + position + 1, out );
+                       new_entry = this->list[ clip + 1 ];
+                       new_entry->mix_out = entry->mix_out;
+                       new_entry->mix_out_length = entry->mix_out_length;
+                       if ( entry->mix_out != NULL )
+                               entry->mix_out->mix_in = new_entry;
+                       entry->mix_out = NULL;
+                       entry->mix_out_length = 0;
+                       mlt_events_unblock( mlt_playlist_properties( this ), this );
+                       mlt_events_fire( mlt_playlist_properties( this ), "producer-changed", NULL );
                }
                else
                {
@@ -666,34 +743,160 @@ int mlt_playlist_join( mlt_playlist this, int clip, int count, int merge )
        {
                int i = clip;
                mlt_playlist new_clip = mlt_playlist_init( );
+               mlt_events_block( mlt_playlist_properties( this ), this );
                if ( clip + count >= this->count )
                        count = this->count - clip;
                for ( i = 0; i <= count; i ++ )
                {
                        playlist_entry *entry = this->list[ clip ];
-                       char *resource = mlt_properties_get( mlt_producer_properties( entry->producer ), "resource" );
-                       if ( merge && resource != NULL && !strcmp( resource, "<playlist>" ) )
-                       {
-                               mlt_playlist old_clip = ( mlt_playlist )entry->producer;
-                               while( old_clip->count )
-                               {
-                                       entry = old_clip->list[ 0 ];
-                                       mlt_playlist_append_io( new_clip, entry->producer, entry->frame_in, entry->frame_out );
-                                       mlt_playlist_remove( old_clip, 0 );
-                               }
-                       }
-                       else
-                       {
-                               mlt_playlist_append_io( new_clip, entry->producer, entry->frame_in, entry->frame_out );
-                       }
+                       mlt_playlist_append_io( new_clip, entry->producer, entry->frame_in, entry->frame_out );
                        mlt_playlist_remove( this, clip );
                }
+               mlt_events_unblock( mlt_playlist_properties( this ), this );
                mlt_playlist_insert( this, mlt_playlist_producer( new_clip ), clip, 0, -1 );
                mlt_playlist_close( new_clip );
        }
        return error;
 }
 
+int mlt_playlist_mix( mlt_playlist this, int clip, int length, mlt_transition transition )
+{
+       int error = ( clip < 0 || clip + 1 >= this->count ) && this->list[ clip ]->mix_out != NULL;
+       if ( error == 0 )
+       {
+               playlist_entry *mix = NULL;
+               playlist_entry *clip_a = this->list[ clip ];
+               playlist_entry *clip_b = this->list[ clip + 1 ];
+               mlt_tractor tractor = mlt_tractor_new( );
+               mlt_playlist track_a = mlt_playlist_init( );
+               mlt_playlist track_b = mlt_playlist_init( );
+               mlt_properties_set_int( mlt_tractor_properties( tractor ), "mlt_mix", 1 );
+               mlt_events_block( mlt_playlist_properties( this ), this );
+               mlt_playlist_resize_clip( this, clip, clip_a->frame_in, clip_a->frame_out - length );
+               mlt_playlist_resize_clip( this, clip + 1, clip_b->frame_in + length, clip_b->frame_out );
+               mlt_tractor_set_track( tractor, mlt_playlist_producer( track_a ), 0 );
+               mlt_tractor_set_track( tractor, mlt_playlist_producer( track_b ), 1 );
+               mlt_playlist_append_io( track_a, clip_a->producer, clip_a->frame_out + 1, clip_a->frame_out + length );
+               mlt_playlist_append_io( track_b, clip_b->producer, clip_b->frame_in - length, clip_b->frame_in - 1 );
+               mlt_playlist_insert( this, mlt_tractor_producer( tractor ), clip + 1, -1, -1 );
+
+               // Store mix info so that we can manipulate clips on either side
+               mix = this->list[ clip + 1 ];
+               mix->mix_in = clip_a;
+               mix->mix_out = clip_b;
+               mix->mix_out_length = length;
+               mix->mix_in_length = length;
+               clip_a->mix_out = mix;
+               clip_a->mix_out_length = length;
+               clip_b->mix_in = mix;
+               clip_b->mix_in_length = length;
+
+               if ( transition != NULL )
+               {
+                       mlt_field field = mlt_tractor_field( tractor );
+                       mlt_field_plant_transition( field, transition, 0, 1 );
+                       mlt_transition_set_in_and_out( transition, 0, length - 1 );
+               }
+               mlt_events_unblock( mlt_playlist_properties( this ), this );
+               mlt_events_fire( mlt_playlist_properties( this ), "producer-changed", NULL );
+               mlt_playlist_close( track_a );
+               mlt_playlist_close( track_b );
+               mlt_tractor_close( tractor );
+       }
+       return error;
+}
+
+static int mlt_playlist_unmix( mlt_playlist this, int clip )
+{
+       int error = ( clip < 0 || clip >= this->count ); 
+
+       // Ensure that the clip request is actually a mix
+       if ( error == 0 )
+       {
+               mlt_producer producer = this->list[ clip ]->producer;
+               mlt_properties properties = mlt_producer_properties( producer );
+               error = !mlt_properties_get_int( properties, "mlt_mix" );
+       }
+
+       if ( error == 0 )
+       {
+               playlist_entry *mix = this->list[ clip ];
+               playlist_entry *clip_a = mix->mix_in;
+               playlist_entry *clip_b = mix->mix_out;
+               int length = mix->mix_in_length;
+               mlt_events_block( mlt_playlist_properties( this ), this );
+
+               if ( clip_a != NULL )
+               {
+                       clip_a->frame_out += length;
+                       clip_a->frame_count += length;
+                       clip_a->mix_out = NULL;
+                       clip_a->mix_out_length = 0;
+               }
+
+               if ( clip_b != NULL )
+               {
+                       clip_b->frame_in -= length;
+                       clip_b->frame_count += length;
+                       clip_b->mix_in = NULL;
+                       clip_b->mix_in_length = 0;
+               }
+
+               mlt_properties_set_int( mlt_producer_properties( mix->producer ), "mlt_mix", 0 );
+               mlt_playlist_remove( this, clip );
+               mlt_events_unblock( mlt_playlist_properties( this ), this );
+               mlt_events_fire( mlt_playlist_properties( this ), "producer-changed", NULL );
+       }
+       return error;
+}
+
+static int mlt_playlist_resize_mix( mlt_playlist this, int clip, int in, int out )
+{
+       int error = ( clip < 0 || clip >= this->count ); 
+
+       // Ensure that the clip request is actually a mix
+       if ( error == 0 )
+       {
+               mlt_producer producer = this->list[ clip ]->producer;
+               mlt_properties properties = mlt_producer_properties( producer );
+               error = !mlt_properties_get_int( properties, "mlt_mix" );
+       }
+
+       if ( error == 0 )
+       {
+               playlist_entry *mix = this->list[ clip ];
+               playlist_entry *clip_a = mix->mix_in;
+               playlist_entry *clip_b = mix->mix_out;
+               int length = out - in + 1;
+               int length_diff = length - mix->mix_in_length;
+               mlt_events_block( mlt_playlist_properties( this ), this );
+
+               if ( clip_a != NULL )
+               {
+                       clip_a->frame_out -= length_diff;
+                       clip_a->frame_count -= length_diff;
+                       clip_a->mix_out_length -= length_diff;
+               }
+
+               if ( clip_b != NULL )
+               {
+                       clip_b->frame_in += length_diff;
+                       clip_b->frame_count -= length_diff;
+                       clip_b->mix_in_length -= length_diff;
+               }
+
+               mix->frame_in = 0;
+               mix->frame_out = length - 1;
+               mix->frame_count = length;
+               mix->mix_in_length = length;
+               mix->mix_out_length = length;
+
+               mlt_events_unblock( mlt_playlist_properties( this ), this );
+               mlt_events_fire( mlt_playlist_properties( this ), "producer-changed", NULL );
+       }
+       return error;
+}
+
 /** Get the current frame.
 */
 
@@ -740,13 +943,14 @@ void mlt_playlist_close( mlt_playlist this )
        {
                int i = 0;
                this->parent.close = NULL;
-               mlt_producer_close( &this->parent );
-               mlt_producer_close( &this->blank );
                for ( i = 0; i < this->count; i ++ )
                {
+                       mlt_event_close( this->list[ i ]->event );
                        mlt_producer_close( this->list[ i ]->producer );
                        free( this->list[ i ] );
                }
+               mlt_producer_close( &this->blank );
+               mlt_producer_close( &this->parent );
                free( this->list );
                free( this );
        }