Lines Matching refs:b_props

130 	mlt_properties b_props = MLT_FRAME_PROPERTIES( frame_b );  in transition_get_audio()  local
162 silent = mlt_properties_get_int( b_props, "silent_audio" ); in transition_get_audio()
163 mlt_properties_set_int( b_props, "silent_audio", 0 ); in transition_get_audio()
241 if ( mlt_properties_get( b_props, "audio.previous_mix" ) ) in transition_get_audio()
242 mix_start = mlt_properties_get_double( b_props, "audio.previous_mix" ); in transition_get_audio()
243 if ( mlt_properties_get( b_props, "audio.mix" ) ) in transition_get_audio()
244 mix_end = mlt_properties_get_double( b_props, "audio.mix" ); in transition_get_audio()
245 if ( mlt_properties_get_int( b_props, "audio.reverse" ) ) in transition_get_audio()
262 if ( mlt_properties_get( b_props, "audio.previous_mix" ) ) in transition_get_audio()
263 mix_start = mlt_properties_get_double( b_props, "audio.previous_mix" ); in transition_get_audio()
264 if ( mlt_properties_get( b_props, "audio.mix" ) ) in transition_get_audio()
265 mix_end = mlt_properties_get_double( b_props, "audio.mix" ); in transition_get_audio()
266 if ( mlt_properties_get_int( b_props, "audio.reverse" ) ) in transition_get_audio()
280 if ( mlt_properties_get_int( b_props, "_speed" ) == 0 ) in transition_get_audio()
326 mlt_properties b_props = MLT_FRAME_PROPERTIES( b_frame ); in transition_process() local
359 mlt_properties_set_double( b_props, "audio.mix", mix ); in transition_process()
370 …mlt_properties_set_double( b_props, "audio.previous_mix", mlt_properties_get_double( properties, "… in transition_process()
373 …mlt_properties_set_double( properties, "_previous_mix", mlt_properties_get_double( b_props, "audio… in transition_process()
375 …mlt_properties_set_double( b_props, "audio.reverse", mlt_properties_get_double( properties, "rever… in transition_process()
396 mlt_properties_set_double( b_props, "audio.previous_mix", mix_start ); in transition_process()
397 mlt_properties_set_double( b_props, "audio.mix", mix_end ); in transition_process()