Remove old temporal API 51/110351/1 tizen_3.0_tv accepted/tizen/3.0/common/20170117.075658 accepted/tizen/3.0/ivi/20170117.005448 accepted/tizen/3.0/mobile/20170117.005400 accepted/tizen/3.0/tv/20170117.005419 accepted/tizen/3.0/wearable/20170117.005437 submit/tizen_3.0/20170116.080558
authorSeungbae Shin <seungbae.shin@samsung.com>
Mon, 16 Jan 2017 05:09:42 +0000 (14:09 +0900)
committerSeungbae Shin <seungbae.shin@samsung.com>
Mon, 16 Jan 2017 05:09:42 +0000 (14:09 +0900)
[Version] 0.1.24
[Profile] Common
[Issue Type] Cleanup

Change-Id: Ie93104f01b16af2a3c9abbda1b57eb26b7739fe8

include/wav_player.h
packaging/capi-media-wav-player.spec
src/wav_player.c

index 8989ea1..e407f40 100644 (file)
@@ -128,9 +128,6 @@ int wav_player_start(const char *path, sound_type_e type, wav_player_playback_co
  */
 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
index ac2083e..2105807 100755 (executable)
@@ -1,6 +1,6 @@
 Name:       capi-media-wav-player
 Summary:    A wav player library in Tizen C API
-Version:    0.1.23
+Version:    0.1.24
 Release:    0
 Group:      Multimedia/API
 License:    Apache-2.0
index 059c9fa..a8f3049 100755 (executable)
@@ -81,12 +81,6 @@ int wav_player_start_new(const char *path, sound_stream_info_h stream_info, wav_
        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));