From a1216de770e49151bada19c413bfd5a887db053f Mon Sep 17 00:00:00 2001 From: Seungbae Shin Date: Mon, 16 Jan 2017 14:11:37 +0900 Subject: [PATCH] Remove old temporal API [Version] 0.1.13 [Profile] Common [Issue Type] Cleanup Change-Id: I008649140a0b520be974957516acee9d425cf41e --- include/tone_player.h | 3 --- packaging/capi-media-tone-player.spec | 2 +- src/tone_player.c | 7 ------- 3 files changed, 1 insertion(+), 11 deletions(-) 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)); -- 2.7.4