*/
int wav_player_start_new(const char *path, sound_stream_info_h stream_info, wav_player_playback_completed_cb callback, void *user_data, int *id);
-/* Note : Will be removed after migration to wav_player_start_new */
-int wav_player_start_with_stream_info(const char *path, sound_stream_info_h stream_info, wav_player_playback_completed_cb callback, void *user_data, int *id);
-
/**
* @brief Stops playing the WAV file.
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
return _start_with_stream_info(path, stream_info, 1, callback, user_data, id);
}
-/* Note : Will be removed after migration to wav_player_start_new */
-int wav_player_start_with_stream_info(const char *path, sound_stream_info_h stream_info, wav_player_playback_completed_cb callback, void *user_data, int *id)
-{
- return _start_with_stream_info(path, stream_info, 1, callback, user_data, id);
-}
-
int wav_player_stop(int id)
{
return _convert_wav_player_error_code(__func__, mm_sound_stop_sound(id));