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
|
/*
* FILE: auddev_null.c
* PROGRAM: RAT
* AUTHOR: Orion Hodson
*
* Copyright (c) 1996-2001 University College London
* All rights reserved.
*/
#ifndef HIDE_SOURCE_STRINGS
static const char cvsid[] =
"$Id: auddev_null.c,v 1.29 2001/01/08 20:29:48 ucaccsp Exp $";
#endif /* HIDE_SOURCE_STRINGS */
/*
* NULL audio device.
*/
#include "config_unix.h"
#include "config_win32.h"
#include "audio_types.h"
#include "audio_util.h"
#include "audio_fmt.h"
#include "auddev_null.h"
#include "memory.h"
#include "debug.h"
static audio_format ifmt, ofmt;
static int audio_fd = -1;
static struct timeval last_read_time;
static int avail_bytes; /* Number of bytes available because of under read */
static int read_virgin = 1;
static int igain = 50, ogain = 50;
#ifdef WIN32
HANDLE hAudioWakeUp; /* Event that gets blocked for in null_audio_wait_for on Win32 */
#endif
int
null_audio_open(audio_desc_t ad, audio_format *infmt, audio_format *outfmt)
{
if (audio_fd != -1) {
debug_msg("Warning device not closed before opening.\n");
null_audio_close(ad);
}
memcpy(&ifmt, infmt, sizeof(ifmt));
memcpy(&ofmt, outfmt, sizeof(ofmt));
avail_bytes = 0;
read_virgin = TRUE;
#ifdef WIN32
hAudioWakeUp = CreateEvent(NULL, FALSE, FALSE, "RAT Null Audio Device Event");
#endif
return TRUE;
}
/*
* Shutdown.
*/
void
null_audio_close(audio_desc_t ad)
{
UNUSED(ad);
if (audio_fd > 0)
audio_fd = -1;
#ifdef WIN32
CloseHandle(hAudioWakeUp);
#endif
return;
}
/*
* Flush input buffer.
*/
void
null_audio_drain(audio_desc_t ad)
{
UNUSED(ad);
read_virgin = TRUE;
return;
}
/*
* Set record gain.
*/
void
null_audio_set_igain(audio_desc_t ad, int gain)
{
UNUSED(ad);
igain = gain;
return;
}
/*
* Get record gain.
*/
int
null_audio_get_igain(audio_desc_t ad)
{
UNUSED(ad);
return igain;
}
int
null_audio_duplex(audio_desc_t ad)
{
UNUSED(ad);
return TRUE;
}
/*
* Set play gain.
*/
void
null_audio_set_ogain(audio_desc_t ad, int vol)
{
UNUSED(ad);
ogain = vol;
return;
}
/*
* Get play gain.
*/
int
null_audio_get_ogain(audio_desc_t ad)
{
UNUSED(ad);
return ogain;
}
static int
time_diff_to_bytes(struct timeval *start, struct timeval *end)
{
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;
}
/*
* Record audio data.
*/
int
null_audio_read(audio_desc_t ad, u_char *buf, int buf_bytes)
{
int read_bytes;
struct timeval curr_time;
UNUSED(ad);
if (read_virgin) {
gettimeofday(&last_read_time, NULL);
avail_bytes = 0;
read_virgin = FALSE;
}
gettimeofday(&curr_time, NULL);
read_bytes = time_diff_to_bytes(&last_read_time, &curr_time);
if (read_bytes + avail_bytes < ifmt.bytes_per_block) {
return 0;
}
if (buf_bytes > read_bytes + avail_bytes) {
/* Have requested more bytes than we read this time and
* are available in reserve.
*/
read_bytes += avail_bytes;
avail_bytes = 0;
} else {
avail_bytes += read_bytes - buf_bytes;
read_bytes = buf_bytes;
}
assert(avail_bytes >= 0);
memcpy(&last_read_time, &curr_time, sizeof(struct timeval));
memset(buf, 0, read_bytes);
xmemchk();
return read_bytes;
}
/*
* Playback audio data.
*/
int
null_audio_write(audio_desc_t ad, u_char *buf, int write_bytes)
{
UNUSED(buf);
UNUSED(ad);
return write_bytes;
}
/*
* Set options on audio device to be non-blocking.
*/
void
null_audio_non_block(audio_desc_t ad)
{
UNUSED(ad);
}
/*
* Set options on audio device to be blocking.
*/
void
null_audio_block(audio_desc_t ad)
{
UNUSED(ad);
}
#define NULL_SPEAKER 0x0101
#define NULL_MICROPHONE 0x0201
static audio_port_details_t out_ports[] = {
{NULL_SPEAKER, AUDIO_PORT_SPEAKER}
};
static audio_port_details_t in_ports[] = {
{NULL_MICROPHONE, AUDIO_PORT_MICROPHONE}
};
/*
* Set output port.
*/
void
null_audio_oport_set(audio_desc_t ad, audio_port_t port)
{
UNUSED(ad); UNUSED(port);
return;
}
/*
* Get output port.
*/
audio_port_t
null_audio_oport_get(audio_desc_t ad)
{
UNUSED(ad);
return out_ports[0].port;
}
int
null_audio_oport_count(audio_desc_t ad)
{
UNUSED(ad);
return 1;
}
const audio_port_details_t*
null_audio_oport_details(audio_desc_t ad, int idx)
{
UNUSED(ad);
assert(idx == 0);
return &out_ports[0];
}
/*
* Set input port.
*/
void
null_audio_iport_set(audio_desc_t ad, audio_port_t port)
{
UNUSED(ad);
UNUSED(port);
return;
}
/*
* Get input port.
*/
audio_port_t
null_audio_iport_get(audio_desc_t ad)
{
UNUSED(ad);
return in_ports[0].port;
}
int
null_audio_iport_count(audio_desc_t ad)
{
UNUSED(ad);
return 1;
}
const audio_port_details_t*
null_audio_iport_details(audio_desc_t ad, int idx)
{
UNUSED(ad);
assert(idx == 0);
return &in_ports[0];
}
/*
* Enable hardware loopback
*/
void
null_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
null_audio_is_ready(audio_desc_t ad)
{
struct timeval now;
uint32_t diff;
UNUSED(ad);
gettimeofday(&now,NULL);
diff = (now.tv_sec - last_read_time.tv_sec) * 1000 + (now.tv_usec - last_read_time.tv_usec)/1000;
diff *= (ifmt.bits_per_sample / 8) * ifmt.sample_rate / 1000 * ifmt.channels;
if ((diff + avail_bytes) > (unsigned)ifmt.bytes_per_block) return TRUE;
return FALSE;
}
static void
null_audio_select(audio_desc_t ad, int delay_ms)
{
int needed, dur;
UNUSED(ad);
needed = ifmt.bytes_per_block - avail_bytes;
assert(needed >= 0);
dur = needed * 1000 * 8 / (ifmt.sample_rate * ifmt.bits_per_sample * ifmt.channels);
dur = min(dur, delay_ms);
#ifndef WIN32
usleep(dur * 1000);
#else
WaitForSingleObject(hAudioWakeUp, 100); /* Will time out since event never triggered */
#endif
}
void
null_audio_wait_for(audio_desc_t ad, int delay_ms)
{
if (null_audio_is_ready(ad) == FALSE) {
null_audio_select(ad, delay_ms);
}
}
int
null_audio_device_count()
{
return 1;
}
char*
null_audio_device_name(audio_desc_t ad)
{
UNUSED(ad);
return "No Audio Device";
}
int
null_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;
}
|