49 |
|
#include "debug.h" |
50 |
|
|
51 |
|
|
52 |
< |
// Supported sample rates, sizes and channels (defaults) |
53 |
< |
int audio_num_sample_rates = 1; |
54 |
< |
uint32 audio_sample_rates[] = {44100 << 16}; |
55 |
< |
int audio_num_sample_sizes = 1; |
56 |
< |
uint16 audio_sample_sizes[] = {16}; |
57 |
< |
int audio_num_channel_counts = 1; |
58 |
< |
uint16 audio_channel_counts[] = {2}; |
52 |
> |
// The currently selected audio parameters (indices in audio_sample_rates[] etc. vectors) |
53 |
> |
static int audio_sample_rate_index = 0; |
54 |
> |
static int audio_sample_size_index = 0; |
55 |
> |
static int audio_channel_count_index = 0; |
56 |
|
|
57 |
|
// Constants |
58 |
|
#define DSP_NAME "/dev/dsp" |
60 |
|
// Global variables |
61 |
|
static int audio_fd = -1; // fd of /dev/dsp or ESD |
62 |
|
static int mixer_fd = -1; // fd of /dev/mixer |
63 |
+ |
static bool formats_known = false; // Flag: available audio formats have been probed |
64 |
|
static sem_t audio_irq_done_sem; // Signal from interrupt to streaming thread: data block read |
65 |
|
static bool sem_inited = false; // Flag: audio_irq_done_sem initialized |
66 |
|
static int sound_buffer_size; // Size of sound buffer in bytes |
82 |
|
// Set AudioStatus to reflect current audio stream format |
83 |
|
static void set_audio_status_format(void) |
84 |
|
{ |
85 |
< |
AudioStatus.sample_rate = audio_sample_rates[0]; |
86 |
< |
AudioStatus.sample_size = audio_sample_sizes[0]; |
87 |
< |
AudioStatus.channels = audio_channel_counts[0]; |
85 |
> |
AudioStatus.sample_rate = audio_sample_rates[audio_sample_rate_index]; |
86 |
> |
AudioStatus.sample_size = audio_sample_sizes[audio_sample_size_index]; |
87 |
> |
AudioStatus.channels = audio_channel_counts[audio_channel_count_index]; |
88 |
|
} |
89 |
|
|
90 |
|
// Init using /dev/dsp, returns false on error |
91 |
< |
bool audio_init_dsp(void) |
91 |
> |
static bool open_dsp(void) |
92 |
|
{ |
93 |
+ |
// Open /dev/dsp |
94 |
+ |
audio_fd = open(DSP_NAME, O_WRONLY); |
95 |
+ |
if (audio_fd < 0) { |
96 |
+ |
fprintf(stderr, "WARNING: Cannot open %s (%s)\n", DSP_NAME, strerror(errno)); |
97 |
+ |
return false; |
98 |
+ |
} |
99 |
+ |
|
100 |
|
printf("Using " DSP_NAME " audio output\n"); |
101 |
|
|
102 |
|
// Get supported sample formats |
103 |
< |
unsigned long format; |
104 |
< |
ioctl(audio_fd, SNDCTL_DSP_GETFMTS, &format); |
105 |
< |
if ((format & (AFMT_U8 | AFMT_S16_BE | AFMT_S16_LE)) == 0) { |
106 |
< |
WarningAlert(GetString(STR_AUDIO_FORMAT_WARN)); |
107 |
< |
close(audio_fd); |
108 |
< |
audio_fd = -1; |
109 |
< |
return false; |
110 |
< |
} |
111 |
< |
if (format & (AFMT_S16_BE | AFMT_S16_LE)) { |
112 |
< |
audio_sample_sizes[0] = 16; |
113 |
< |
silence_byte = 0; |
114 |
< |
} else { |
115 |
< |
audio_sample_sizes[0] = 8; |
116 |
< |
silence_byte = 0x80; |
103 |
> |
if (!formats_known) { |
104 |
> |
unsigned long format; |
105 |
> |
ioctl(audio_fd, SNDCTL_DSP_GETFMTS, &format); |
106 |
> |
if (format & AFMT_U8) |
107 |
> |
audio_sample_sizes.push_back(8); |
108 |
> |
if (format & (AFMT_S16_BE | AFMT_S16_LE)) |
109 |
> |
audio_sample_sizes.push_back(16); |
110 |
> |
|
111 |
> |
int stereo = 0; |
112 |
> |
if (ioctl(audio_fd, SNDCTL_DSP_STEREO, &stereo) == 0 && stereo == 0) |
113 |
> |
audio_channel_counts.push_back(1); |
114 |
> |
stereo = 1; |
115 |
> |
if (ioctl(audio_fd, SNDCTL_DSP_STEREO, &stereo) == 0 && stereo == 1) |
116 |
> |
audio_channel_counts.push_back(2); |
117 |
> |
|
118 |
> |
if (audio_sample_sizes.empty() || audio_channel_counts.empty()) { |
119 |
> |
WarningAlert(GetString(STR_AUDIO_FORMAT_WARN)); |
120 |
> |
close(audio_fd); |
121 |
> |
audio_fd = -1; |
122 |
> |
return false; |
123 |
> |
} |
124 |
> |
|
125 |
> |
audio_sample_rates.push_back(11025 << 16); |
126 |
> |
audio_sample_rates.push_back(22050 << 16); |
127 |
> |
int rate = 44100; |
128 |
> |
ioctl(audio_fd, SNDCTL_DSP_SPEED, &rate); |
129 |
> |
if (rate > 22050) |
130 |
> |
audio_sample_rates.push_back(rate << 16); |
131 |
> |
|
132 |
> |
// Default to highest supported values |
133 |
> |
audio_sample_rate_index = audio_sample_rates.size() - 1; |
134 |
> |
audio_sample_size_index = audio_sample_sizes.size() - 1; |
135 |
> |
audio_channel_count_index = audio_channel_counts.size() - 1; |
136 |
> |
formats_known = true; |
137 |
|
} |
113 |
– |
if (!(format & AFMT_S16_BE)) |
114 |
– |
little_endian = true; |
138 |
|
|
139 |
|
// Set DSP parameters |
140 |
< |
format = audio_sample_sizes[0] == 8 ? AFMT_U8 : (little_endian ? AFMT_S16_LE : AFMT_S16_BE); |
140 |
> |
unsigned long format; |
141 |
> |
if (audio_sample_sizes[audio_sample_size_index] == 8) { |
142 |
> |
format = AFMT_U8; |
143 |
> |
little_endian = false; |
144 |
> |
silence_byte = 0x80; |
145 |
> |
} else { |
146 |
> |
unsigned long sup_format; |
147 |
> |
ioctl(audio_fd, SNDCTL_DSP_GETFMTS, &format); |
148 |
> |
if (sup_format & AFMT_S16_BE) { |
149 |
> |
little_endian = false; |
150 |
> |
format = AFMT_S16_BE; |
151 |
> |
} else { |
152 |
> |
little_endian = true; |
153 |
> |
format = AFMT_S16_LE; |
154 |
> |
} |
155 |
> |
silence_byte = 0; |
156 |
> |
} |
157 |
|
ioctl(audio_fd, SNDCTL_DSP_SETFMT, &format); |
158 |
|
int frag = 0x0004000c; // Block size: 4096 frames |
159 |
|
ioctl(audio_fd, SNDCTL_DSP_SETFRAGMENT, &frag); |
160 |
< |
int stereo = (audio_channel_counts[0] == 2); |
160 |
> |
int stereo = (audio_channel_counts[audio_channel_count_index] == 2); |
161 |
|
ioctl(audio_fd, SNDCTL_DSP_STEREO, &stereo); |
162 |
< |
int rate = audio_sample_rates[0] >> 16; |
162 |
> |
int rate = audio_sample_rates[audio_sample_rate_index] >> 16; |
163 |
|
ioctl(audio_fd, SNDCTL_DSP_SPEED, &rate); |
125 |
– |
audio_sample_rates[0] = rate << 16; |
126 |
– |
|
127 |
– |
// Set AudioStatus again because we now know more about the sound |
128 |
– |
// system's capabilities |
129 |
– |
set_audio_status_format(); |
164 |
|
|
165 |
|
// Get sound buffer size |
166 |
|
ioctl(audio_fd, SNDCTL_DSP_GETBLKSIZE, &audio_frames_per_block); |
167 |
|
D(bug("DSP_GETBLKSIZE %d\n", audio_frames_per_block)); |
134 |
– |
sound_buffer_size = (AudioStatus.sample_size >> 3) * AudioStatus.channels * audio_frames_per_block; |
168 |
|
return true; |
169 |
|
} |
170 |
|
|
171 |
|
// Init using ESD, returns false on error |
172 |
< |
bool audio_init_esd(void) |
172 |
> |
static bool open_esd(void) |
173 |
|
{ |
174 |
|
#ifdef ENABLE_ESD |
175 |
< |
printf("Using ESD audio output\n"); |
175 |
> |
// ESD supports a variety of audio formats |
176 |
> |
if (!formats_known) { |
177 |
> |
audio_sample_rates.push_back(11025 << 16); |
178 |
> |
audio_sample_rates.push_back(22050 << 16); |
179 |
> |
audio_sample_rates.push_back(44100 << 16); |
180 |
> |
audio_sample_sizes.push_back(8); |
181 |
> |
audio_sample_sizes.push_back(16); |
182 |
> |
audio_channel_counts.push_back(1); |
183 |
> |
audio_channel_counts.push_back(2); |
184 |
> |
|
185 |
> |
// Default to 44.1kHz, 16-bit, stereo |
186 |
> |
audio_sample_rate_index = 2; |
187 |
> |
audio_sample_size_index = 1; |
188 |
> |
audio_channel_count_index = 1; |
189 |
> |
formats_known = true; |
190 |
> |
} |
191 |
|
|
192 |
|
// ESD audio format |
193 |
|
esd_format_t format = ESD_STREAM | ESD_PLAY; |
194 |
< |
if (AudioStatus.sample_size == 8) |
194 |
> |
if (audio_sample_sizes[audio_sample_size_index] == 8) |
195 |
|
format |= ESD_BITS8; |
196 |
|
else |
197 |
|
format |= ESD_BITS16; |
198 |
< |
if (AudioStatus.channels == 1) |
198 |
> |
if (audio_channel_counts[audio_channel_count_index] == 1) |
199 |
|
format |= ESD_MONO; |
200 |
|
else |
201 |
|
format |= ESD_STEREO; |
208 |
|
silence_byte = 0; // Is this correct for 8-bit mode? |
209 |
|
|
210 |
|
// Open connection to ESD server |
211 |
< |
audio_fd = esd_play_stream(format, AudioStatus.sample_rate >> 16, NULL, NULL); |
211 |
> |
audio_fd = esd_play_stream(format, audio_sample_rates[audio_sample_rate_index] >> 16, NULL, NULL); |
212 |
|
if (audio_fd < 0) { |
213 |
< |
char str[256]; |
214 |
< |
sprintf(str, GetString(STR_NO_ESD_WARN), strerror(errno)); |
167 |
< |
WarningAlert(str); |
213 |
> |
fprintf(stderr, "WARNING: Cannot open ESD connection\n"); |
214 |
> |
formats_known = false; |
215 |
|
return false; |
216 |
|
} |
217 |
|
|
218 |
+ |
printf("Using ESD audio output\n"); |
219 |
+ |
|
220 |
|
// Sound buffer size = 4096 frames |
221 |
|
audio_frames_per_block = 4096; |
173 |
– |
sound_buffer_size = (AudioStatus.sample_size >> 3) * AudioStatus.channels * audio_frames_per_block; |
222 |
|
return true; |
175 |
– |
#else |
176 |
– |
ErrorAlert("Basilisk II has been compiled with ESD support disabled."); |
177 |
– |
return false; |
223 |
|
#endif |
224 |
|
} |
225 |
|
|
226 |
< |
void AudioInit(void) |
226 |
> |
static bool open_audio(void) |
227 |
|
{ |
228 |
< |
char str[256]; |
229 |
< |
|
230 |
< |
// Init audio status (defaults) and feature flags |
231 |
< |
set_audio_status_format(); |
232 |
< |
AudioStatus.mixer = 0; |
233 |
< |
AudioStatus.num_sources = 0; |
189 |
< |
audio_component_flags = cmpWantsRegisterMessage | kStereoOut | k16BitOut; |
190 |
< |
|
191 |
< |
// Sound disabled in prefs? Then do nothing |
192 |
< |
if (PrefsFindBool("nosound")) |
193 |
< |
return; |
228 |
> |
#ifdef ENABLE_ESD |
229 |
> |
// If ESPEAKER is set, the user probably wants to use ESD, so try that first |
230 |
> |
if (getenv("ESPEAKER")) |
231 |
> |
if (open_esd()) |
232 |
> |
goto dev_opened; |
233 |
> |
#endif |
234 |
|
|
235 |
|
// Try to open /dev/dsp |
236 |
< |
audio_fd = open(DSP_NAME, O_WRONLY); |
237 |
< |
if (audio_fd < 0) { |
236 |
> |
if (open_dsp()) |
237 |
> |
goto dev_opened; |
238 |
> |
|
239 |
|
#ifdef ENABLE_ESD |
240 |
< |
if (!audio_init_esd()) |
241 |
< |
return; |
242 |
< |
#else |
243 |
< |
sprintf(str, GetString(STR_NO_AUDIO_DEV_WARN), DSP_NAME, strerror(errno)); |
203 |
< |
WarningAlert(str); |
204 |
< |
return; |
240 |
> |
// Hm, /dev/dsp failed so we try ESD again if ESPEAKER wasn't set |
241 |
> |
if (!getenv("ESPEAKER")) |
242 |
> |
if (open_esd()) |
243 |
> |
goto dev_opened; |
244 |
|
#endif |
206 |
– |
} else |
207 |
– |
if (!audio_init_dsp()) |
208 |
– |
return; |
245 |
|
|
246 |
< |
// Try to open /dev/mixer |
247 |
< |
mixer_fd = open("/dev/mixer", O_RDWR); |
248 |
< |
if (mixer_fd < 0) |
213 |
< |
printf("WARNING: Cannot open /dev/mixer (%s)", strerror(errno)); |
246 |
> |
// No audio device succeeded |
247 |
> |
WarningAlert(GetString(STR_NO_AUDIO_WARN)); |
248 |
> |
return false; |
249 |
|
|
250 |
< |
// Init semaphore |
251 |
< |
if (sem_init(&audio_irq_done_sem, 0, 0) < 0) |
252 |
< |
return; |
253 |
< |
sem_inited = true; |
250 |
> |
// Device opened, set AudioStatus |
251 |
> |
dev_opened: |
252 |
> |
sound_buffer_size = (audio_sample_sizes[audio_sample_size_index] >> 3) * audio_channel_counts[audio_channel_count_index] * audio_frames_per_block; |
253 |
> |
set_audio_status_format(); |
254 |
|
|
255 |
|
// Start streaming thread |
256 |
|
pthread_attr_init(&stream_thread_attr); |
263 |
|
pthread_attr_setschedparam(&stream_thread_attr, &fifo_param); |
264 |
|
} |
265 |
|
#endif |
266 |
+ |
stream_thread_cancel = false; |
267 |
|
stream_thread_active = (pthread_create(&stream_thread, &stream_thread_attr, stream_func, NULL) == 0); |
268 |
|
|
269 |
< |
// Everything OK |
269 |
> |
// Everything went fine |
270 |
|
audio_open = true; |
271 |
+ |
return true; |
272 |
+ |
} |
273 |
+ |
|
274 |
+ |
void AudioInit(void) |
275 |
+ |
{ |
276 |
+ |
char str[256]; |
277 |
+ |
|
278 |
+ |
// Init audio status (reasonable defaults) and feature flags |
279 |
+ |
AudioStatus.sample_rate = 44100 << 16; |
280 |
+ |
AudioStatus.sample_size = 16; |
281 |
+ |
AudioStatus.channels = 2; |
282 |
+ |
AudioStatus.mixer = 0; |
283 |
+ |
AudioStatus.num_sources = 0; |
284 |
+ |
audio_component_flags = cmpWantsRegisterMessage | kStereoOut | k16BitOut; |
285 |
+ |
|
286 |
+ |
// Sound disabled in prefs? Then do nothing |
287 |
+ |
if (PrefsFindBool("nosound")) |
288 |
+ |
return; |
289 |
+ |
|
290 |
+ |
// Init semaphore |
291 |
+ |
if (sem_init(&audio_irq_done_sem, 0, 0) < 0) |
292 |
+ |
return; |
293 |
+ |
sem_inited = true; |
294 |
+ |
|
295 |
+ |
// Try to open /dev/mixer |
296 |
+ |
mixer_fd = open("/dev/mixer", O_RDWR); |
297 |
+ |
if (mixer_fd < 0) |
298 |
+ |
printf("WARNING: Cannot open /dev/mixer (%s)", strerror(errno)); |
299 |
+ |
|
300 |
+ |
// Open and initialize audio device |
301 |
+ |
open_audio(); |
302 |
|
} |
303 |
|
|
304 |
|
|
306 |
|
* Deinitialization |
307 |
|
*/ |
308 |
|
|
309 |
< |
void AudioExit(void) |
309 |
> |
static void close_audio(void) |
310 |
|
{ |
311 |
|
// Stop stream and delete semaphore |
312 |
|
if (stream_thread_active) { |
317 |
|
pthread_join(stream_thread, NULL); |
318 |
|
stream_thread_active = false; |
319 |
|
} |
253 |
– |
if (sem_inited) |
254 |
– |
sem_destroy(&audio_irq_done_sem); |
320 |
|
|
321 |
< |
// Close /dev/dsp |
322 |
< |
if (audio_fd > 0) |
321 |
> |
// Close /dev/dsp or ESD socket |
322 |
> |
if (audio_fd >= 0) { |
323 |
|
close(audio_fd); |
324 |
+ |
audio_fd = -1; |
325 |
+ |
} |
326 |
+ |
|
327 |
+ |
audio_open = false; |
328 |
+ |
} |
329 |
+ |
|
330 |
+ |
void AudioExit(void) |
331 |
+ |
{ |
332 |
+ |
if (sem_inited) { |
333 |
+ |
sem_destroy(&audio_irq_done_sem); |
334 |
+ |
sem_inited = false; |
335 |
+ |
} |
336 |
|
|
337 |
|
// Close /dev/mixer |
338 |
< |
if (mixer_fd > 0) |
338 |
> |
if (mixer_fd >= 0) { |
339 |
|
close(mixer_fd); |
340 |
+ |
mixer_fd = -1; |
341 |
+ |
} |
342 |
|
} |
343 |
|
|
344 |
|
|
451 |
|
|
452 |
|
/* |
453 |
|
* Set sampling parameters |
454 |
< |
* "index" is an index into the audio_sample_rates[] etc. arrays |
454 |
> |
* "index" is an index into the audio_sample_rates[] etc. vectors |
455 |
|
* It is guaranteed that AudioStatus.num_sources == 0 |
456 |
|
*/ |
457 |
|
|
458 |
< |
void audio_set_sample_rate(int index) |
458 |
> |
bool audio_set_sample_rate(int index) |
459 |
|
{ |
460 |
+ |
close_audio(); |
461 |
+ |
audio_sample_rate_index = index; |
462 |
+ |
return open_audio(); |
463 |
|
} |
464 |
|
|
465 |
< |
void audio_set_sample_size(int index) |
465 |
> |
bool audio_set_sample_size(int index) |
466 |
|
{ |
467 |
+ |
close_audio(); |
468 |
+ |
audio_sample_size_index = index; |
469 |
+ |
return open_audio(); |
470 |
|
} |
471 |
|
|
472 |
< |
void audio_set_channels(int index) |
472 |
> |
bool audio_set_channels(int index) |
473 |
|
{ |
474 |
+ |
close_audio(); |
475 |
+ |
audio_channel_count_index = index; |
476 |
+ |
return open_audio(); |
477 |
|
} |
478 |
|
|
479 |
|
|