Add new API including loop count
[platform/core/api/wav-player.git] / src / wav_player.c
1 /*
2 * Copyright (c) 2011-2016 Samsung Electronics Co., Ltd All Rights Reserved
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 #define LOG_TAG "TIZEN_N_WAV_PLAYER"
18
19 #include <sound_manager.h>
20 #include <sound_manager_internal.h>
21 #include <mm_sound.h>
22 #include <mm_sound_private.h>
23 #include <stdio.h>
24 #include <limits.h>
25 #include <string.h>
26 #include <unistd.h>
27 #include <dlog.h>
28 #include <stdlib.h>
29 #include "wav_player.h"
30 #include "wav_player_private.h"
31
32 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)
33 {
34         return _start_with_stream_info(path, stream_info, 1, callback, user_data, id);
35 }
36
37 int wav_player_start_loop(const char *path, sound_stream_info_h stream_info, unsigned int loop_count, wav_player_playback_completed_cb callback, void *user_data, int *id)
38 {
39         return _start_with_stream_info(path, stream_info, loop_count, callback, user_data, id);
40 }
41
42 int wav_player_stop(int id)
43 {
44         return _convert_wav_player_error_code(__func__, mm_sound_stop_sound(id));
45 }
46