45 #include "EST_system.h"
46 #include "EST_socket.h"
47 #include "EST_Option.h"
49 #include "EST_io_aux.h"
51 #include "EST_audio.h"
52 #include "EST_wave_aux.h"
68 if ((sr = getenv(
"NA_PLAY_HOST")) != NULL)
72 if ((quality = getenv(
"NA_PLAY_QUALITY")) != NULL)
77 protocol = al.
val(
"-p");
78 else if ((sr=getenv(
"NA_PLAY_PROTOCOL")) != NULL)
80 else if (protocol ==
"")
83 protocol =
"netaudio";
84 else if (esd_supported)
85 protocol =
"esdaudio";
86 else if (sun16_supported)
87 protocol =
"sun16audio";
88 else if (freebsd16_supported)
89 protocol =
"freebsd16audio";
90 else if (linux16_supported)
91 protocol =
"linux16audio";
92 else if (irix_supported)
93 protocol =
"irixaudio";
94 else if (macosx_supported)
95 protocol =
"macosxaudio";
96 else if (win32audio_supported)
97 protocol =
"win32audio";
98 else if (mplayer_supported)
99 protocol =
"mplayeraudio";
101 protocol =
"sunaudio";
105 if (inwave.
num_channels() > 1 && upcase(protocol) !=
"MACOSXAUDIO" )
107 wave_combine_channels(wtmp,inwave);
113 if (upcase(protocol) ==
"NETAUDIO")
114 return play_nas_wave(*toplay,al);
115 else if (upcase(protocol) ==
"ESDAUDIO")
116 return play_esd_wave(*toplay,al);
117 else if (upcase(protocol) ==
"SUNAUDIO")
118 return play_sunau_wave(*toplay,al);
119 else if (upcase(protocol) ==
"SUN16AUDIO")
120 return play_sun16_wave(*toplay,al);
121 else if ((upcase(protocol) ==
"FREEBSD16AUDIO") ||
122 (upcase(protocol) ==
"LINUX16AUDIO"))
123 return play_linux_wave(*toplay,al);
124 else if (upcase(protocol) ==
"IRIXAUDIO")
125 return play_irix_wave(*toplay,al);
126 else if (upcase(protocol) ==
"MACOSXAUDIO")
127 return play_macosx_wave(*toplay,al);
128 else if (upcase(protocol) ==
"MPLAYERAUDIO")
129 return play_mplayer_wave(*toplay,al);
130 else if (upcase(protocol) ==
"WIN32AUDIO")
131 return play_win32audio_wave(*toplay,al);
132 else if (upcase(protocol) ==
"AUDIO_COMMAND")
133 return play_aucomm_wave(*toplay,al);
134 else if (upcase(protocol) ==
"SOCKET")
135 return play_socket_wave(*toplay,al);
138 cerr <<
"Unknown audio server protocol " << protocol << endl;
151 fd = al.
ival(
"socket_fd");
154 cerr <<
"Socket audio mode: no socket_fd specified" << endl;
158 if (al.
present(
"socket_otype"))
159 otype = al.
val(
"socket_otype");
163 inwave.save(tmpfile,otype);
168 socket_send_file(fd,tmpfile);
182 usrcommand = al.
val(
"-command");
183 else if (getenv(
"NA_PLAY_COMMAND") != NULL)
184 usrcommand = getenv(
"NA_PLAY_COMMAND");
187 cerr <<
"Audio protocol set to COMMAND but no command specified\n";
191 sprintf(tmpfile,
"/tmp/audiofile_%05ld",(
long)getpid());
196 otype = al.
val(
"-otype");
200 if (inwave.save(tmpfile,otype) != write_ok)
202 cerr <<
"Audio writing file \"" << tmpfile <<
"\" in type \"" <<
203 otype <<
" failed " << endl;
207 sprintf(pref,
"FILE=%s;SR=%d;",tmpfile,inwave.
sample_rate());
221 const char *audiodevice;
225 if (al.
present(
"-audiodevice"))
226 audiodevice = al.
val(
"-audiodevice");
228 audiodevice =
"/dev/audio";
232 rcode = inwave.save(audiodevice,
"ulaw");
243 audios +=
"sunaudio";
245 audios +=
" audio_command";
247 audios +=
" netaudio";
248 else if (esd_supported)
249 audios +=
" esdaudio";
251 audios +=
" sun16audio";
252 if (freebsd16_supported)
253 audios +=
" freebsd16audio";
254 if (linux16_supported)
255 audios +=
" linux16audio";
257 audios +=
" irixaudio";
258 if (mplayer_supported)
259 audios +=
" mplayeraudio";
260 if (macosx_supported)
261 audios +=
"macosxaudio";
262 if (win32audio_supported)
263 audios +=
" win32audio";
264 if (os2audio_supported)
265 audios +=
" os2audio";
278 if ((sr = getenv(
"NA_PLAY_HOST")) != NULL)
283 protocol = al.
val(
"-p");
284 else if ((sr=getenv(
"NA_PLAY_PROTOCOL")) != NULL)
286 else if (protocol ==
"")
289 protocol =
"netaudio";
290 else if (esd_supported)
291 protocol =
"esdaudio";
292 else if (sun16_supported)
293 protocol =
"sun16audio";
294 else if (freebsd16_supported)
295 protocol =
"freebsd16audio";
296 else if (linux16_supported)
297 protocol =
"linux16audio";
298 else if (irix_supported)
299 protocol =
"irixaudio";
300 else if (win32audio_supported)
301 protocol =
"win32audio";
302 else if (mplayer_supported)
303 protocol =
"mplayeraudio";
305 protocol =
"sunaudio";
308 if (upcase(protocol) ==
"NETAUDIO")
309 return record_nas_wave(wave,al);
310 else if (upcase(protocol) ==
"ESDAUDIO")
311 return record_esd_wave(wave,al);
312 else if (upcase(protocol) ==
"SUN16AUDIO")
313 return record_sun16_wave(wave,al);
314 else if ((upcase(protocol) ==
"FREEBSD16AUDIO") ||
315 (upcase(protocol) ==
"LINUX16AUDIO"))
316 return record_linux_wave(wave,al);
317 else if (upcase(protocol) ==
"SUNAUDIO")
318 return record_sunau_wave(wave,al);
321 cerr <<
"NA_RECORD: \"" << protocol <<
322 "\" EST current has no record support" << endl;
329 int num_samples,i,r,n;
331 unsigned char *ulawwave;
333 const int AUDIOBUFFSIZE = 256;
334 const char *audiodevice;
336 if (al.
present(
"-audiodevice"))
337 audiodevice = al.
val(
"-audiodevice");
339 audiodevice =
"/dev/audio";
341 if ((audio = open(audiodevice, O_RDONLY)) == -1)
343 cerr <<
"SUN16: can't open " << audiodevice <<
" for reading" << endl;
347 num_samples = (int)(8000*al.
fval(
"-time"));
348 ulawwave = walloc(
unsigned char,num_samples);
350 for (r=i=0; i < num_samples; i+= r)
352 if (num_samples > i+AUDIOBUFFSIZE)
356 r = read(audio,&ulawwave[i], n);
359 cerr <<
"sunaudio: failed to read from audio device" << endl;
368 waveform = wave.values().
memory();
370 ulaw_to_short(ulawwave,waveform,num_samples);