Merge branch 'tizen_3.0' into tizen
[platform/core/api/sound-manager.git] / include / sound_manager_internal.h
1 /*
2 * Copyright (c) 2015 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 #ifndef __TIZEN_MEDIA_SOUND_MANAGER_INTERNAL_H__
18 #define __TIZEN_MEDIA_SOUND_MANAGER_INTERNAL_H__
19
20 #ifdef __cplusplus
21 extern "C"
22 {
23 #endif
24
25 /**
26  * @file sound_manager_internal.h
27  * @brief This file contains the Sound Manager Internal API.
28  */
29
30 /**
31  * @addtogroup CAPI_MEDIA_SOUND_MANAGER_MODULE
32  * @{
33  */
34
35 #define SOUND_TYPE_NUM                SOUND_TYPE_VOICE + 1
36
37 /**
38  * @internal
39  * @brief Virtual sound stream handle.
40  * @since_tizen 3.0
41  */
42 typedef struct virtual_sound_stream_s* virtual_sound_stream_h;
43
44 /**
45  * @internal
46  * @brief Enumeration for Native API.
47  * @since_tizen 3.0
48  */
49 typedef enum {
50         NATIVE_API_SOUND_MANAGER,   /**< Sound-manager Native API */
51         NATIVE_API_PLAYER,          /**< Player Native API */
52         NATIVE_API_WAV_PLAYER,      /**< Wav-player Native API */
53         NATIVE_API_TONE_PLAYER,     /**< Tone-player Native API */
54         NATIVE_API_AUDIO_IO,        /**< Audio-io Native API */
55         NATIVE_API_RECORDER,        /**< Recorder Native API */
56 } native_api_e;
57
58 /**
59  * @internal
60  * @brief Enumeration for sound stream type for internal.
61  * @since_tizen 3.0
62  */
63 typedef enum {
64         SOUND_STREAM_TYPE_RINGTONE_CALL = 100, /**< Sound stream type for ringtone for call */
65         SOUND_STREAM_TYPE_RINGBACKTONE_CALL,   /**< Sound stream type for ringback tone for call */
66         SOUND_STREAM_TYPE_VOICE_CALL,          /**< Sound stream type for voice-call */
67         SOUND_STREAM_TYPE_VIDEO_CALL,          /**< Sound stream type for video-call */
68         SOUND_STREAM_TYPE_RADIO,               /**< Sound stream type for radio */
69         SOUND_STREAM_TYPE_LOOPBACK,            /**< Sound stream type for loopback */
70         SOUND_STREAM_TYPE_LOOPBACK_MIRRORING,  /**< Sound stream type for loopback-mirroring */
71         SOUND_STREAM_TYPE_SOLO,                /**< Sound stream type for solo */
72 } sound_stream_type_internal_e;
73
74 /**
75  * @internal
76  * @brief Gets the maximum master volume level.
77  * @since_tizen 3.0
78  * @param[out]  max_level       The maximum volume level
79  * @return @c 0 on success,
80  *         otherwise a negative error value
81  * @retval #SOUND_MANAGER_ERROR_NONE Success
82  * @retval #SOUND_MANAGER_ERROR_INVALID_PARAMETER Invalid parameter
83  * @retval #SOUND_MANAGER_ERROR_INTERNAL Internal error inside the sound system
84  * @see sound_manager_set_master_volume()
85  * @see sound_manager_get_master_volume()
86  */
87 int sound_manager_get_max_master_volume(int *max_level);
88
89 /**
90  * @internal
91  * @brief Sets the master volume level.
92  * @since_tizen 3.0
93  * @param[in]   level   The volume level to be set
94  * @return @c 0 on success,
95  *         otherwise a negative error value
96  * @retval #SOUND_MANAGER_ERROR_NONE Success
97  * @retval #SOUND_MANAGER_ERROR_INVALID_PARAMETER Invalid parameter
98  * @retval #SOUND_MANAGER_ERROR_INTERNAL Internal error inside the sound system
99  * @see sound_manager_get_max_master_volume()
100  * @see sound_manager_get_master_volume()
101  */
102 int sound_manager_set_master_volume(int level);
103
104 /**
105  * @internal
106  * @brief Gets the master volume level.
107  * @since_tizen 3.0
108  * @param[out]  level   The current master volume level
109  * @return @c 0 on success,
110  *         otherwise a negative error value
111  * @retval #SOUND_MANAGER_ERROR_NONE Success
112  * @retval #SOUND_MANAGER_ERROR_INVALID_PARAMETER Invalid parameter
113  * @retval #SOUND_MANAGER_ERROR_INTERNAL Internal error inside the sound system
114  * @see sound_manager_get_max_master_volume()
115  * @see sound_manager_set_master_volume()
116  */
117 int sound_manager_get_master_volume(int *level);
118
119 /**
120  * @internal
121  * @brief Creates a handle for stream information.
122  * @since_tizen 3.0
123  *
124  * @remarks     Do not call this API within sound_stream_focus_state_changed_cb() and sound_stream_focus_state_watch_cb(),\n
125  *      otherwise SOUND_MANAGER_ERROR_INVALID_OPERATION will be returned.\n
126  *      To apply the stream policy according to this stream information, this handle should be passed to other APIs\n
127  *      related to playback or recording.(e.g. player, wav-player, audio-io, etc.)
128  *
129  * @param[in]   stream_type     The type of stream for internal usage
130  * @param[in]   callback        The focus state change callback function
131  * @param[in]   user_data       The user data to be passed to the callback function
132  * @param[out]  stream_info     The handle of stream information
133  * @return @c 0 on success,
134  *         otherwise a negative error value
135  * @retval #SOUND_MANAGER_ERROR_NONE Success
136  * @retval #SOUND_MANAGER_ERROR_INVALID_PARAMETER Invalid parameter
137  * @retval #SOUND_MANAGER_ERROR_INVALID_OPERATION Invalid operation
138  * @retval #SOUND_MANAGER_ERROR_INTERNAL Internal error inside the sound system
139  * @see sound_manager_destroy_stream_information()
140  * @see sound_manager_add_device_for_stream_routing()
141  * @see sound_manager_remove_device_for_stream_routing()
142  * @see sound_manager_apply_stream_routing()
143  * @see sound_manager_acquire_focus()
144  * @see sound_manager_destroy_focus()
145  * @see sound_manager_get_focus_state()
146  */
147 int sound_manager_create_stream_information_internal(sound_stream_type_internal_e stream_type, sound_stream_focus_state_changed_cb callback, void *user_data, sound_stream_info_h *stream_info);
148
149 /**
150  * @internal
151  * @brief Sets the stream routing option.
152  * @since_tizen 3.0
153  *
154  * @remarks     If the stream has not been made yet, this setting will be applied when the stream starts to play.
155  *
156  * @param[in]   stream_info     The handle of stream information
157  * @param[in]   name    The name of option
158  * @param[in]   value   The value of option
159  * @return @c 0 on success,
160  *         otherwise a negative error value
161  * @retval #SOUND_MANAGER_ERROR_NONE Success
162  * @retval #SOUND_MANAGER_ERROR_INVALID_PARAMETER Invalid parameter
163  * @retval #SOUND_MANAGER_ERROR_INVALID_STATE Invalid state
164  * @retval #SOUND_MANAGER_ERROR_INTERNAL Internal error inside the sound system
165  * @pre Call sound_manager_create_stream_information() before calling this function.
166  * @see sound_manager_create_stream_information()
167  * @see sound_manager_create_stream_information_internal()
168  * @see sound_manager_destroy_stream_information()
169  */
170 int sound_manager_set_stream_routing_option(sound_stream_info_h stream_info, const char *name, int value);
171
172 /**
173  * @internal
174  * @brief Queries if this stream information handle is available for the API.
175  * @since_tizen 3.0
176  * @param[in]   stream_info     The handle of stream information
177  * @param[in]   api_name        The native API name
178  * @param[out]  is_available    If @c true the api_name is available, @c false the api_name is not available for this strema_info
179  * @return @c 0 on success,
180  *         otherwise a negative error value
181  * @retval #SOUND_MANAGER_ERROR_NONE Success
182  * @retval #SOUND_MANAGER_ERROR_INVALID_PARAMETER Invalid parameter
183  * @see sound_manager_create_stream_information()
184  * @see sound_manager_destroy_stream_information()
185  */
186 int sound_manager_is_available_stream_information(sound_stream_info_h stream_info, native_api_e api_name, bool *is_available);
187
188 /**
189  * @internal
190  * @brief Gets stream type from the stream information handle.
191  * @since_tizen 3.0
192  * @param[in]   stream_info     The handle of stream information
193  * @param[out]  type    The stream type
194  * @return @c 0 on success,
195  *         otherwise a negative error value
196  * @retval #SOUND_MANAGER_ERROR_NONE Success
197  * @retval #SOUND_MANAGER_ERROR_INVALID_PARAMETER Invalid parameter
198  * @see sound_manager_create_stream_information()
199  * @see sound_manager_destroy_stream_information()
200  */
201 int sound_manager_get_type_from_stream_information(sound_stream_info_h stream_info, char **type);
202
203 /**
204  * @internal
205  * @brief Gets the index of the stream information handle.
206  * @since_tizen 3.0
207  * @param[in]   stream_info     The handle of stream information
208  * @param[out]  index   The unique index
209  *
210  * @return @c 0 on success,
211  *         otherwise a negative error value
212  * @retval #SOUND_MANAGER_ERROR_NONE Success
213  * @retval #SOUND_MANAGER_ERROR_INVALID_PARAMETER Invalid parameter
214  * @see sound_manager_create_stream_information()
215  * @see sound_manager_destroy_stream_information()
216  */
217 int sound_manager_get_index_from_stream_information(sound_stream_info_h stream_info, int *index);
218
219 /**
220  * @internal
221  * @brief Gets the internal stream information handle for VoIP session.
222  * @since_tizen 3.0
223  *
224  * @remarks     If VoIP session is not set in this process, it'll return #SOUND_MANAGER_ERROR_NO_DATA.
225  *
226  * @param[out]  stream_info     The handle of stream information
227  *
228  * @return @c 0 on success,
229  *         otherwise a negative error value
230  * @retval #SOUND_MANAGER_ERROR_NONE Success
231  * @retval #SOUND_MANAGER_ERROR_INVALID_PARAMETER Invalid parameter
232  * @retval #SOUND_MANAGER_ERROR_NO_DATA No data
233  * @retval #SOUND_MANAGER_ERROR_INTERNAL Internal error inside the sound system
234  * @see sound_manager_set_session_type()
235  * @see sound_manager_set_voip_session_mode()
236  */
237 int sound_manager_get_internal_voip_stream_information(sound_stream_info_h *stream_info);
238
239 /**
240  * @internal
241  * @brief Disable session backward compatibility.
242  * @since_tizen 3.0
243  *
244  * @remarks     Multimedia framework support backward compatibility of legacy sound session. \n
245  *      If a process does not want legacy sound session behavior in each multimedia framework, \n
246  *      this function can be used explicitly not to support that.
247  *
248  * @return @c 0 on success,
249  *         otherwise a negative error value
250  * @retval #SOUND_MANAGER_ERROR_NONE Success
251  * @retval #SOUND_MANAGER_ERROR_INVALID_PARAMETER Invalid parameter
252  * @retval #SOUND_MANAGER_ERROR_INTERNAL Internal error inside the sound system
253  */
254 int sound_manager_disable_session_backward_compatibility(void);
255
256 /**
257  * @internal
258  * @brief Creates a virtual stream handle.
259  * @since_tizen 3.0
260  * @param[in]   stream_info     The handle of stream information
261  * @param[out]  virtual_stream  The handle of virtual stream
262  * @return @c 0 on success,
263  *         otherwise a negative error value
264  * @retval #SOUND_MANAGER_ERROR_NONE Success
265  * @retval #SOUND_MANAGER_ERROR_INVALID_PARAMETER Invalid parameter
266  * @retval #SOUND_MANAGER_ERROR_INTERNAL Internal error inside the sound system
267  * @retval #SOUND_MANAGER_ERROR_NOT_SUPPORTED Not supported
268  * @see sound_manager_create_stream_information()
269  * @see sound_manager_destroy_stream_information()
270  * @see sound_manager_destroy_virtual_stream()
271  * @see sound_manager_start_virtual_stream()
272  * @see sound_manager_stop_virtual_stream()
273  */
274 int sound_manager_create_virtual_stream(sound_stream_info_h stream_info, virtual_sound_stream_h *virtual_stream);
275
276 /**
277  * @internal
278  * @brief Destroys the virtual stream handle.
279  * @since_tizen 3.0
280  * @param[in]   virtual_stream  The handle of virtual stream
281  * @return @c 0 on success,
282  *         otherwise a negative error value
283  * @retval #SOUND_MANAGER_ERROR_NONE Success
284  * @retval #SOUND_MANAGER_ERROR_INVALID_PARAMETER Invalid parameter
285  * @retval #SOUND_MANAGER_ERROR_INVALID_STATE Invalid state
286  * @see sound_manager_create_virtual_stream()
287  * @see sound_manager_start_virtual_stream()
288  * @see sound_manager_stop_virtual_stream()
289  */
290 int sound_manager_destroy_virtual_stream(virtual_sound_stream_h virtual_stream);
291
292 /**
293  * @internal
294  * @brief Starts the virtual stream.
295  * @since_tizen 3.0
296  * @param[in]   virtual_stream  The handle of virtual stream
297  * @return @c 0 on success,
298  *         otherwise a negative error value
299  * @retval #SOUND_MANAGER_ERROR_NONE Success
300  * @retval #SOUND_MANAGER_ERROR_INVALID_PARAMETER Invalid parameter
301  * @retval #SOUND_MANAGER_ERROR_INVALID_STATE Invalid state
302  * @retval #SOUND_MANAGER_ERROR_INTERNAL Internal error inside the sound system
303  * @see sound_manager_create_virtual_stream()
304  * @see sound_manager_destroy_virtual_stream()
305  * @see sound_manager_stop_virtual_stream()
306  */
307 int sound_manager_start_virtual_stream(virtual_sound_stream_h virtual_stream);
308
309 /**
310  * @internal
311  * @brief Stops the virtual stream.
312  * @since_tizen 3.0
313  * @param[in]   virtual_stream  The handle of virtual stream
314  * @return @c 0 on success,
315  *         otherwise a negative error value
316  * @retval #SOUND_MANAGER_ERROR_NONE Success
317  * @retval #SOUND_MANAGER_ERROR_INVALID_PARAMETER Invalid parameter
318  * @retval #SOUND_MANAGER_ERROR_INVALID_STATE Invalid state
319  * @see sound_manager_create_virtual_stream()
320  * @see sound_manager_destroy_virtual_stream()
321  * @see sound_manager_start_virtual_stream()
322  */
323 int sound_manager_stop_virtual_stream(virtual_sound_stream_h virtual_stream);
324
325 /**
326  * @}
327  */
328
329 #ifdef __cplusplus
330 }
331 #endif
332
333 #endif /* __TIZEN_MEDIA_SOUND_MANAGER_INTERNAL_H__ */