X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=mlt%2Fsrc%2Fmodules%2Fffmpeg%2Fproducer_ffmpeg.c;h=15b1c89ec5c0698f67e2304e507f8c6d75c30a69;hb=6336039a203c6496691784682f9ad56eb13abcc3;hp=9233bb3441879642c86967f178bfc5b69baf733b;hpb=cc8b6005abe30b5f0816b5aa6b87aa6867275228;p=melted diff --git a/mlt/src/modules/ffmpeg/producer_ffmpeg.c b/mlt/src/modules/ffmpeg/producer_ffmpeg.c index 9233bb3..15b1c89 100644 --- a/mlt/src/modules/ffmpeg/producer_ffmpeg.c +++ b/mlt/src/modules/ffmpeg/producer_ffmpeg.c @@ -202,6 +202,8 @@ mlt_producer producer_ffmpeg_init( char *file ) mlt_properties_set( properties, "log_id", file ); mlt_properties_set( properties, "resource", file ); + mlt_properties_set_position( properties, "length", 36000 ); + mlt_properties_set_position( properties, "out", 36000 ); this->buffer = malloc( 1024 * 1024 * 2 ); @@ -240,7 +242,7 @@ static int producer_get_image( mlt_frame this, uint8_t **buffer, mlt_image_forma return 0; } -FILE *producer_ffmpeg_run_video( producer_ffmpeg this, mlt_timecode position ) +FILE *producer_ffmpeg_run_video( producer_ffmpeg this, mlt_position position ) { if ( this->video == NULL ) { @@ -277,7 +279,7 @@ FILE *producer_ffmpeg_run_video( producer_ffmpeg this, mlt_timecode position ) return this->video; } -FILE *producer_ffmpeg_run_audio( producer_ffmpeg this, mlt_timecode position ) +FILE *producer_ffmpeg_run_audio( producer_ffmpeg this, mlt_position position ) { // Get the producer mlt_producer producer = &this->parent; @@ -487,7 +489,6 @@ static int producer_get_frame( mlt_producer producer, mlt_frame_ptr frame, int i // Push the image callback mlt_frame_push_get_image( *frame, producer_get_image ); - } else { @@ -503,39 +504,35 @@ static int producer_get_frame( mlt_producer producer, mlt_frame_ptr frame, int i } // Push the image callback - mlt_frame_push_get_image( *frame, producer_get_image ); + if ( !this->end_of_video ) + mlt_frame_push_get_image( *frame, producer_get_image ); } // Set the audio pipe mlt_properties_set_data( properties, "producer_ffmpeg", this, 0, NULL, NULL ); // Hmm - register audio callback - ( *frame )->get_audio = producer_get_audio; + if ( !this->end_of_audio ) + ( *frame )->get_audio = producer_get_audio; // Get the additional properties double aspect_ratio = mlt_properties_get_double( producer_properties, "aspect_ratio" ); double speed = mlt_properties_get_double( producer_properties, "speed" ); - char *video_file = mlt_properties_get( producer_properties, "video_file" ); // Set them on the frame mlt_properties_set_double( properties, "aspect_ratio", aspect_ratio ); mlt_properties_set_double( properties, "speed", speed ); - if ( strchr( video_file, '/' ) != NULL ) - mlt_properties_set( properties, "file", strrchr( video_file, '/' ) + 1 ); - else - mlt_properties_set( properties, "file", video_file ); - // Set the out point on the producer if ( this->end_of_video && this->end_of_audio ) { mlt_properties_set_int( properties, "end_of_clip", 1 ); - mlt_properties_set_timecode( producer_properties, "length", mlt_producer_position( &this->parent ) ); + mlt_properties_set_position( producer_properties, "length", mlt_producer_position( &this->parent ) ); mlt_producer_set_in_and_out( &this->parent, mlt_producer_get_in( &this->parent ), mlt_producer_position( &this->parent ) ); } // Update timecode on the frame we're creating - mlt_frame_set_timecode( *frame, mlt_producer_position( producer ) ); + mlt_frame_set_position( *frame, mlt_producer_position( producer ) ); // Calculate the next timecode mlt_producer_prepare_next( producer );