14 #include "EST_cutils.h"
16 #include "EST_Option.h"
18 #include "EST_io_aux.h"
20 #if defined (SUPPORT_IRIX) || defined (SUPPORT_IRIX53)
24 int irix_supported = TRUE;
36 waveform = inwave.values().
memory();
40 config = ALnewconfig();
41 ALsetsampfmt(config, AL_SAMPFMT_TWOSCOMP);
42 ALsetwidth(config, AL_SAMPLE_16);
43 ALsetchannels(config, AL_MONO);
46 pvbuf[0] = AL_OUTPUT_RATE;
47 pvbuf[1] = sample_rate;
48 ALsetparams(AL_DEFAULT_DEVICE, pvbuf, 2);
59 port = ALopenport(
"speech-tools",
"w", config);
62 cerr <<
"IRIX: can't open audio port" << endl;
67 r = ALwritesamps(port, waveform, num_samples);
69 cerr <<
"IRIX: failed to write to buffer" << endl;
74 while (ALgetfilled(port)) sginap(1);
76 while (ALgetfilled(port)) usleep(10000);
86 int irix_supported = FALSE;
92 cerr <<
"IRIX 16bit linear not supported" << endl;