summaryrefslogtreecommitdiff
path: root/tizen-audio.h
blob: 15ee937ca70cf6a2ac907240377312a68c3c8403 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
/*
 * audio-hal
 *
 * Copyright (c) 2015 - 2016 Samsung Electronics Co., Ltd. All rights reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 */

#ifndef footizenaudiofoo
#define footizenaudiofoo

#include <stdint.h>
#include <hal/hal-audio-interface.h>

/**
 * @file tizen-audio.h
 * @brief This file contains the Audio Hardware Abstraction Layer Interfaces.
 */

/**
 * @addtogroup TIZEN_AUDIO_HAL_MODULE
 * @{
 */

/**
 * @brief Initializes audio hal.
 * @since_tizen 3.0
 * @param[out] audio_handle The audio hal handle
 *
 * @return @c 0 on success,
 *         otherwise a negative error value
 * @retval #AUDIO_RET_OK Success
 * @see audio_deinit()
 */
audio_return_e audio_init(void **audio_handle);

/**
 * @brief De-initializes audio hal.
 * @since_tizen 3.0
 * @param[in] audio_handle The audio hal handle
 *
 * @return @c 0 on success,
 *         otherwise a negative error value
 * @retval #AUDIO_RET_OK Success
 * @see audio_init()
 */
audio_return_e audio_deinit(void *audio_handle);

/**
 * @brief Gets the maximum volume level supported for a particular volume information.
 * @since_tizen 3.0
 * @param[in] audio_handle The audio hal handle
 * @param[in] info The audio volume information
 * @param[out] level The maximum volume level
 *
 * @return @c 0 on success,
 *         otherwise a negative error value
 * @retval #AUDIO_RET_OK Success
 * @see audio_set_volume_level()
 * @see audio_get_volume_level()
 * @see audio_get_volume_value()
 */
audio_return_e audio_get_volume_level_max(void *audio_handle, audio_volume_info_s *info, uint32_t *level);

/**
 * @brief Gets the volume level specified for a particular volume information.
 * @since_tizen 3.0
 * @param[in] audio_handle The audio hal handle
 * @param[in] info The audio volume information
 * @param[out] level The current volume level
 *
 * @return @c 0 on success,
 *         otherwise a negative error value
 * @retval #AUDIO_RET_OK Success
 * @see audio_set_volume_level()
 * @see audio_get_volume_level_max()
 * @see audio_get_volume_value()
 */
audio_return_e audio_get_volume_level(void *audio_handle, audio_volume_info_s *info, uint32_t *level);

/**
 * @brief Sets the volume level specified for a particular volume information.
 * @since_tizen 3.0
 * @param[in] audio_handle The audio hal handle
 * @param[in] info The audio volume information
 * @param[in] level The volume level to be set
 *
 * @return @c 0 on success,
 *         otherwise a negative error value
 * @retval #AUDIO_RET_OK Success
 * @see audio_get_volume_level()
 * @see audio_get_volume_level_max()
 * @see audio_get_volume_value()
 */
audio_return_e audio_set_volume_level(void *audio_handle, audio_volume_info_s *info, uint32_t level);

/**
 * @brief Gets the volume value specified for a particular volume information and level.
 * @since_tizen 3.0
 * @param[in] audio_handle The audio hal handle
 * @param[in] info The audio volume information
 * @param[in] level The volume level
 * @param[out] value The volume value (range is from 0.0 to 1.0 inclusive, 1.0 = 100%)
 *
 * @return @c 0 on success,
 *         otherwise a negative error value
 * @retval #AUDIO_RET_OK Success
 * @see audio_set_volume_level()
 * @see audio_get_volume_level()
 * @see audio_get_volume_level_max()
 */
audio_return_e audio_get_volume_value(void *audio_handle, audio_volume_info_s *info, uint32_t level, double *value);

/**
 * @brief Gets the volume mute specified for a particular volume information.
 * @since_tizen 3.0
 * @param[in] audio_handle The audio hal handle
 * @param[in] info The audio volume information
 * @param[out] mute The volume mute state : (@c 0 = unmute, @c 1 = mute)
 *
 * @return @c 0 on success,
 *         otherwise a negative error value
 * @retval #AUDIO_RET_OK Success
 * @see audio_set_volume_mute()
 */
audio_return_e audio_get_volume_mute(void *audio_handle, audio_volume_info_s *info, uint32_t *mute);

/**
 * @brief Sets the volume mute specified for a particular volume information.
 * @since_tizen 3.0
 * @param[in] audio_handle The audio hal handle
 * @param[in] info The audio volume information
 * @param[in] mute The volume mute state to be set : (@c 0 = unmute, @c 1 = mute)
 *
 * @return @c 0 on success,
 *         otherwise a negative error value
 * @retval #AUDIO_RET_OK Success
 * @see audio_get_volume_mute()
 */
audio_return_e audio_set_volume_mute(void *audio_handle, audio_volume_info_s *info, uint32_t mute);

