From 8dbec761cf858ea65900c8a094599857208d8c3a Mon Sep 17 00:00:00 2001 From: "N.N." Date: Tue, 5 Jan 2010 22:49:36 +0000 Subject: svn path=/trunk/; revision=12907 --- desiredata/src/s_audio_alsa.h | 40 ---------------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 desiredata/src/s_audio_alsa.h (limited to 'desiredata/src/s_audio_alsa.h') diff --git a/desiredata/src/s_audio_alsa.h b/desiredata/src/s_audio_alsa.h deleted file mode 100644 index 4d67f78f..00000000 --- a/desiredata/src/s_audio_alsa.h +++ /dev/null @@ -1,40 +0,0 @@ -/* Copyright (c) 1997- Guenter Geiger, Miller Puckette, Larry Troxler, -* Winfried Ritsch, Karl MacMillan, and others. -* For information on usage and redistribution, and for a DISCLAIMER OF ALL -* WARRANTIES, see the file, "LICENSE.txt," in this distribution. */ - - -typedef int16_t t_alsa_sample16; -typedef int32_t t_alsa_sample32; -#define ALSA_SAMPLEWIDTH_16 sizeof(t_alsa_sample16) -#define ALSA_SAMPLEWIDTH_32 sizeof(t_alsa_sample32) -#define ALSA_XFERSIZE16 (signed int)(sizeof(t_alsa_sample16) * sys_dacblocksize) -#define ALSA_XFERSIZE32 (signed int)(sizeof(t_alsa_sample32) * sys_dacblocksize) -#define ALSA_MAXDEV 4 -#define ALSA_JITTER 1024 -#define ALSA_EXTRABUFFER 2048 -#define ALSA_DEFFRAGSIZE 64 -#define ALSA_DEFNFRAG 12 - -#ifndef INT32_MAX -#define INT32_MAX 0x7fffffff -#endif - -struct t_alsa_dev { - snd_pcm_t *a_handle; - int a_devno; - int a_sampwidth; - int a_channels; - char **a_addr; - int a_synced; -}; - -struct t_alsa { - t_alsa_dev dev[ALSA_MAXDEV]; - int ndev; -}; -extern t_alsa alsai, alsao; - -int alsamm_open_audio(int rate); -void alsamm_close_audio(void); -int alsamm_send_dacs(void); -- cgit v1.2.1