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 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507
|
/*****************************************************************************/
/* */
/* FILE: auddev_trans.c */
/* */
/* Transcoder audio device. */
/* */
/* Contributed by Michael Wallbaum <wallbaum@informatik.rwth-aachen.de> */
/* */
/* Calculations of elapsed time corrected by Jakub Segen <segen@lucent.com> */
/* */
/*****************************************************************************/
#ifndef HIDE_SOURCE_STRINGS
static const char cvsid[] =
"$Id: auddev_trans.c,v 1.11 2000/08/23 04:25:36 ucaccsp Exp $";
#endif /* HIDE_SOURCE_STRINGS */
#include "config_unix.h"
#include "config_win32.h"
#include "audio_types.h"
#include "auddev_trans.h"
#include "memory.h"
#include "debug.h"
/* Global variable, defined in main_engine.c. If num_sessions == 2, we are a transcoder */
extern int num_sessions;
#define MAXBUFDEVS 2
typedef struct _bufdevInfo {
audio_format ifmt;
audio_format ofmt;
int audio_fd;
struct timeval start_time;
struct timeval curr_time;
u_char *channel;
int head;
int tail;
int last_bytes;
int avail_bytes;
int leftover_bytes;
int read_virgin;
int igain; /* Gain settings are currently ignored: a smarter */
int ogain; /* implementation could scale the signal volume. */
} bufdevInfo;
static bufdevInfo bufdev[MAXBUFDEVS];
static uint32_t devIdMap[MAXBUFDEVS];
static char *bufdevName[2] = {"Transcoder Port 1", "Transcoder Port 2"};
#define CHANNEL_SIZE 8192
static uint32_t mapAudioDescToDeviceID(audio_desc_t ad);
static int
trans_audio_open_dev (audio_desc_t ad, audio_format *infmt, audio_format *outfmt)
{
/* Open a fake audio channel. The value we return is used to identify the */
/* channel for the other routines in this module. */
/* Note: We must open EXACTLY two channels, before the other routines in */
/* this module function correctly. */
int i;
debug_msg("Open transcoder audio device\n");
ad = mapAudioDescToDeviceID(ad);
assert(ad >= 0);
bufdev[ad].head = 0;
bufdev[ad].tail = 0;
bufdev[ad].avail_bytes = 0;
bufdev[ad].read_virgin = TRUE;
bufdev[ad].leftover_bytes = 0;
bufdev[ad].channel = (u_char *) xmalloc(CHANNEL_SIZE * sizeof(u_char));
for (i=0; i<CHANNEL_SIZE; i++) {
bufdev[ad].channel[i] = L16_AUDIO_ZERO;
}
if (bufdev[ad].audio_fd != -1) {
debug_msg("Warning device not closed before opening.\n");
trans_audio_close(ad);
}
memcpy(&(bufdev[ad].ifmt), infmt, sizeof(*infmt));
memcpy(&(bufdev[ad].ofmt), outfmt, sizeof(*outfmt));
return TRUE;
}
static uint32_t
mapAudioDescToDeviceID(audio_desc_t ad)
{
return devIdMap[ad];
}
int
trans_audio_init()
{
audio_format af;
unsigned int i;
if (num_sessions != 2) {
debug_msg("Cannot open transcoder audio device: not a transcoder\n");
return 0;
}
debug_msg("Initialize transcoder audio device\n");
af.bits_per_sample = 16;
af.bytes_per_block = 320;
af.channels = 1;
af.encoding = DEV_S16;
af.sample_rate = 8000;
for(i = 0; i < MAXBUFDEVS; i++) {
bufdev[i].audio_fd = -1;
if (trans_audio_open_dev(i, &af, &af)) {
trans_audio_close(i);
devIdMap[i] = i;
}
}
return MAXBUFDEVS;
}
int
trans_audio_open(audio_desc_t ad, audio_format *infmt, audio_format *outfmt)
{
ad = mapAudioDescToDeviceID(ad);
return trans_audio_open_dev(ad, infmt, outfmt);
}
/*
* Shutdown.
*/
void
trans_audio_close(audio_desc_t ad)
{
debug_msg("Close transcoder audio device\n");
ad = mapAudioDescToDeviceID(ad);
if (bufdev[ad].audio_fd > 0)
bufdev[ad].audio_fd = -1;
xfree(bufdev[ad].channel);
return;
}
/*
* Flush input buffer.
*/
void
trans_audio_drain(audio_desc_t ad)
{
ad = mapAudioDescToDeviceID(ad);
bufdev[ad].read_virgin = TRUE;
bufdev[ad].leftover_bytes = 0;
bufdev[ad].head = 0;
bufdev[ad].tail = 0;
bufdev[ad].avail_bytes = 0;
return;
}
/*
* Set record gain.
*/
void
trans_audio_set_igain(audio_desc_t ad, int gain)
{
ad = mapAudioDescToDeviceID(ad);
bufdev[ad].igain = gain;
return;
}
/*
* Get record gain.
*/
int
trans_audio_get_igain(audio_desc_t ad)
{
ad = mapAudioDescToDeviceID(ad);
return bufdev[ad].igain;
}
int
trans_audio_duplex(audio_desc_t ad)
{
UNUSED(ad);
return TRUE;
}
/*
* Set play gain.
*/
void
trans_audio_set_ogain(audio_desc_t ad, int vol)
{
ad = mapAudioDescToDeviceID(ad);
bufdev[ad].ogain = vol;
return;
}
/*
* Get play gain.
*/
int
trans_audio_get_ogain(audio_desc_t ad)
{
ad = mapAudioDescToDeviceID(ad);
return bufdev[ad].ogain;
}
static int
time_diff_to_bytes(struct timeval *start, struct timeval *end, audio_format ifmt)
{
int diff_ms, diff_bytes;
diff_ms = (end->tv_sec - start->tv_sec) * 1000 + (end->tv_usec - start->tv_usec) / 1000;
diff_bytes = diff_ms * (ifmt.bits_per_sample / 8 ) * (ifmt.sample_rate / 1000) * ifmt.channels;
return diff_bytes;
}
int current_bytes;
/*
* Record audio data.
*/
int
trans_audio_read(audio_desc_t ad, u_char *buf, int buf_bytes)
{
int i, read_size, copy_size;
ad = mapAudioDescToDeviceID(ad);
assert(ad >= 0);
assert(buf != 0);
assert(buf_bytes > 0);
assert(bufdev[ad].head <= CHANNEL_SIZE);
assert(bufdev[ad].tail <= CHANNEL_SIZE);
assert(bufdev[ad].avail_bytes <= CHANNEL_SIZE);
if (bufdev[ad].read_virgin == TRUE) {
gettimeofday(&(bufdev[ad].start_time), NULL);
bufdev[ad].avail_bytes = 0;
bufdev[ad].last_bytes = 0;
bufdev[ad].leftover_bytes = 0;
bufdev[ad].read_virgin = FALSE;
}
gettimeofday(&(bufdev[ad].curr_time), NULL);
current_bytes = time_diff_to_bytes(&(bufdev[ad].start_time), &(bufdev[ad].curr_time), bufdev[ad].ifmt );
read_size = current_bytes - bufdev[ad].last_bytes;
if (read_size + bufdev[ad].leftover_bytes < bufdev[ad].ifmt.bytes_per_block) return 0;
bufdev[ad].last_bytes = current_bytes;
if (buf_bytes > read_size + bufdev[ad].leftover_bytes) {
read_size += bufdev[ad].leftover_bytes;
bufdev[ad].leftover_bytes = 0;
} else {
bufdev[ad].leftover_bytes += read_size - buf_bytes;
read_size = buf_bytes;
}
assert(bufdev[ad].leftover_bytes >= 0);
copy_size = bufdev[ad].avail_bytes; /* The amount of data available in this module... */
if (copy_size >= read_size) {
copy_size = read_size;
} else {
#ifdef DEBUG_TRANSCODER
printf("transcoder_read: underflow, silence substituted -- want %d got %d channel %d\n", read_size, copy_size, ad);
#endif
}
for (i=0; i<copy_size; i++) {
buf[i] = bufdev[ad].channel[(bufdev[ad].head + i) % CHANNEL_SIZE];
}
for (i=copy_size; i<read_size; i++) {
buf[i] = L16_AUDIO_ZERO;
}
bufdev[ad].head = (bufdev[ad].head + copy_size) % CHANNEL_SIZE;
bufdev[ad].avail_bytes -= copy_size;
assert(bufdev[ad].head <= CHANNEL_SIZE);
assert(bufdev[ad].tail <= CHANNEL_SIZE);
assert(bufdev[ad].avail_bytes >= 0);
return read_size;
}
/*
* Playback audio data.
*/
int
trans_audio_write(audio_desc_t ad, u_char *buf, int write_bytes)
{
int i;
ad = mapAudioDescToDeviceID(ad);
assert(ad >= 0);
assert(buf != 0);
assert(write_bytes > 0);
assert(bufdev[ad].head <= CHANNEL_SIZE);
assert(bufdev[ad].tail <= CHANNEL_SIZE);
assert(bufdev[ad].avail_bytes <= CHANNEL_SIZE);
for (i=0; i<write_bytes; i++) {
bufdev[ad].channel[(bufdev[ad].tail + i) % CHANNEL_SIZE] = buf[i];
}
bufdev[ad].tail = (bufdev[ad].tail + write_bytes) % CHANNEL_SIZE;
/* reposition head if necessary */
if(write_bytes > CHANNEL_SIZE - bufdev[ad].avail_bytes)
bufdev[ad].head = (bufdev[ad].tail + 1) % CHANNEL_SIZE;
bufdev[ad].avail_bytes = (bufdev[ad].avail_bytes + write_bytes) % CHANNEL_SIZE;
assert(bufdev[ad].head <= CHANNEL_SIZE);
assert(bufdev[ad].tail <= CHANNEL_SIZE);
return write_bytes;
}
/*
* Set options on audio device to be non-blocking.
*/
void
trans_audio_non_block(audio_desc_t ad)
{
UNUSED(ad);
}
/*
* Set options on audio device to be blocking.
*/
void
trans_audio_block(audio_desc_t ad)
{
UNUSED(ad);
}
#define TRANS_SPEAKER 0x0101
#define TRANS_MICROPHONE 0x0201
static audio_port_details_t out_ports[] = {
{TRANS_SPEAKER, "Transcoder recv"}
};
static audio_port_details_t in_ports[] = {
{TRANS_MICROPHONE, "Transcoder send"}
};
/*
* Set output port.
*/
void
trans_audio_oport_set(audio_desc_t ad, audio_port_t port)
{
UNUSED(ad); UNUSED(port);
return;
}
/*
* Get output port.
*/
audio_port_t
trans_audio_oport_get(audio_desc_t ad)
{
UNUSED(ad);
return out_ports[0].port;
}
int
trans_audio_oport_count(audio_desc_t ad)
{
UNUSED(ad);
return 1;
}
const audio_port_details_t*
trans_audio_oport_details(audio_desc_t ad, int idx)
{
UNUSED(ad);
assert(idx == 0);
return &out_ports[0];
}
/*
* Set input port.
*/
void
trans_audio_iport_set(audio_desc_t ad, audio_port_t port)
{
UNUSED(ad);
UNUSED(port);
return;
}
/*
* Get input port.
*/
audio_port_t
trans_audio_iport_get(audio_desc_t ad)
{
UNUSED(ad);
return in_ports[0].port;
}
int
trans_audio_iport_count(audio_desc_t ad)
{
UNUSED(ad);
return 1;
}
const audio_port_details_t*
trans_audio_iport_details(audio_desc_t ad, int idx)
{
UNUSED(ad);
assert(idx == 0);
return &in_ports[0];
}
/*
* Enable hardware loopback
*/
void
trans_audio_loopback(audio_desc_t ad, int gain)
{
UNUSED(ad);
UNUSED(gain);
/* Nothing doing... */
}
/*
* For external purposes this function returns non-zero
* if audio is ready.
*/
int
trans_audio_is_ready(audio_desc_t ad)
{
struct timeval now;
int read_size;
ad = mapAudioDescToDeviceID(ad);
gettimeofday(&now,NULL);
read_size = time_diff_to_bytes(&(bufdev[ad].start_time), &now, bufdev[ad].ifmt) - bufdev[ad].last_bytes;
if (read_size + bufdev[ad].leftover_bytes < bufdev[ad].ifmt.bytes_per_block) return FALSE;
else return TRUE;
}
static void
trans_audio_select(audio_desc_t ad, int delay_ms)
{
struct timeval now;
int needed, dur, read_size;
ad = mapAudioDescToDeviceID(ad);
gettimeofday(&now,NULL);
read_size = time_diff_to_bytes(&(bufdev[ad].start_time), &now, bufdev[ad].ifmt) - bufdev[ad].last_bytes;
needed = bufdev[ad].ifmt.bytes_per_block - bufdev[ad].leftover_bytes - read_size;
if(needed > 0) {
dur = needed*8000/(bufdev[ad].ifmt.sample_rate * bufdev[ad].ifmt.bits_per_sample * bufdev[ad].ifmt.channels);
dur = min(dur, delay_ms);
usleep(dur * 1000);
}
}
void
trans_audio_wait_for(audio_desc_t ad, int delay_ms)
{
trans_audio_select(ad, delay_ms);
}
int
trans_audio_device_count()
{
if (num_sessions != 2) {
/* If we're not running as a transcoder, we don't support any devices... */
return 0;
}
return MAXBUFDEVS;
}
char*
trans_audio_device_name(audio_desc_t ad)
{
ad = mapAudioDescToDeviceID(ad);
return bufdevName[ad];
}
int
trans_audio_supports(audio_desc_t ad, audio_format *fmt)
{
UNUSED(ad);
if ((!(fmt->sample_rate % 8000) || !(fmt->sample_rate % 11025)) &&
(fmt->channels == 1 || fmt->channels == 2)) {
return TRUE;
}
return FALSE;
}
|