/**
 * @brief Sets the volume ratio specified for a particular volume information. (optional)
 * @since_tizen 5.5
 * @param[in] audio_handle The audio hal handle
 * @param[in] info The audio volume information
 * @param[in] ratio The volume ratio to be set (Min.:0.0 ~ Max.:1.0, default:1.0)
 *
 * @return @c 0 on success,
 *         otherwise a negative error value
 * @retval #AUDIO_RET_OK Success
 */
audio_return_e audio_set_volume_ratio(void *audio_handle, audio_stream_info_s *info, double ratio);

/**
 * @brief Gets notified when a ducking is activated and deactivated.
 * @since_tizen 5.5
 * @param[in] audio_handle The audio hal handle
 * @param[in] info The ducking information including target role, duration and ratio
 * @param[in] is_activated The activation state (@c true = activated, @c false = deactivated)
 *
 * @remarks This information can be used for volume controls.
 *
 * @return @c 0 on success,
 *         otherwise a negative error value
 * @retval #AUDIO_RET_OK Success
 */
audio_return_e audio_notify_ducking_activation_changed(void *audio_handle, audio_ducking_info_s *info, uint32_t is_activated);

/**
 * @brief Updates the audio routing according to audio route information.
 * @since_tizen 3.0
 * @param[in] audio_handle The audio hal handle
 * @param[in] info The audio route information including role and devices
 *
 * @return @c 0 on success,
 *         otherwise a negative error value
 * @retval #AUDIO_RET_OK Success
 * @see audio_update_route_option()
 */
audio_return_e audio_update_route(void *audio_handle, audio_route_info_s *info);

/**
 * @brief Updates audio routing option according to audio route option.
 * @since_tizen 3.0
 * @param[in] audio_handle The audio hal handle
 * @param[in] option The option that can be used for audio routing including role, name and value
 *
 * @remarks This option can be used for audio routing.\n
 * It is recommended to apply this option for routing per each role.
 *
 * @return @c 0 on success,
 *         otherwise a negative error value
 * @retval #AUDIO_RET_OK Success
 * @see audio_update_route()
 */
audio_return_e audio_update_route_option(void *audio_handle, audio_route_option_s *option);

/**
 * @brief Gets notified when a stream is connected and disconnected.
 * @since_tizen 3.0
 * @param[in] audio_handle The audio hal handle
 * @param[in] info The stream information including role, direction, index
 * @param[in] is_connected The connection state of this stream (@c true = connected, @c false = disconnected)
 *
 * @remarks This information can be used for audio routing, volume controls and so on.
 *
 * @return @c 0 on success,
 *         otherwise a negative error value
 * @retval #AUDIO_RET_OK Success
 */
audio_return_e audio_notify_stream_connection_changed(void *audio_handle, audio_stream_info_s *info, uint32_t is_connected);

/**
 * @brief Opens a PCM device.
 * @since_tizen 3.0
 * @param[in] audio_handle The audio hal handle
 * @param[in] card The card of PCM
 * @param[in] device The device of PCM
 * @param[in] direction The direction of PCM
 * @param[in] sample_spec The sample specification
 * @param[in] period_size The period size
 * @param[in] periods The periods
 * @param[out] pcm_handle The PCM handle
 *
 * @return @c 0 on success,
 *         otherwise a negative error value
 * @retval #AUDIO_RET_OK Success
 * @see audio_pcm_close()
 */
audio_return_e audio_pcm_open(void *audio_handle, const char *card, const char *device, uint32_t direction, void *sample_spec, uint32_t period_size, uint32_t periods, void **pcm_handle);

/**
 * @brief Starts a PCM device.
 * @since_tizen 3.0
 * @param[in] audio_handle The audio hal handle
 * @param[in] pcm_handle The PCM handle to be started
 *
 * @return @c 0 on success,
 *         otherwise a negative error value
 * @retval #AUDIO_RET_OK Success
 * @see audio_pcm_avail()
 * @see audio_pcm_write()
 * @see audio_pcm_read()
 * @see audio_pcm_stop()
 * @see audio_pcm_recover()
 */
audio_return_e audio_pcm_start(void *audio_handle, void *pcm_handle);

/**
 * @brief Stops a PCM device.
 * @since_tizen 3.0
 * @param[in] audio_handle The audio hal handle
 * @param[in] pcm_handle The PCM handle to be stopped
 *
 * @return @c 0 on success,
 *         otherwise a negative error value
 * @retval #AUDIO_RET_OK Success
 * @see audio_pcm_start()
 */
audio_return_e audio_pcm_stop(void *audio_handle, void *pcm_handle);

/**
 * @brief Closes a PCM device.
 * @since_tizen 3.0
 * @param[in] audio_handle The audio hal handle
 * @param[in] pcm_handle The PCM handle to be closed
 *
 * @return @c 0 on success,
 *         otherwise a negative error value
 * @retval #AUDIO_RET_OK Success
 * @see audio_pcm_open()
 */
audio_return_e audio_pcm_close(void *audio_handle, void *pcm_handle);

