X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fframework%2Fmlt_consumer.c;h=a07f72d10ca9d5dfb1a688597c0d4577a2c9d530;hb=3bde0c8a0c130db6d3849a94f60d5b5ad234246e;hp=86bed309025fe804f53021d5bf4e8b92bb93a520;hpb=1171e98b787df5cbbba737df820d9c9611f81723;p=melted diff --git a/src/framework/mlt_consumer.c b/src/framework/mlt_consumer.c index 86bed30..a07f72d 100644 --- a/src/framework/mlt_consumer.c +++ b/src/framework/mlt_consumer.c @@ -108,7 +108,7 @@ mlt_consumer mlt_consumer_new( ) mlt_service mlt_consumer_service( mlt_consumer this ) { - return &this->parent; + return this != NULL ? &this->parent : NULL; } /** Get the consumer properties. @@ -116,7 +116,7 @@ mlt_service mlt_consumer_service( mlt_consumer this ) mlt_properties mlt_consumer_properties( mlt_consumer this ) { - return mlt_service_properties( &this->parent ); + return this != NULL ? mlt_service_properties( &this->parent ) : NULL; } /** Connect the consumer to the producer. @@ -155,10 +155,6 @@ int mlt_consumer_start( mlt_consumer this ) // Set the test card on the consumer mlt_properties_set_data( properties, "test_card_producer", producer, 0, ( mlt_destructor )mlt_producer_close, NULL ); } - - // Check and run an ante command - if ( mlt_properties_get( properties, "ante" ) ) - system( mlt_properties_get( properties, "ante" ) ); } } else @@ -167,6 +163,10 @@ int mlt_consumer_start( mlt_consumer this ) mlt_properties_set_data( properties, "test_card_producer", NULL, 0, NULL, NULL ); } + // Check and run an ante command + if ( mlt_properties_get( properties, "ante" ) ) + system( mlt_properties_get( properties, "ante" ) ); + // Set the real_time preference this->real_time = mlt_properties_get_int( properties, "real_time" ); @@ -268,13 +268,23 @@ static void *consumer_read_ahead_thread( void *arg ) int skipped = 0; int64_t time_wait = 0; int64_t time_frame = 0; - int64_t time_image = 0; + int64_t time_process = 0; + int skip_next = 0; // Get the first frame frame = mlt_consumer_get_frame( this ); // Get the image of the first frame - mlt_frame_get_image( frame, &image, &this->format, &width, &height, 0 ); + if ( !video_off ) + mlt_frame_get_image( frame, &image, &this->format, &width, &height, 0 ); + + if ( !audio_off ) + { + samples = mlt_sample_calculator( fps, frequency, counter++ ); + mlt_frame_get_audio( frame, &pcm, &afmt, &frequency, &channels, &samples ); + frame->get_audio = NULL; + } + mlt_properties_set_int( mlt_frame_properties( frame ), "rendered", 1 ); // Get the starting time (can ignore the times above) @@ -284,14 +294,13 @@ static void *consumer_read_ahead_thread( void *arg ) while ( this->ahead ) { // Put the current frame into the queue - time_difference( &ante ); pthread_mutex_lock( &this->mutex ); while( this->ahead && mlt_deque_count( this->queue ) >= buffer ) pthread_cond_wait( &this->cond, &this->mutex ); mlt_deque_push_back( this->queue, frame ); pthread_cond_broadcast( &this->cond ); pthread_mutex_unlock( &this->mutex ); - time_wait = time_difference( &ante ); + time_wait += time_difference( &ante ); // Get the next frame frame = mlt_consumer_get_frame( this ); @@ -305,33 +314,34 @@ static void *consumer_read_ahead_thread( void *arg ) { skipped = 0; time_frame = 0; - time_image = 0; + time_process = 0; + time_wait = 0; count = 1; + skip_next = 0; } // Get the image - if ( ( time_frame + time_image ) / count < 40000 ) + if ( !skip_next ) { // Get the image, mark as rendered and time it if ( !video_off ) mlt_frame_get_image( frame, &image, &this->format, &width, &height, 0 ); mlt_properties_set_int( mlt_frame_properties( frame ), "rendered", 1 ); - - // Reset the skipped count - skipped = 0; } else { // Increment the number of sequentially skipped frames skipped ++; + skip_next = 0; // If we've reached an unacceptable level, reset everything - if ( skipped > 10 ) + if ( skipped > 5 ) { skipped = 0; time_frame = 0; - time_image = 0; - count = 0; + time_process = 0; + time_wait = 0; + count = 1; } } @@ -344,7 +354,11 @@ static void *consumer_read_ahead_thread( void *arg ) } // Increment the time take for this frame - time_image += time_difference( &ante ); + time_process += time_difference( &ante ); + + // Determine if the next frame should be skipped + if ( mlt_deque_count( this->queue ) <= 5 && ( ( time_wait + time_frame + time_process ) / count ) > 40000 ) + skip_next = 1; } // Remove the last frame @@ -408,6 +422,18 @@ static void consumer_read_ahead_stop( mlt_consumer this ) } } +void mlt_consumer_purge( mlt_consumer this ) +{ + if ( this->ahead ) + { + pthread_mutex_lock( &this->mutex ); + while ( mlt_deque_count( this->queue ) ) + mlt_frame_close( mlt_deque_pop_back( this->queue ) ); + pthread_cond_broadcast( &this->cond ); + pthread_mutex_unlock( &this->mutex ); + } +} + mlt_frame mlt_consumer_rt_frame( mlt_consumer this ) { // Frame to return @@ -425,9 +451,10 @@ mlt_frame mlt_consumer_rt_frame( mlt_consumer this ) if ( this->ahead == 0 ) { int buffer = mlt_properties_get_int( properties, "buffer" ); + int prefill = mlt_properties_get_int( properties, "prefill" ); consumer_read_ahead_start( this ); if ( buffer > 1 ) - size = buffer; + size = prefill > 0 && prefill < buffer ? prefill : buffer; } // Get frame from queue