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
432
433
434
435
436
437
|
/*
* audio-hal
*
* Copyright (c) 2000 - 2013 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.
*
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
#include "tizen-audio-internal.h"
static device_type_t outDeviceTypes[] = {
{ AUDIO_DEVICE_OUT_SPEAKER, "Speaker" },
{ AUDIO_DEVICE_OUT_JACK, "Headphones" },
{ AUDIO_DEVICE_OUT_BT_SCO, "Bluetooth" },
{ AUDIO_DEVICE_OUT_AUX, "Line" },
{ AUDIO_DEVICE_OUT_HDMI, "HDMI" },
{ 0, 0 },
};
static device_type_t inDeviceTypes[] = {
{ AUDIO_DEVICE_IN_MAIN_MIC, "MainMic" },
{ AUDIO_DEVICE_IN_JACK, "HeadsetMic" },
{ AUDIO_DEVICE_IN_BT_SCO, "BT Mic" },
{ 0, 0 },
};
static uint32_t convert_device_string_to_enum(const char* device_str, uint32_t direction)
{
uint32_t device = 0;
if (!strncmp(device_str,"builtin-speaker", MAX_NAME_LEN)) {
device = AUDIO_DEVICE_OUT_SPEAKER;
} else if (!strncmp(device_str,"builtin-receiver", MAX_NAME_LEN)) {
device = AUDIO_DEVICE_OUT_RECEIVER;
} else if ((!strncmp(device_str,"audio-jack", MAX_NAME_LEN)) && (direction == AUDIO_DIRECTION_OUT)) {
device = AUDIO_DEVICE_OUT_JACK;
} else if ((!strncmp(device_str,"bt", MAX_NAME_LEN)) && (direction == AUDIO_DIRECTION_OUT)) {
device = AUDIO_DEVICE_OUT_BT_SCO;
} else if (!strncmp(device_str,"aux", MAX_NAME_LEN)) {
device = AUDIO_DEVICE_OUT_AUX;
} else if (!strncmp(device_str,"hdmi", MAX_NAME_LEN)) {
device = AUDIO_DEVICE_OUT_HDMI;
} else if ((!strncmp(device_str,"builtin-mic", MAX_NAME_LEN))) {
device = AUDIO_DEVICE_IN_MAIN_MIC;
} else if ((!strncmp(device_str,"audio-jack", MAX_NAME_LEN)) && (direction == AUDIO_DIRECTION_IN)) {
device = AUDIO_DEVICE_IN_JACK;
} else if ((!strncmp(device_str,"bt", MAX_NAME_LEN)) && (direction == AUDIO_DIRECTION_IN)) {
device = AUDIO_DEVICE_IN_BT_SCO;
} else {
device = AUDIO_DEVICE_NONE;
}
AUDIO_LOG_INFO("device type(%s), enum(0x%x)", device_str, device);
return device;
}
static audio_return_t set_devices(audio_mgr_t *am, const char *verb, device_info_t *devices, uint32_t num_of_devices)
{
audio_return_t audio_ret = AUDIO_RET_OK;
uint32_t new_device = 0;
const char *active_devices[MAX_DEVICES] = {NULL,};
int i = 0, j = 0, dev_idx = 0;
if (num_of_devices > MAX_DEVICES) {
num_of_devices = MAX_DEVICES;
AUDIO_LOG_ERROR("error: num_of_devices");
return AUDIO_ERR_PARAMETER;
}
if ((devices[0].direction == AUDIO_DIRECTION_OUT) && am->device.active_in) {
/* check the active in devices */
for (j = 0; j < inDeviceTypes[j].type; j++) {
if (((am->device.active_in & (~0x80000000)) & inDeviceTypes[j].type))
active_devices[dev_idx++] = inDeviceTypes[j].name;
}
} else if ((devices[0].direction == AUDIO_DIRECTION_IN) && am->device.active_out) {
/* check the active out devices */
for (j = 0; j < outDeviceTypes[j].type; j++) {
if (am->device.active_out & outDeviceTypes[j].type)
active_devices[dev_idx++] = outDeviceTypes[j].name;
}
}
for (i = 0; i < num_of_devices; i++) {
new_device = convert_device_string_to_enum(devices[i].type, devices[i].direction);
if (new_device & 0x80000000) {
for (j = 0; j < inDeviceTypes[j].type; j++) {
if (new_device == inDeviceTypes[j].type) {
active_devices[dev_idx++] = inDeviceTypes[j].name;
am->device.active_in |= new_device;
}
}
} else {
for (j = 0; j < outDeviceTypes[j].type; j++) {
if (new_device == outDeviceTypes[j].type) {
active_devices[dev_idx++] = outDeviceTypes[j].name;
am->device.active_out |= new_device;
}
}
}
}
if (active_devices[0] == NULL) {
AUDIO_LOG_ERROR("Failed to set device: active device is NULL");
return AUDIO_ERR_PARAMETER;
}
audio_ret = _audio_ucm_set_devices(am, verb, active_devices);
if (audio_ret) {
AUDIO_LOG_ERROR("Failed to set device: error = %d", audio_ret);
return audio_ret;
}
return audio_ret;
}
audio_return_t _audio_device_init (audio_mgr_t *am)
{
AUDIO_RETURN_VAL_IF_FAIL(am, AUDIO_ERR_PARAMETER);
am->device.active_in = 0x0;
am->device.active_out = 0x0;
am->device.route_flag = AUDIO_ROUTE_FLAG_NONE;
am->device.pcm_in = NULL;
am->device.pcm_out = NULL;
am->device.mode = VERB_NORMAL;
pthread_mutex_init(&am->device.pcm_lock, NULL);
am->device.pcm_count = 0;
return AUDIO_RET_OK;
}
audio_return_t _audio_device_deinit (audio_mgr_t *am)
{
AUDIO_RETURN_VAL_IF_FAIL(am, AUDIO_ERR_PARAMETER);
return AUDIO_RET_OK;
}
static audio_return_t _do_route_ap_playback_capture (audio_mgr_t *am, audio_route_info_t *route_info)
{
audio_return_t audio_ret = AUDIO_RET_OK;
device_info_t *devices = route_info->device_infos;
int mod_idx = 0;
const char *verb = NULL;
const char *modifiers[MAX_MODIFIERS] = {NULL,};
verb = AUDIO_USE_CASE_VERB_HIFI;
AUDIO_LOG_INFO("do_route_ap_playback_capture++ ");
AUDIO_RETURN_VAL_IF_FAIL(am, AUDIO_ERR_PARAMETER);
audio_ret = set_devices(am, verb, devices, route_info->num_of_devices);
if (audio_ret) {
AUDIO_LOG_ERROR("Failed to set devices: error = 0x%x", audio_ret);
return audio_ret;
}
am->device.mode = VERB_NORMAL;
/* FIXME. Set modifiers */
if (!strncmp("voice_recognition", route_info->role, MAX_NAME_LEN)) {
modifiers[mod_idx++] = AUDIO_USE_CASE_MODIFIER_VOICESEARCH;
} else if ((!strncmp("alarm", route_info->role, MAX_NAME_LEN))||(!strncmp("notifiication", route_info->role, MAX_NAME_LEN))) {
if (am->device.active_out &= AUDIO_DEVICE_OUT_JACK)
modifiers[mod_idx++] = AUDIO_USE_CASE_MODIFIER_DUAL_MEDIA;
else
modifiers[mod_idx++] = AUDIO_USE_CASE_MODIFIER_MEDIA;
} else {
if (am->device.active_in)
modifiers[mod_idx++] = AUDIO_USE_CASE_MODIFIER_CAMCORDING;
else
modifiers[mod_idx++] = AUDIO_USE_CASE_MODIFIER_MEDIA;
}
audio_ret = _audio_ucm_set_modifiers (am, verb, modifiers);
return audio_ret;
}
audio_return_t _do_route_voip (audio_mgr_t *am, device_info_t *devices, int32_t num_of_devices)
{
audio_return_t audio_ret = AUDIO_RET_OK;
const char *verb = NULL;
const char *active_devices[MAX_DEVICES] = {NULL,};
verb = AUDIO_USE_CASE_VERB_HIFI;
AUDIO_LOG_INFO("do_route_voip++");
AUDIO_RETURN_VAL_IF_FAIL(am, AUDIO_ERR_PARAMETER);
audio_ret = set_devices(am, verb, devices, num_of_devices);
if (audio_ret) {
AUDIO_LOG_ERROR("Failed to set devices: error = 0x%x", audio_ret);
return audio_ret;
}
/* FIXME. If necessary, set VERB_VOIP */
am->device.mode = VERB_NORMAL;
if (active_devices == NULL) {
AUDIO_LOG_ERROR("Failed to set device: active device is NULL");
return AUDIO_ERR_PARAMETER;
}
/* TO DO: Set modifiers */
return audio_ret;
}
audio_return_t _do_route_reset (audio_mgr_t *am, uint32_t direction)
{
audio_return_t audio_ret = AUDIO_RET_OK;
const char *verb = NULL;
verb = AUDIO_USE_CASE_VERB_INACTIVE;
AUDIO_LOG_INFO("do_route_reset++, direction(%p)", direction);
AUDIO_RETURN_VAL_IF_FAIL(am, AUDIO_ERR_PARAMETER);
if (direction == AUDIO_DIRECTION_OUT) {
am->device.active_out &= 0x0;
} else {
am->device.active_in &= 0x0;
}
/* TO DO: Set Inactive */
return audio_ret;
}
audio_return_t audio_do_route (void *userdata, audio_route_info_t *info)
{
audio_return_t audio_ret = AUDIO_RET_OK;
audio_mgr_t *am = (audio_mgr_t *)userdata;
device_info_t *devices = info->device_infos;
AUDIO_RETURN_VAL_IF_FAIL(am, AUDIO_ERR_PARAMETER);
AUDIO_LOG_INFO("role:%s", info->role);
if (!strncmp("voip", info->role, MAX_NAME_LEN)) {
audio_ret = _do_route_voip(am, devices, info->num_of_devices);
if (AUDIO_IS_ERROR(audio_ret)) {
AUDIO_LOG_WARN("set voip route return 0x%x", audio_ret);
}
} else if (!strncmp("reset", info->role, MAX_NAME_LEN)) {
audio_ret = _do_route_reset(am, devices->direction);
if (AUDIO_IS_ERROR(audio_ret)) {
AUDIO_LOG_WARN("set reset return 0x%x", audio_ret);
}
} else {
/* need to prepare for "alarm","notification","emergency","voice-information","voice-recognition","ringtone" */
audio_ret = _do_route_ap_playback_capture(am, info);
if (AUDIO_IS_ERROR(audio_ret)) {
AUDIO_LOG_WARN("set playback route return 0x%x", audio_ret);
}
}
return audio_ret;
}
audio_return_t audio_update_stream_connection_info (void *userdata, audio_stream_info_t *info, uint32_t is_connected)
{
audio_return_t audio_ret = AUDIO_RET_OK;
int i = 0;
audio_mgr_t *am = (audio_mgr_t *)userdata;
AUDIO_RETURN_VAL_IF_FAIL(am, AUDIO_ERR_PARAMETER);
AUDIO_LOG_INFO("role:%s, direction:%u, idx:%u, is_connected:%d", info->role, info->direction, info->idx, is_connected);
return audio_ret;
}
audio_return_t audio_update_route_option (void *userdata, audio_route_option_t *option)
{
audio_return_t audio_ret = AUDIO_RET_OK;
int i = 0;
audio_mgr_t *am = (audio_mgr_t *)userdata;
AUDIO_RETURN_VAL_IF_FAIL(am, AUDIO_ERR_PARAMETER);
AUDIO_LOG_INFO("role:%s, name:%s, value:%d", option->role, option->name, option->value);
return audio_ret;
}
audio_return_t audio_alsa_pcm_open (void *userdata, void **pcm_handle, char *device_name, uint32_t direction, int mode)
{
audio_return_t audio_ret = AUDIO_RET_OK;
audio_mgr_t *am = (audio_mgr_t *)userdata;
int err;
AUDIO_RETURN_VAL_IF_FAIL(am, AUDIO_ERR_PARAMETER);
// pthread_mutex_lock(&am->device.pcm_lock);
if ((err = snd_pcm_open((snd_pcm_t **)pcm_handle, device_name, (direction == AUDIO_DIRECTION_OUT) ? SND_PCM_STREAM_PLAYBACK : SND_PCM_STREAM_CAPTURE, mode)) < 0) {
AUDIO_LOG_ERROR("Error opening PCM device %s: %s", device_name, snd_strerror(err));
pthread_mutex_unlock(&am->device.pcm_lock);
return AUDIO_ERR_RESOURCE;
}
am->device.pcm_count++;
AUDIO_LOG_INFO("PCM handle 0x%x(%s,%s) opened(count:%d)", *pcm_handle, device_name, (direction == AUDIO_DIRECTION_OUT) ? "playback" : "capture", am->device.pcm_count);
// pthread_mutex_unlock(&am->device.pcm_lock);
return audio_ret;
}
audio_return_t audio_alsa_pcm_close (void *userdata, void *pcm_handle)
{
audio_return_t audio_ret = AUDIO_RET_OK;
audio_mgr_t *am = (audio_mgr_t *)userdata;
int err;
AUDIO_LOG_INFO("Try to close PCM handle 0x%x", pcm_handle);
// pthread_mutex_lock(&am->device.pcm_lock);
if ((err = snd_pcm_close(pcm_handle)) < 0) {
AUDIO_LOG_ERROR("Error closing PCM handle : %s", snd_strerror(err));
pthread_mutex_unlock(&am->device.pcm_lock);
return AUDIO_ERR_RESOURCE;
}
am->device.pcm_count--;
AUDIO_LOG_INFO("PCM handle close success (count:%d)", am->device.pcm_count);
// pthread_mutex_unlock(&am->device.pcm_lock);
return audio_ret;
}
audio_return_t audio_pcm_open (void *userdata, void **pcm_handle, void *sample_spec, uint32_t direction)
{
audio_return_t audio_ret = AUDIO_RET_OK;
char *device_name = NULL;
audio_mgr_t *am = (audio_mgr_t *)userdata;
audio_pcm_sample_spec_t *ss = (audio_pcm_sample_spec_t *)sample_spec;
int err, mode;
uint8_t use_mmap=0;
snd_pcm_uframes_t period_size = PERIODSZ_PLAYBACK;
snd_pcm_uframes_t buffer_size = BUFFERSZ_PLAYBACK;
snd_pcm_uframes_t avail_min = 1024;
ss->format = _convert_format((audio_sample_format_t)ss->format);
mode = SND_PCM_NONBLOCK | SND_PCM_NO_AUTO_RESAMPLE | SND_PCM_NO_AUTO_CHANNELS | SND_PCM_NO_AUTO_FORMAT;
AUDIO_RETURN_VAL_IF_FAIL(am, AUDIO_ERR_PARAMETER);
if(direction == AUDIO_DIRECTION_OUT)
device_name = PLAYBACK_PCM_DEVICE;
else if (direction == AUDIO_DIRECTION_IN)
device_name = CAPTURE_PCM_DEVICE;
else {
AUDIO_LOG_ERROR("Error get device_name, direction = %d", direction);
return AUDIO_ERR_RESOURCE;
}
if ((err = snd_pcm_open((snd_pcm_t **)pcm_handle, device_name, (direction == AUDIO_DIRECTION_OUT) ? SND_PCM_STREAM_PLAYBACK : SND_PCM_STREAM_CAPTURE, mode)) < 0) {
AUDIO_LOG_ERROR("Error opening PCM device %s: %s", device_name, snd_strerror(err));
pthread_mutex_unlock(&am->device.pcm_lock);
return AUDIO_ERR_RESOURCE;
}
am->device.pcm_count++;
AUDIO_LOG_INFO("Opening PCM handle 0x%x, PCM device %s", *pcm_handle, device_name);
if ((err = _audio_pcm_set_hw_params(*pcm_handle, ss, &use_mmap, &period_size, &buffer_size)) != AUDIO_RET_OK) {
AUDIO_LOG_ERROR("Failed to set pcm hw parameters: %s", snd_strerror(err));
return AUDIO_ERR_RESOURCE;
}
AUDIO_LOG_INFO("setting avail_min=%lu", (unsigned long) avail_min);
if ((err = _audio_pcm_set_sw_params(*pcm_handle, avail_min, 0)) < 0) {
AUDIO_LOG_ERROR("Failed to set pcm sw parameters: %s", snd_strerror(err));
return AUDIO_ERR_RESOURCE;
}
return audio_ret;
}
audio_return_t audio_pcm_close (void *userdata, void *pcm_handle)
{
audio_return_t audio_ret = AUDIO_RET_OK;
audio_mgr_t *am = (audio_mgr_t *)userdata;
int err;
AUDIO_LOG_INFO("Try to close PCM handle 0x%x", pcm_handle);
if ((err = snd_pcm_close(pcm_handle)) < 0) {
AUDIO_LOG_ERROR("Error closing PCM handle : %s", snd_strerror(err));
pthread_mutex_unlock(&am->device.pcm_lock);
return AUDIO_ERR_RESOURCE;
}
am->device.pcm_count--;
AUDIO_LOG_INFO("PCM handle close success (count:%d)", am->device.pcm_count);
return audio_ret;
}
audio_return_t audio_pcm_avail(void *pcm_handle)
{
snd_pcm_sframes_t n;
snd_pcm_sframes_t ret;
AUDIO_RETURN_VAL_IF_FAIL(pcm_handle, AUDIO_ERR_PARAMETER);
while(1) {
n = snd_pcm_avail(pcm_handle);
if (n <= 0) {
ret == snd_pcm_wait(pcm_handle, 10);
if(ret == 0){
AUDIO_LOG_DEBUG("snd_pcm_wait = %d\n", ret);
continue;
}
else
break;
}
break;
}
return 0;
}
audio_return_t audio_pcm_write(void *pcm_handle, const void *buffer, uint32_t frames)
{
snd_pcm_sframes_t frames_written;
AUDIO_RETURN_VAL_IF_FAIL(pcm_handle, AUDIO_ERR_PARAMETER);
frames_written = snd_pcm_writei(pcm_handle, buffer, (snd_pcm_uframes_t) frames);
if (frames_written < 0) {
AUDIO_LOG_ERROR("Failed to pcm write: try_recover!!!!");
}
return 0;
}
|