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 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584
|
/*
* FILE: auddev_osprey.c
* PROGRAM: RAT
* AUTHOR: Orion Hodson
*
* Copyright (c) 1998-2001 University College London
* All rights reserved.
*/
#ifndef HIDE_SOURCE_STRINGS
static const char cvsid[] =
"$Id: auddev_osprey.c,v 1.18 2001/01/08 20:29:48 ucaccsp Exp $";
#endif /* HIDE_SOURCE_STRINGS */
#include <sys/audioio.h>
#include <multimedia/audio_hdr.h>
#include <multimedia/audio_device.h>
#include <multimedia/audio_errno.h>
#include <oti_audio_device.h>
#include <dlfcn.h>
#include "config_unix.h"
#include "debug.h"
#include "audio_types.h"
#include "audio_fmt.h"
#include "auddev_osprey.h"
static audio_info_t dev_info;
static int audioctl_fd = -1;
static int audio_fd = -1;
static int present = 0;
static void osprey_audio_service(void);
static void
osprey_poll_handler(int signo)
{
signal(signo, osprey_poll_handler);
debug_msg("signal %d (0x%x)\n", signo, signo);
osprey_audio_service();
}
#define OTI_MAX_GAIN 1.0f
#define OTI_RAT_TO_DEVICE(x) (((double)(x)) * (double)OTI_MAX_GAIN / (double)MAX_AMP)
#define OTI_DEVICE_TO_RAT(x) ((int) ((x) * MAX_AMP / AUDIO_MAX_GAIN))
/* These are function pointers for dynamically loaded functions. We try to
* open libotiaudio, then fill in these functions in oi_init(). If this
* fails we are going to use the native sun interface functions. The benefit
* of this being that the same binary will work whether or not people have
* the sunvideo plus card library installed. If we just dynamically link it
* it becomes a fatal error if it is not present on the system.
*
* This is really unpleasant but not on the pickled herrings scale.
*
* NB These prototypes MUST match those in oti_libaudio.h. We do not include it
* as these definitions will clash because we are declaring them as function pointers
* and in oti_libaudio.h they are functions.
*/
static char *dlh; /* Handle for dynamic library. */
int (*oti_audio_getinfo) (int fildes, Audio_info*);
int (*oti_audio_setinfo) (int fildes, Audio_info*);
int (*oti_audio__setplayhdr) (int fildes, Audio_hdr*, unsigned);
int (*oti_audio__setval) (int fildes, unsigned*, unsigned);
int (*oti_audio__setgain) (int fildes, double*, unsigned);
int (*oti_audio__setpause) (int fildes, unsigned);
int (*oti_audio__flush) (int fildes, unsigned int);
int (*oti_audio_drain) (int fildes, int);
int (*oti_audio_play_eof) (int fildes);
int (*oti_open) (const char *path, int oflag);
int (*oti_close) (int fildes);
ssize_t (*oti_read) (int fildes, void *buf, size_t nbyte);
ssize_t (*oti_write) (int fildes, const void *buf, size_t nbyte);
int (*oti_ioctl) (int fildes, int request, void *val);
int (*oti_fcntl) (int fildes, int cmd, void *val);
int (*oti_audio_init) (char*, char*);
#define DL_MAP_CAUTIOUS(h, symbol, errflag) \
symbol = dlsym((h),(#symbol)); \
if (!symbol) { \
debug_msg("Failed to map %s (%s)\n",#symbol,dlerror()); \
errflag = 1; \
}
/* This function attempts to locate the dynamic link library
* libotiaudio.so, open it, and map function addresses to the
* above function pointers
*/
int
osprey_audio_init()
{
int success;
char path[255], *locenv, otipath[] = "/libotiaudio.so";
int err;
dlh = NULL;
/* Find and load dynamic library */
locenv = getenv("O1KHOME");
if (locenv) {
path[0] = 0;
strncat(path, locenv, 255);
strncat(path, "lib", 255);
strncat(path, otipath, 255);
}
dlh = dlopen(path, RTLD_NOW); /* BIND NOW */
if (!dlh) {
char* ldpath = getenv("LD_LIBRARY_PATH");
if (ldpath == NULL) {
return FALSE;
}
locenv = (char*)strtok(ldpath, ":");
do {
path[0] = 0;
strncat(path, locenv, 255);
strncat(path, otipath, 255);
dlh = dlopen(path, RTLD_NOW);
locenv = (char*) strtok(NULL, ":");
} while (!dlh && locenv);
if (!dlh) {
return FALSE; /* Could not get it */
}
}
/* Map functions */
err = 0;
DL_MAP_CAUTIOUS(dlh, oti_audio_getinfo, err);
DL_MAP_CAUTIOUS(dlh, oti_audio_setinfo, err);
DL_MAP_CAUTIOUS(dlh, oti_audio__setplayhdr, err);
DL_MAP_CAUTIOUS(dlh, oti_audio__setval, err);
DL_MAP_CAUTIOUS(dlh, oti_audio__setgain, err);
DL_MAP_CAUTIOUS(dlh, oti_audio__setpause, err);
DL_MAP_CAUTIOUS(dlh, oti_audio__flush, err);
DL_MAP_CAUTIOUS(dlh, oti_audio_drain, err);
DL_MAP_CAUTIOUS(dlh, oti_audio_play_eof, err);
DL_MAP_CAUTIOUS(dlh, oti_open, err);
DL_MAP_CAUTIOUS(dlh, oti_close, err);
DL_MAP_CAUTIOUS(dlh, oti_read, err);
DL_MAP_CAUTIOUS(dlh, oti_write, err);
DL_MAP_CAUTIOUS(dlh, oti_ioctl, err);
DL_MAP_CAUTIOUS(dlh, oti_fcntl, err);
DL_MAP_CAUTIOUS(dlh, oti_audio_init, err);
if (err) {
dlclose(dlh);
return FALSE;
}
success = oti_audio_init(NULL, NULL);
if (success != AUDIO_SUCCESS) {
fprintf(stderr, "oti_audio_init failed (reason %d)\n", success);
return FALSE;
}
present = 1;
return TRUE;
}
static void af2apri(audio_format *fmt, audio_prinfo_t *ap)
{
assert(fmt);
assert(ap);
ap->sample_rate = fmt->sample_rate;
ap->channels = fmt->channels;
ap->precision = fmt->bits_per_sample;
ap->buffer_size = DEVICE_BUF_UNIT * (fmt->sample_rate / 8000) * (fmt->bits_per_sample / 8);
switch(fmt->encoding) {
case DEV_PCMU: ap->encoding = AUDIO_ENCODING_ULAW; assert(ap->precision == 8); break;
case DEV_S8: ap->encoding = AUDIO_ENCODING_LINEAR; assert(ap->precision == 8); break;
case DEV_S16: ap->encoding = AUDIO_ENCODING_LINEAR; assert(ap->precision == 16); break;
default: debug_msg("Format not recognized\n"); assert(0);
}
}
/* Try to open the audio device. */
/* Returns a TRUE if ok, FALSE otherwise. */
int
osprey_audio_open(audio_desc_t ad, audio_format *ifmt, audio_format *ofmt)
{
char audctl_device[16] = "/dev/o1kctl0";
char audio_device[16] = "/dev/o1k0";
if (audio_fd != -1) {
osprey_audio_close(ad);
debug_msg("Osprey device was not closed\n");
}
signal(SIGPOLL, osprey_poll_handler);
audio_fd = oti_open(audio_device, O_RDWR | O_NONBLOCK);
if (audio_fd <= 0) {
audio_fd = -1;
debug_msg("Could not open Osprey Device\n");
return FALSE;
}
#ifndef OSPREY_USE_SIGNALS
if (oti_ioctl(audio_fd, I_SETSIG, (void*)(S_INPUT | S_OUTPUT | S_MSG)) < AUDIO_SUCCESS) {
perror("I_SETSIG ioctl(audio_fd)");
exit(-1);
}
#endif /* OSPREY_USE_SIGNALS */
if ((audioctl_fd = oti_open(audctl_device, O_RDWR))<0){
fprintf(stderr,"could not open audio ctl device\n");
osprey_audio_close(ad);
return FALSE;
}
#ifndef OSPREY_USE_SIGNALS
if (oti_ioctl(audioctl_fd, I_SETSIG, (void*)(S_MSG)) < 0){
perror("I_SETSIG ioctl(audioctl_fd)");
osprey_audio_close(ad);
return FALSE;
}
#endif /* OSPREY_USE_SIGNALS */
AUDIO_INITINFO(&dev_info);
dev_info.monitor_gain = 0;
dev_info.output_muted = 0; /* 0==not muted */
af2apri(ifmt, &dev_info.record);
af2apri(ofmt, &dev_info.play);
dev_info.play.gain = (AUDIO_MAX_GAIN - AUDIO_MIN_GAIN) * 0.75;
dev_info.record.gain = (AUDIO_MAX_GAIN - AUDIO_MIN_GAIN) * 0.75;
dev_info.play.port = AUDIO_HEADPHONE;
dev_info.record.port = AUDIO_MICROPHONE;
dev_info.play.balance = AUDIO_MID_BALANCE;
dev_info.record.balance = AUDIO_MID_BALANCE;
if (oti_audio_setinfo(audio_fd, &dev_info) != AUDIO_SUCCESS) {
perror("Setting info");
if (ifmt->encoding == DEV_S16) {
debug_msg("Attempting ulaw...\n");
audio_format_change_encoding(ifmt, DEV_PCMU);
audio_format_change_encoding(ofmt, DEV_PCMU);
af2apri(ifmt, &dev_info.record);
af2apri(ofmt, &dev_info.play);
if (ioctl(audio_fd, AUDIO_SETINFO, (caddr_t)&dev_info) < 0) {
perror("Setting MULAW audio paramterts");
osprey_audio_close(0);
return FALSE;
}
}
}
return TRUE;
}
/* Close the audio device */
void
osprey_audio_close(audio_desc_t ad)
{
UNUSED(ad);
if (audio_fd != -1) {
/* oti_audio_pause(audio_fd);
oti_audio_flush(audio_fd); */
oti_close(audio_fd);
}
if (audioctl_fd != -1)
oti_close(audioctl_fd);
audio_fd = audioctl_fd = -1;
}
/* Flush input buffer */
void
osprey_audio_drain(audio_desc_t ad)
{
/* audio_info_t tmpinfo;
oti_audio_drain(audio_fd, FALSE);
oti_audio_pause(audio_fd);
AUDIO_INITINFO(&tmpinfo);
oti_audio_getinfo(audio_fd, &tmpinfo);
tmpinfo.record.pause = 0;
tmpinfo.record.samples = 0;
tmpinfo.record.error = 0;
tmpinfo.play.pause = 0;
tmpinfo.play.samples = 0;
tmpinfo.play.error = 0;
oti_audio_setinfo(audio_fd, &tmpinfo);
oti_audio_resume(audio_fd); */
UNUSED(ad);
}
/* Gain and volume values are in the range 0 - MAX_AMP */
void
osprey_audio_set_igain(int ad, int gain)
{
double igain;
if (audio_fd <= 0)
return;
igain = OTI_RAT_TO_DEVICE(gain);
oti_audio_set_play_gain(audio_fd, &igain);
UNUSED(ad);
}
int
osprey_audio_get_igain(audio_desc_t ad)
{
double igain;
UNUSED(ad); assert(audio_fd > 0);
oti_audio_get_play_gain(audio_fd, &igain);
return (OTI_DEVICE_TO_RAT(igain));
}
void
osprey_audio_set_ogain(audio_desc_t ad, int vol)
{
double ogain;
UNUSED(ad); assert(audio_fd > 0);
ogain = OTI_RAT_TO_DEVICE(vol);
oti_audio_set_record_gain(audio_fd, &ogain);
}
int
osprey_audio_get_ogain(audio_desc_t ad)
{
double ogain;
UNUSED(ad); assert(audio_fd > 0);
oti_audio_get_record_gain(audio_fd, &ogain);
return (OTI_DEVICE_TO_RAT(ogain));
}
void
osprey_audio_loopback(audio_desc_t ad, int gain)
{
double mgain;
UNUSED(ad); assert(audio_fd > 0);
mgain = OTI_RAT_TO_DEVICE(gain);
oti_audio_set_monitor_gain(audio_fd, &mgain);
}
int
osprey_audio_read(audio_desc_t ad, u_char *buf, int buf_bytes)
{
int len = 0;
UNUSED(ad); assert(audio_fd > 0);
if (oti_ioctl(audio_fd, FIONREAD, &len) < 0) {
debug_msg("FIONREAD failed\n");
return 0;
}
len = min(buf_bytes, len);
len = oti_read(audio_fd, (char *)buf, len * BYTES_PER_SAMPLE);
if (len < 0) {
debug_msg("read failed\n", len);
return 0;
}
return max(0,len);
}
int
osprey_audio_write(audio_desc_t ad, u_char *buf, int buf_bytes)
{
int done = 0, len = buf_bytes;
UNUSED(ad); assert(audio_fd > 0);
while (len > 0) {
if ((done = oti_write(audio_fd, buf, len)) == len)
break;
if (errno != EINTR)
return (buf_bytes - done);
len -= done;
buf += done;
}
return (buf_bytes);
}
/* Set ops on audio device to be non-blocking */
void
osprey_audio_non_block(audio_desc_t ad)
{
UNUSED(ad); assert(audio_fd > 0);
debug_msg("audio_non_block: device always non-blocking\n");
}
/* Set ops on audio device to block */
void
osprey_audio_block(audio_desc_t ad)
{
UNUSED(ad); assert(audio_fd > 0);
debug_msg("audio_block: device always non-blocking\n");
}
static const audio_port_details_t out_ports[] = {
{ AUDIO_SPEAKER, AUDIO_PORT_SPEAKER},
{ AUDIO_HEADPHONE, AUDIO_PORT_HEADPHONE},
{ AUDIO_LINE_OUT, AUDIO_PORT_LINE_OUT }
};
#define NUM_OUT_PORTS (sizeof(out_ports)/sizeof(out_ports[0]))
void
osprey_audio_oport_set(audio_desc_t ad, audio_port_t port)
{
UNUSED(ad); assert(audio_fd > 0);
oti_audio_set_record_port(audio_fd, (unsigned int*)&port);
}
audio_port_t
osprey_audio_oport_get(audio_desc_t ad)
{
unsigned int port;
UNUSED(ad); assert(audio_fd > 0);
oti_audio_get_record_port(audio_fd, &port);
return (audio_port_t)port;
}
int
osprey_audio_oport_count(audio_desc_t ad)
{
UNUSED(ad);
return (int)NUM_OUT_PORTS;
}
const audio_port_details_t*
osprey_audio_oport_details(audio_desc_t ad, int idx)
{
UNUSED(ad);
if (idx >= 0 && idx < (int)NUM_OUT_PORTS) {
return &out_ports[idx];
}
return NULL;
}
static const audio_port_details_t in_ports[] = {
{ AUDIO_MICROPHONE, AUDIO_PORT_MICROPHONE},
{ AUDIO_LINE_IN, AUDIO_PORT_LINE_IN},
{ AUDIO_CD, AUDIO_PORT_CD}
};
#define NUM_IN_PORTS (sizeof(out_ports)/sizeof(out_ports[0]))
void
osprey_audio_iport_set(audio_desc_t ad, audio_port_t port)
{
UNUSED(ad); assert(audio_fd > 0);
oti_audio_set_record_port(audio_fd, (unsigned int*)&port);
}
audio_port_t
osprey_audio_iport_get(audio_desc_t ad)
{
unsigned int port;
UNUSED(ad); assert(audio_fd > 0);
oti_audio_get_record_port(audio_fd, &port);
return (audio_port_t)port;
}
int
osprey_audio_iport_count(audio_desc_t ad)
{
UNUSED(ad);
return (int)NUM_IN_PORTS;
}
const audio_port_details_t*
osprey_audio_iport_details(audio_desc_t ad, int idx)
{
UNUSED(ad);
if (idx >= 0 && idx < (int)NUM_IN_PORTS) {
return &in_ports[idx];
}
return NULL;
}
int
osprey_audio_duplex(audio_desc_t ad)
{
UNUSED(ad);
return 1;
}
int
osprey_audio_is_ready(audio_desc_t ad)
{
int len;
audio_info_t tmpinfo;
UNUSED(ad); assert(audio_fd > 0);
oti_audio_getinfo(audio_fd, &tmpinfo);
if (oti_ioctl(audio_fd, FIONREAD, &len) < 0) {
debug_msg("FIONREAD failed\n");
return FALSE;
}
debug_msg("%d bytes ready\n", len);
return len;
}
void
osprey_audio_wait_for(audio_desc_t ad, int delay_ms)
{
int len;
struct timeval tv;
#ifdef OSPREY_USE_SIGNALS
signal(SIGPOLL, osprey_poll_handler);
#endif /* OSPREY_USE_SIGNALS */
len = osprey_audio_is_ready(ad);
if (len != 0) {
return;
}
tv.tv_sec = 0;
tv.tv_usec = delay_ms * 1000;
select(0, NULL, NULL, NULL, &tv);
}
static void
osprey_audio_service()
{
static int inservice = FALSE;
if (inservice) return;
inservice = TRUE;
debug_msg("osprey audio service\n");
inservice = FALSE;
}
int
osprey_audio_device_count()
{
return present;
}
char*
osprey_audio_device_name(audio_desc_t ad)
{
UNUSED(ad);
return "Osprey Audio Device";
}
|