*/
int tone_player_start_new(tone_type_e tone, sound_stream_info_h stream_info, int duration_ms, int *id);
-/* Note : Will be removed after migration to tone_player_start_new */
-int tone_player_start_with_stream_info(tone_type_e tone, sound_stream_info_h stream_info, int duration_ms, int *id);
-
/**
* @brief Stops playing the tone.
*
return __convert_tone_player_error_code(__func__, ret);
}
-/* Note : Will be removed after migration to tone_player_start_new */
-int tone_player_start_with_stream_info(tone_type_e tone, sound_stream_info_h stream_info, int duration, int *id)
-{
- return tone_player_start_new(tone, stream_info, duration, id);
-}
-
-
int tone_player_stop(int id)
{
return __convert_tone_player_error_code(__func__, mm_sound_stop_sound(id));