46 #include "EST_Option.h"
48 #include "EST_io_aux.h"
51 #include <audio/audiolib.h>
52 #include <audio/soundlib.h>
54 #define VOL(volume) ((1 << 16) * (volume) / 100)
55 #define au_serverrate 16000
56 static int nas_playing = 0;
58 int nas_supported = TRUE;
61 #define NAS_BIG_ENDIAN (((char *)&endian_int)[0] == 0)
63 static void na_sync_play_cb(AuServer *aud, AuEventHandlerRec *handler,
64 AuEvent *ev, AuPointer data)
66 int *d = (
int *) data;
81 int dev_sr[] = {8000, 9600, 11025, 16000, 18900, 22050, 32000,
82 37800, 44100, 48000, -1};
84 char *auservername = NULL;
89 AuEventHandlerRec *er;
91 int num_samps, samp_rate;
94 auservername = wstrdup(al.
val(
"-display"));
96 aud = AuOpenServer(auservername, 0, NULL, 0, NULL, NULL);
99 cerr <<
"Can't access NAS server " << auservername << endl;
107 bool samp_rate_ok = FALSE;
108 for (i=0; dev_sr[i] != -1; i++)
109 if (samp_rate == dev_sr[i])
111 if (samp_rate_ok == FALSE)
113 if (samp_rate == 10000)
119 waveform = inwave.values().
memory();
126 in = SoundCreate(SoundFileFormatNone,
129 samp_rate, num_samps, NULL);
131 in = SoundCreate(SoundFileFormatNone,
133 AuFormatLinearSigned16MSB :
134 AuFormatLinearSigned16LSB),
136 samp_rate, num_samps,NULL);
138 er = AuSoundPlayFromData(aud, in, waveform, AuNone, VOL(100),
140 (AuPointer) &d,(AuFlowID *) NULL,
141 (
int *) NULL, (
int *) NULL, &ret);
144 AuNextEvent(aud, AuTrue, &ev);
145 AuDispatchEvent(aud, &ev);
161 cerr <<
"NAS: record not written yet\n";
166 int nas_supported = FALSE;
172 cerr <<
"NAS playback not supported" << endl;
181 cerr <<
"NAS record not supported" << endl;