Lines Matching refs:play

41 	mlt_consumer play;  member
91 self->play = mlt_factory_consumer( profile, "sdl", arg ); in consumer_sdl_preview_init()
104 …mlt_events_listen( MLT_CONSUMER_PROPERTIES( self->play ), self, "consumer-frame-show", ( mlt_liste… in consumer_sdl_preview_init()
106 …mlt_events_listen( MLT_CONSUMER_PROPERTIES( self->play ), self, "consumer-sdl-event", ( mlt_listen… in consumer_sdl_preview_init()
151 mlt_properties play = MLT_CONSUMER_PROPERTIES( self->play ); in consumer_start() local
195 …mlt_properties_set_data( play, "transport_producer", mlt_properties_get_data( properties, "transpo… in consumer_start()
197 …mlt_properties_set_data( play, "transport_callback", mlt_properties_get_data( properties, "transpo… in consumer_start()
200 mlt_properties_set_int( play, "progressive", progressive ); in consumer_start()
203 mlt_properties_pass_list( play, properties, in consumer_start()
210 mlt_properties_pass( play, properties, "play." ); in consumer_start()
213 …mlt_properties_set_data( play, "app_lock", mlt_properties_get_data( properties, "app_lock", NULL )… in consumer_start()
215 …mlt_properties_set_data( play, "app_unlock", mlt_properties_get_data( properties, "app_unlock", NU… in consumer_start()
218 mlt_properties_set_int( play, "put_mode", 1 ); in consumer_start()
220 mlt_properties_set_int( play, "terminate_on_pause", 1 ); in consumer_start()
227 mlt_properties_set_int( play, "sdl_started", 1 ); in consumer_start()
282 mlt_consumer_purge( self->play ); in consumer_purge()
301 if ( self->play ) in consumer_thread()
302 …eos_threshold = eos_threshold + mlt_properties_get_int( MLT_CONSUMER_PROPERTIES( self->play ), "bu… in consumer_thread()
347 mlt_consumer_purge( self->play ); in consumer_thread()
364 if ( self->active == self->play ) in consumer_thread()
379 if ( frame && !mlt_consumer_is_stopped( self->play ) ) in consumer_thread()
381 mlt_consumer_put_frame( self->play, frame ); in consumer_thread()
387 if ( mlt_consumer_is_stopped( self->play ) ) in consumer_thread()
403 pause = self->active == self->play; in consumer_thread()
408 if ( !mlt_consumer_is_stopped( self->play ) ) in consumer_thread()
409 mlt_consumer_stop( self->play ); in consumer_thread()
437 if ( mlt_consumer_is_stopped( self->play ) ) in consumer_thread()
440 self->active = self->play; in consumer_thread()
442 mlt_consumer_start( self->play ); in consumer_thread()
444 if ( self->play ) in consumer_thread()
445 mlt_consumer_put_frame( self->play, frame ); in consumer_thread()
480 if ( self->play ) mlt_consumer_stop( self->play ); in consumer_thread()
498 mlt_consumer_close( self->play ); in consumer_close()