/**
 * @brief Gets available number of frames.
 * @since_tizen 3.0
 * @param[in] audio_handle The audio hal handle
 * @param[in] pcm_handle The PCM handle
 * @param[out] avail The available number of frames
 *
 * @return @c 0 on success,
 *         otherwise a negative error value
 * @retval #AUDIO_RET_OK Success
 * @see audio_pcm_write()
 * @see audio_pcm_read()
 */
audio_return_e audio_pcm_avail(void *audio_handle, void *pcm_handle, uint32_t *avail);

/**
 * @brief Writes frames to a PCM device.
 * @since_tizen 3.0
 * @param[in] audio_handle The audio hal handle
 * @param[in] pcm_handle The PCM handle
 * @param[in] buffer The buffer containing frames
 * @param[in] frames The number of frames to be written
 *
 * @return @c 0 on success,
 *         otherwise a negative error value
 * @retval #AUDIO_RET_OK Success
 * @see audio_pcm_avail()
 * @see audio_pcm_recover()
 */
audio_return_e audio_pcm_write(void *audio_handle, void *pcm_handle, const void *buffer, uint32_t frames);

/**
 * @brief Reads frames from a PCM device.
 * @since_tizen 3.0
 * @param[in] audio_handle The audio hal handle
 * @param[in] pcm_handle The PCM handle
 * @param[out] buffer The buffer containing frames
 * @param[in] frames The number of frames to be read
 *
 * @return @c 0 on success,
 *         otherwise a negative error value
 * @retval #AUDIO_RET_OK Success
 * @see audio_pcm_avail()
 * @see audio_pcm_recover()
 */
audio_return_e audio_pcm_read(void *audio_handle, void *pcm_handle, void *buffer, uint32_t frames);

/**
 * @brief Gets poll descriptor for a PCM handle.
 * @since_tizen 3.0
 * @param[in] audio_handle The audio hal handle
 * @param[in] pcm_handle The PCM handle
 * @param[out] fd The poll descriptor
 *
 * @return @c 0 on success,
 *         otherwise a negative error value
 * @retval #AUDIO_RET_OK Success
 * @see audio_pcm_open()
 * @see audio_pcm_recover()
 */
audio_return_e audio_pcm_get_fd(void *audio_handle, void *pcm_handle, int *fd);

/**
 * @brief Recovers the PCM state.
 * @since_tizen 3.0
 * @param[in] audio_handle The audio hal handle
 * @param[in] pcm_handle The PCM handle
 * @param[in] revents The returned event from pollfd
 *
 * @return @c 0 on success,
 *         otherwise a negative error value
 * @retval #AUDIO_RET_OK Success
 * @see audio_pcm_start()
 * @see audio_pcm_write()
 * @see audio_pcm_read()
 * @see audio_pcm_get_fd()
 */
audio_return_e audio_pcm_recover(void *audio_handle, void *pcm_handle, int revents);

/**
 * @brief Gets parameters of a PCM device.
 * @since_tizen 3.0
 * @param[in] audio_handle The audio hal handle
 * @param[in] pcm_handle The PCM handle
 * @param[in] direction The direction of PCM
 * @param[out] sample_spec The sample specification
 * @param[out] period_size The period size
 * @param[out] periods The periods
 *
 * @return @c 0 on success,
 *         otherwise a negative error value
 * @retval #AUDIO_RET_OK Success
 * @see audio_pcm_set_params()
 */
audio_return_e audio_pcm_get_params(void *audio_handle, void *pcm_handle, uint32_t direction, void *sample_spec, uint32_t *period_size, uint32_t *periods);

/**
 * @brief Sets hardware and software parameters of a PCM device.
 * @since_tizen 3.0
 * @param[in] audio_handle The audio hal handle
 * @param[in] pcm_handle The PCM handle
 * @param[in] direction The direction of PCM
 * @param[in] sample_spec The sample specification
 * @param[in] period_size The period size
 * @param[in] periods The periods
 *
 * @return @c 0 on success,
 *         otherwise a negative error value
 * @retval #AUDIO_RET_OK Success
 * @see audio_pcm_set_params()
 */
audio_return_e audio_pcm_set_params(void *audio_handle, void *pcm_handle, uint32_t direction, void *sample_spec, uint32_t period_size, uint32_t periods);

/**
 * @brief Adds the message callback function.
 * @since_tizen 3.0
 * @param[in] audio_handle The audio hal handle
 * @param[in] message_cb The message callback function
 * @param[in] user_data The user data passed to the callback function
 *
 * @see message_cb()
 * @see audio_remove_message_cb()
 */
audio_return_e audio_add_message_cb(void *audio_handle, message_cb callback, void *user_data);

/**
 * @brief Removes the message callback function.
 * @since_tizen 3.0
 * @param[in] audio_handle The audio hal handle
 * @param[in] message_cb The message callback function to be removed
 *
 * @see message_cb()
 * @see audio_add_message_cb()
 */
audio_return_e audio_remove_message_cb(void *audio_handle, message_cb callback);

/**
* @}
*/

/**
* @}
*/

#endif