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()
155 mlt_properties play = MLT_CONSUMER_PROPERTIES( self->play ); in consumer_start() local
199 …mlt_properties_set_data( play, "transport_producer", mlt_properties_get_data( properties, "transpo… in consumer_start()
201 …mlt_properties_set_data( play, "transport_callback", mlt_properties_get_data( properties, "transpo… in consumer_start()
204 mlt_properties_set_int( play, "progressive", progressive ); in consumer_start()
207 mlt_properties_pass_list( play, properties, in consumer_start()
214 mlt_properties_pass( play, properties, "play." ); in consumer_start()
217 …mlt_properties_set_data( play, "app_lock", mlt_properties_get_data( properties, "app_lock", NULL )… in consumer_start()
219 …mlt_properties_set_data( play, "app_unlock", mlt_properties_get_data( properties, "app_unlock", NU… in consumer_start()
222 mlt_properties_set_int( play, "put_mode", 1 ); in consumer_start()
224 mlt_properties_set_int( play, "terminate_on_pause", 1 ); in consumer_start()
231 mlt_properties_set_int( play, "sdl_started", 1 ); in consumer_start()
286 mlt_consumer_purge( self->play ); in consumer_purge()
305 if ( self->play ) in consumer_thread()
306 …eos_threshold = eos_threshold + mlt_properties_get_int( MLT_CONSUMER_PROPERTIES( self->play ), "bu… in consumer_thread()
351 mlt_consumer_purge( self->play ); in consumer_thread()
368 if ( self->active == self->play ) in consumer_thread()
383 if ( frame && !mlt_consumer_is_stopped( self->play ) ) in consumer_thread()
385 mlt_consumer_put_frame( self->play, frame ); in consumer_thread()
391 if ( mlt_consumer_is_stopped( self->play ) ) in consumer_thread()
407 pause = self->active == self->play; in consumer_thread()
412 if ( !mlt_consumer_is_stopped( self->play ) ) in consumer_thread()
413 mlt_consumer_stop( self->play ); in consumer_thread()
441 if ( mlt_consumer_is_stopped( self->play ) ) in consumer_thread()
444 self->active = self->play; in consumer_thread()
446 mlt_consumer_start( self->play ); in consumer_thread()
448 if ( self->play ) in consumer_thread()
449 mlt_consumer_put_frame( self->play, frame ); in consumer_thread()
484 if ( self->play ) mlt_consumer_stop( self->play ); in consumer_thread()
502 mlt_consumer_close( self->play ); in consumer_close()