Remove old temporal API 53/110353/1 tizen_3.0_tv accepted/tizen/3.0/common/20170117.075656 accepted/tizen/3.0/ivi/20170117.005446 accepted/tizen/3.0/mobile/20170117.005359 accepted/tizen/3.0/tv/20170117.005418 accepted/tizen/3.0/wearable/20170117.005436 submit/tizen_3.0/20170116.080558
authorSeungbae Shin <seungbae.shin@samsung.com>
Mon, 16 Jan 2017 05:11:37 +0000 (14:11 +0900)
committerSeungbae Shin <seungbae.shin@samsung.com>
Mon, 16 Jan 2017 05:11:37 +0000 (14:11 +0900)
[Version] 0.1.13
[Profile] Common
[Issue Type] Cleanup

Change-Id: I008649140a0b520be974957516acee9d425cf41e

include/tone_player.h
packaging/capi-media-tone-player.spec
src/tone_player.c

index fded30d..1e8aff5 100755 (executable)
@@ -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.
  *
index 8d2b412..43666e0 100755 (executable)
@@ -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
index bca6f85..4edf16d 100755 (executable)
@@ -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));