X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fframework%2Fmlt_playlist.c;h=6ebf37af89576a6aa9c78d63e0e9514b3f98a00e;hb=ebcbb3571620a43fe24b3f8fa0161096ef628dbe;hp=762cfa373ca515292443b1f1bd72427558cd1427;hpb=b917ae819659606f59b3ae761d06ab2095ade658;p=melted diff --git a/src/framework/mlt_playlist.c b/src/framework/mlt_playlist.c index 762cfa3..6ebf37a 100644 --- a/src/framework/mlt_playlist.c +++ b/src/framework/mlt_playlist.c @@ -22,6 +22,7 @@ #include "mlt_playlist.h" #include "mlt_tractor.h" +#include "mlt_multitrack.h" #include "mlt_field.h" #include "mlt_frame.h" #include "mlt_transition.h" @@ -39,12 +40,10 @@ typedef struct playlist_entry_s mlt_position frame_in; mlt_position frame_out; mlt_position frame_count; + int repeat; 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; + int preservation_hack; } playlist_entry; @@ -101,7 +100,7 @@ mlt_playlist mlt_playlist_init( ) mlt_properties_set( mlt_playlist_properties( this ), "resource", "" ); 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 ), "out", -1 ); mlt_properties_set_position( mlt_playlist_properties( this ), "length", 0 ); this->size = 10; @@ -175,10 +174,10 @@ static int mlt_playlist_virtual_refresh( mlt_playlist this ) this->list[ i ]->frame_out != mlt_producer_get_out( producer ) ) ) { // This clip should be removed... - if ( current_length == 1 ) + if ( current_length < 1 ) { this->list[ i ]->frame_in = 0; - this->list[ i ]->frame_out = 0; + this->list[ i ]->frame_out = -1; this->list[ i ]->frame_count = 0; } else @@ -192,6 +191,9 @@ static int mlt_playlist_virtual_refresh( mlt_playlist this ) this->list[ i ]->producer_length = current_length; } + // Calculate the frame_count + this->list[ i ]->frame_count = ( this->list[ i ]->frame_out - this->list[ i ]->frame_in + 1 ) * this->list[ i ]->repeat; + // Update the frame_count for this clip frame_count += this->list[ i ]->frame_count; } @@ -220,13 +222,15 @@ static void mlt_playlist_listener( mlt_producer producer, mlt_playlist this ) static int mlt_playlist_virtual_append( mlt_playlist this, mlt_producer source, mlt_position in, mlt_position out ) { + char *resource = source != NULL ? mlt_properties_get( mlt_producer_properties( source ), "resource" ) : NULL; mlt_producer producer = NULL; mlt_properties properties = NULL; + mlt_properties parent = NULL; // If we have a cut, then use the in/out points from the cut - if ( &this->blank == source ) + if ( resource == NULL || !strcmp( resource, "blank" ) ) { - producer = source; + producer = &this->blank; properties = mlt_producer_properties( producer ); mlt_properties_inc_ref( properties ); } @@ -250,6 +254,8 @@ static int mlt_playlist_virtual_append( mlt_playlist this, mlt_producer source, properties = mlt_producer_properties( producer ); } + // Fetch the cuts parent properties + parent = mlt_producer_properties( mlt_producer_cut_parent( producer ) ); // Check that we have room if ( this->count >= this->size ) @@ -260,22 +266,22 @@ static int mlt_playlist_virtual_append( mlt_playlist this, mlt_producer source, this->size += 10; } + // Create the entry this->list[ this->count ] = calloc( sizeof( playlist_entry ), 1 ); - this->list[ this->count ]->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( source ), "eof", "pause" ); - mlt_properties_set( properties, "eof", "pause" ); - - mlt_producer_set_speed( source, 0 ); - mlt_producer_set_speed( producer, 0 ); - - this->count ++; + if ( this->list[ this->count ] != NULL ) + { + this->list[ this->count ]->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 ]->repeat = 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( parent, this, "producer-changed", ( mlt_listener )mlt_playlist_listener ); + mlt_event_inc_ref( this->list[ this->count ]->event ); + mlt_properties_set( properties, "eof", "pause" ); + mlt_producer_set_speed( producer, 0 ); + this->count ++; + } return mlt_playlist_virtual_refresh( this ); } @@ -283,7 +289,7 @@ static int mlt_playlist_virtual_append( mlt_playlist this, mlt_producer source, /** Seek in the virtual playlist. */ -static mlt_service mlt_playlist_virtual_seek( mlt_playlist this ) +static mlt_service mlt_playlist_virtual_seek( mlt_playlist this, int *progressive ) { // Default producer to blank mlt_producer producer = NULL; @@ -312,6 +318,7 @@ static mlt_service mlt_playlist_virtual_seek( mlt_playlist this ) total += this->list[ i ]->frame_count; // Check if the position indicates that we have found the clip + // Note that 0 length clips get skipped automatically if ( position < this->list[ i ]->frame_count ) { // Found it, now break @@ -328,17 +335,21 @@ static mlt_service mlt_playlist_virtual_seek( mlt_playlist this ) // Seek in real producer to relative position if ( producer != NULL ) { - mlt_producer_seek( producer, position ); + int count = this->list[ i ]->frame_count / this->list[ i ]->repeat; + *progressive = count == 1; + mlt_producer_seek( producer, position % count ); } else if ( !strcmp( eof, "pause" ) && total > 0 ) { playlist_entry *entry = this->list[ this->count - 1 ]; + int count = entry->frame_count / entry->repeat; mlt_producer this_producer = mlt_playlist_producer( this ); mlt_producer_seek( this_producer, original - 1 ); producer = entry->producer; - mlt_producer_seek( producer, entry->frame_out ); + mlt_producer_seek( producer, entry->frame_out % count ); mlt_producer_set_speed( this_producer, 0 ); mlt_producer_set_speed( producer, 0 ); + *progressive = count == 1; } else if ( !strcmp( eof, "loop" ) && total > 0 ) { @@ -496,9 +507,9 @@ int mlt_playlist_get_clip_info( mlt_playlist this, mlt_playlist_clip_info *info, info->frame_in = this->list[ index ]->frame_in; info->frame_out = this->list[ index ]->frame_out; info->frame_count = this->list[ index ]->frame_count; + info->repeat = this->list[ index ]->repeat; info->length = mlt_producer_get_length( producer ); info->fps = mlt_producer_get_fps( producer ); - info->event = this->list[ index ]->event; } return error; @@ -589,6 +600,7 @@ 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 ]; + mlt_properties properties = mlt_producer_properties( entry->producer ); // Loop variable int i = 0; @@ -602,19 +614,32 @@ int mlt_playlist_remove( mlt_playlist this, int where ) if ( where >= this->count ) where = this->count - 1; - // Close the producer associated to the clip info - 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 ++ ) this->list[ i - 1 ] = this->list[ i ]; this->count --; + if ( entry->preservation_hack == 0 ) + { + // Decouple from mix_in/out if necessary + if ( mlt_properties_get_data( properties, "mix_in", NULL ) != NULL ) + { + mlt_properties mix = mlt_properties_get_data( properties, "mix_in", NULL ); + mlt_properties_set_data( mix, "mix_out", NULL, 0, NULL, NULL ); + } + if ( mlt_properties_get_data( properties, "mix_out", NULL ) != NULL ) + { + mlt_properties mix = mlt_properties_get_data( properties, "mix_out", NULL ); + mlt_properties_set_data( mix, "mix_in", NULL, 0, NULL, NULL ); + } + + mlt_producer_clear( entry->producer ); + } + + // Close the producer associated to the clip info + mlt_event_close( entry->event ); + mlt_producer_close( entry->producer ); + // Correct position if ( where == current ) mlt_producer_seek( mlt_playlist_producer( this ), where_info.start ); @@ -691,7 +716,22 @@ int mlt_playlist_move( mlt_playlist this, int src, int dest ) return 0; } -/** Resize the current clip. +/** Repeat the specified clip n times. +*/ + +int mlt_playlist_repeat_clip( mlt_playlist this, int clip, int repeat ) +{ + int error = repeat < 1 || clip < 0 || clip >= this->count; + if ( error == 0 ) + { + playlist_entry *entry = this->list[ clip ]; + entry->repeat = repeat; + mlt_playlist_virtual_refresh( this ); + } + return error; +} + +/** Resize the specified clip. */ int mlt_playlist_resize_clip( mlt_playlist this, int clip, mlt_position in, mlt_position out ) @@ -728,16 +768,17 @@ int mlt_playlist_split( mlt_playlist this, int clip, mlt_position position ) if ( error == 0 ) { playlist_entry *entry = this->list[ clip ]; - if ( position > 0 && position < entry->frame_count ) + position = position < 0 ? entry->frame_count + position - 1 : position; + if ( position >= 0 && position <= entry->frame_count ) { - mlt_producer parent = mlt_producer_cut_parent( entry->producer ); mlt_producer split = NULL; 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 ); - split = mlt_producer_cut( parent, in + position + 1, out ); - mlt_playlist_insert( this, split, clip + 1, -1, -1 ); + split = mlt_producer_cut( entry->producer, in + position + 1, out ); + mlt_playlist_insert( this, split, clip + 1, 0, -1 ); + mlt_producer_close( split ); mlt_events_unblock( mlt_playlist_properties( this ), this ); mlt_events_fire( mlt_playlist_properties( this ), "producer-changed", NULL ); } @@ -754,7 +795,7 @@ int mlt_playlist_split( mlt_playlist this, int clip, mlt_position position ) int mlt_playlist_join( mlt_playlist this, int clip, int count, int merge ) { - int error = clip < 0 || ( clip + 1 ) >= this->count; + int error = clip < 0 || ( clip ) >= this->count; if ( error == 0 ) { int i = clip; @@ -766,6 +807,8 @@ int mlt_playlist_join( mlt_playlist this, int clip, int count, int merge ) { playlist_entry *entry = this->list[ clip ]; mlt_playlist_append( new_clip, entry->producer ); + mlt_playlist_repeat_clip( new_clip, i, entry->repeat ); + entry->preservation_hack = 1; mlt_playlist_remove( this, clip ); } mlt_events_unblock( mlt_playlist_properties( this ), this ); @@ -775,31 +818,45 @@ int mlt_playlist_join( mlt_playlist this, int clip, int count, int merge ) return error; } +/** Mix consecutive clips for a specified length and apply transition if specified. +*/ + 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; + int error = ( clip < 0 || clip + 1 >= this->count ); if ( error == 0 ) { playlist_entry *clip_a = this->list[ clip ]; playlist_entry *clip_b = this->list[ clip + 1 ]; - mlt_producer track_a; - mlt_producer track_b; + mlt_producer track_a = NULL; + mlt_producer track_b = NULL; mlt_tractor tractor = mlt_tractor_new( ); mlt_events_block( mlt_playlist_properties( this ), this ); - track_a = mlt_producer_cut( clip_a->producer, clip_a->frame_out - length + 1, clip_a->frame_out ); - mlt_properties_set_int( mlt_producer_properties( track_a ), "cut", 1 ); - track_b = mlt_producer_cut( clip_b->producer, clip_b->frame_in, clip_b->frame_in + length - 1 ); - mlt_properties_set_int( mlt_producer_properties( track_b ), "cut", 1 ); + // Check length is valid for both clips and resize if necessary. + int max_size = clip_a->frame_count > clip_b->frame_count ? clip_a->frame_count : clip_b->frame_count; + length = length > max_size ? max_size : length; - mlt_playlist_resize_clip( this, clip, clip_a->frame_in, clip_a->frame_out - length + 1 ); - mlt_playlist_resize_clip( this, clip + 1, clip_b->frame_in + length, clip_b->frame_out ); + // Create the a and b tracks/cuts if necessary - note that no cuts are required if the length matches + if ( length != clip_a->frame_count ) + track_a = mlt_producer_cut( clip_a->producer, clip_a->frame_out - length + 1, clip_a->frame_out ); + else + track_a = clip_a->producer; + + if ( length != clip_b->frame_count ) + track_b = mlt_producer_cut( clip_b->producer, clip_b->frame_in, clip_b->frame_in + length - 1 ); + else + track_b = clip_b->producer; + // Set the tracks on the tractor mlt_tractor_set_track( tractor, track_a, 0 ); mlt_tractor_set_track( tractor, track_b, 1 ); + + // Insert the mix object into the playlist mlt_playlist_insert( this, mlt_tractor_producer( tractor ), clip + 1, -1, -1 ); mlt_properties_set_data( mlt_tractor_properties( tractor ), "mlt_mix", tractor, 0, NULL, NULL ); + // Attach the transition if ( transition != NULL ) { mlt_field field = mlt_tractor_field( tractor ); @@ -807,21 +864,99 @@ int mlt_playlist_mix( mlt_playlist this, int clip, int length, mlt_transition tr mlt_transition_set_in_and_out( transition, 0, length - 1 ); } - if ( clip_b->frame_count <= 0 ) + // Close our references to the tracks if we created new cuts above (the tracks can still be used here) + if ( track_a != clip_a->producer ) + mlt_producer_close( track_a ); + if ( track_b != clip_b->producer ) + mlt_producer_close( track_b ); + + // Check if we have anything left on the right hand clip + if ( track_b == clip_b->producer ) + { + clip_b->preservation_hack = 1; + mlt_playlist_remove( this, clip + 2 ); + } + else if ( clip_b->frame_out - clip_b->frame_in > length ) + { + mlt_playlist_resize_clip( this, clip + 2, clip_b->frame_in + length, clip_b->frame_out ); + mlt_properties_set_data( mlt_producer_properties( clip_b->producer ), "mix_in", tractor, 0, NULL, NULL ); + mlt_properties_set_data( mlt_tractor_properties( tractor ), "mix_out", clip_b->producer, 0, NULL, NULL ); + } + else + { + mlt_producer_clear( clip_b->producer ); mlt_playlist_remove( this, clip + 2 ); + } - if ( clip_a->frame_count <= 0 ) + // Check if we have anything left on the left hand clip + if ( track_a == clip_a->producer ) + { + clip_a->preservation_hack = 1; + mlt_playlist_remove( this, clip ); + } + else if ( clip_a->frame_out - clip_a->frame_in > length ) + { + mlt_playlist_resize_clip( this, clip, clip_a->frame_in, clip_a->frame_out - length ); + mlt_properties_set_data( mlt_producer_properties( clip_a->producer ), "mix_out", tractor, 0, NULL, NULL ); + mlt_properties_set_data( mlt_tractor_properties( tractor ), "mix_in", clip_a->producer, 0, NULL, NULL ); + } + else + { + mlt_producer_clear( clip_a->producer ); mlt_playlist_remove( this, clip ); + } + // Unblock and force a fire off of change events to listeners mlt_events_unblock( mlt_playlist_properties( this ), this ); - mlt_events_fire( mlt_playlist_properties( this ), "producer-changed", NULL ); - mlt_producer_close( track_a ); - mlt_producer_close( track_b ); + mlt_playlist_virtual_refresh( this ); mlt_tractor_close( tractor ); } return error; } +/** Add a transition to an existing mix. +*/ + +int mlt_playlist_mix_add( mlt_playlist this, int clip, mlt_transition transition ) +{ + mlt_producer producer = mlt_producer_cut_parent( mlt_playlist_get_clip( this, clip ) ); + mlt_properties properties = producer != NULL ? mlt_producer_properties( producer ) : NULL; + mlt_tractor tractor = properties != NULL ? mlt_properties_get_data( properties, "mlt_mix", NULL ) : NULL; + int error = transition == NULL || tractor == NULL; + if ( error == 0 ) + { + mlt_field field = mlt_tractor_field( tractor ); + mlt_field_plant_transition( field, transition, 0, 1 ); + mlt_transition_set_in_and_out( transition, 0, this->list[ clip ]->frame_count - 1 ); + } + return error; +} + +/** Return the clip at the position. +*/ + +mlt_producer mlt_playlist_get_clip( mlt_playlist this, int clip ) +{ + if ( clip >= 0 && clip < this->count ) + return this->list[ clip ]->producer; + return NULL; +} + +/** Determine if the clip is a mix. +*/ + +int mlt_playlist_clip_is_mix( mlt_playlist this, int clip ) +{ + mlt_producer producer = mlt_producer_cut_parent( mlt_playlist_get_clip( this, clip ) ); + mlt_properties properties = producer != NULL ? mlt_producer_properties( producer ) : NULL; + mlt_tractor tractor = properties != NULL ? mlt_properties_get_data( properties, "mlt_mix", NULL ) : NULL; + return tractor != NULL; +} + +/** Remove a mixed clip - ensure that the cuts included in the mix find their way + back correctly on to the playlist. +*/ + static int mlt_playlist_unmix( mlt_playlist this, int clip ) { int error = ( clip < 0 || clip >= this->count ); @@ -829,51 +964,44 @@ static int mlt_playlist_unmix( mlt_playlist this, int clip ) // Ensure that the clip request is actually a mix if ( error == 0 ) { - mlt_producer producer = this->list[ clip ]->producer; + mlt_producer producer = mlt_producer_cut_parent( this->list[ clip ]->producer ); mlt_properties properties = mlt_producer_properties( producer ); - error = !mlt_properties_get_int( properties, "mlt_mix" ); + error = mlt_properties_get_data( properties, "mlt_mix", NULL ) == NULL || + this->list[ clip ]->preservation_hack; } 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_tractor tractor = ( mlt_tractor )mlt_producer_cut_parent( mix->producer ); + mlt_properties properties = mlt_tractor_properties( tractor ); + mlt_producer clip_a = mlt_properties_get_data( properties, "mix_in", NULL ); + mlt_producer clip_b = mlt_properties_get_data( properties, "mix_out", NULL ); + int length = mlt_producer_get_playtime( mlt_tractor_producer( tractor ) ); 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; + mlt_producer_set_in_and_out( clip_a, mlt_producer_get_in( clip_a ), mlt_producer_get_out( clip_a ) + length ); } else { - mlt_tractor tractor = ( mlt_tractor )mix->producer; - mlt_playlist playlist = ( mlt_playlist )mlt_tractor_get_track( tractor, 0 ); - mlt_producer producer = playlist->list[ 0 ]->producer; - mlt_playlist_insert( this, producer, clip, playlist->list[0]->frame_in, playlist->list[0]->frame_out ); + mlt_producer cut = mlt_tractor_get_track( tractor, 0 ); + mlt_playlist_insert( this, cut, clip, -1, -1 ); clip ++; } 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_producer_set_in_and_out( clip_b, mlt_producer_get_in( clip_b ) - length, mlt_producer_get_out( clip_b ) ); } else { - mlt_tractor tractor = ( mlt_tractor )mix->producer; - mlt_playlist playlist = ( mlt_playlist )mlt_tractor_get_track( tractor, 1 ); - mlt_producer producer = playlist->list[ 0 ]->producer; - mlt_playlist_insert( this, producer, clip + 1, playlist->list[0]->frame_in, playlist->list[0]->frame_out ); + mlt_producer cut = mlt_tractor_get_track( tractor, 1 ); + mlt_playlist_insert( this, cut, clip + 1, -1, -1 ); } - mlt_properties_set_int( mlt_producer_properties( mix->producer ), "mlt_mix", 0 ); + mlt_properties_set_data( properties, "mlt_mix", NULL, 0, NULL, NULL ); mlt_playlist_remove( this, clip ); mlt_events_unblock( mlt_playlist_properties( this ), this ); mlt_events_fire( mlt_playlist_properties( this ), "producer-changed", NULL ); @@ -888,42 +1016,39 @@ static int mlt_playlist_resize_mix( mlt_playlist this, int clip, int in, int out // Ensure that the clip request is actually a mix if ( error == 0 ) { - mlt_producer producer = this->list[ clip ]->producer; + mlt_producer producer = mlt_producer_cut_parent( this->list[ clip ]->producer ); mlt_properties properties = mlt_producer_properties( producer ); - error = !mlt_properties_get_int( properties, "mlt_mix" ); + error = mlt_properties_get_data( properties, "mlt_mix", NULL ) == NULL; } if ( error == 0 ) { playlist_entry *mix = this->list[ clip ]; - playlist_entry *clip_a = mix->mix_in; - playlist_entry *clip_b = mix->mix_out; + mlt_tractor tractor = ( mlt_tractor )mlt_producer_cut_parent( mix->producer ); + mlt_properties properties = mlt_tractor_properties( tractor ); + mlt_producer clip_a = mlt_properties_get_data( properties, "mix_in", NULL ); + mlt_producer clip_b = mlt_properties_get_data( properties, "mix_out", NULL ); + mlt_producer track_a = mlt_tractor_get_track( tractor, 0 ); + mlt_producer track_b = mlt_tractor_get_track( tractor, 1 ); int length = out - in + 1; - int length_diff = length - mix->mix_in_length; + int length_diff = length - mlt_producer_get_playtime( mlt_tractor_producer( tractor ) ); 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; - } + mlt_producer_set_in_and_out( clip_a, mlt_producer_get_in( clip_a ), mlt_producer_get_out( clip_a ) - 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; - } + mlt_producer_set_in_and_out( clip_b, mlt_producer_get_in( clip_b ) + length_diff, mlt_producer_get_out( clip_b ) ); - mix->frame_in = 0; - mix->frame_out = length - 1; - mix->frame_count = length; - mix->mix_in_length = length; - mix->mix_out_length = length; + mlt_producer_set_in_and_out( track_a, mlt_producer_get_in( track_a ) - length_diff, mlt_producer_get_out( track_a ) ); + mlt_producer_set_in_and_out( track_b, mlt_producer_get_in( track_b ), mlt_producer_get_out( track_b ) + length_diff ); + mlt_producer_set_in_and_out( mlt_multitrack_producer( mlt_tractor_multitrack( tractor ) ), in, out ); + mlt_producer_set_in_and_out( mlt_tractor_producer( tractor ), in, out ); + mlt_properties_set_position( mlt_producer_properties( mix->producer ), "length", out - in + 1 ); + mlt_producer_set_in_and_out( mix->producer, in, out ); mlt_events_unblock( mlt_playlist_properties( this ), this ); - mlt_events_fire( mlt_playlist_properties( this ), "producer-changed", NULL ); + mlt_playlist_virtual_refresh( this ); } return error; } @@ -936,8 +1061,11 @@ static int producer_get_frame( mlt_producer producer, mlt_frame_ptr frame, int i // Get this mlt_playlist mlt_playlist this = producer->child; + // Need to ensure the frame is deinterlaced when repeating 1 frame + int progressive = 0; + // Get the real producer - mlt_service real = mlt_playlist_virtual_seek( this ); + mlt_service real = mlt_playlist_virtual_seek( this, &progressive ); // Get the frame mlt_service_get_frame( real, frame, index ); @@ -947,6 +1075,13 @@ static int producer_get_frame( mlt_producer producer, mlt_frame_ptr frame, int i if ( mlt_properties_get_int( properties, "end_of_clip" ) ) mlt_playlist_virtual_set_out( this ); + // Set the consumer progressive property + if ( progressive ) + { + mlt_properties_set_int( properties, "consumer_deinterlace", progressive ); + mlt_properties_set_int( properties, "test_audio", 1 ); + } + // Check for notifier and call with appropriate argument mlt_properties playlist_properties = mlt_producer_properties( producer ); void ( *notifier )( void * ) = mlt_properties_get_data( playlist_properties, "notifier", NULL );