From: Seungbae Shin Date: Mon, 16 Jan 2017 05:11:37 +0000 (+0900) Subject: Remove old temporal API X-Git-Tag: submit/tizen_3.0/20170116.080558^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a1216de770e49151bada19c413bfd5a887db053f;p=platform%2Fcore%2Fapi%2Ftone-player.git Remove old temporal API [Version] 0.1.13 [Profile] Common [Issue Type] Cleanup Change-Id: I008649140a0b520be974957516acee9d425cf41e --- diff --git a/include/tone_player.h b/include/tone_player.h index fded30d..1e8aff5 100755 --- a/include/tone_player.h +++ b/include/tone_player.h @@ -232,9 +232,6 @@ int tone_player_start(tone_type_e tone, sound_type_e type, int duration_ms, int */ 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. * diff --git a/packaging/capi-media-tone-player.spec b/packaging/capi-media-tone-player.spec index 8d2b412..43666e0 100755 --- a/packaging/capi-media-tone-player.spec +++ b/packaging/capi-media-tone-player.spec @@ -1,6 +1,6 @@ Name: capi-media-tone-player Summary: A tone player library in Tizen C API -Version: 0.1.12 +Version: 0.1.13 Release: 0 Group: Multimedia/API License: Apache-2.0 diff --git a/src/tone_player.c b/src/tone_player.c index bca6f85..4edf16d 100755 --- a/src/tone_player.c +++ b/src/tone_player.c @@ -108,13 +108,6 @@ int tone_player_start_new(tone_type_e tone, sound_stream_info_h stream_info, int 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));