2 * OpenAL cross platform audio library
3 * Copyright (C) 1999-2007 by authors.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
18 * Or go to http://www.gnu.org/copyleft/lgpl.html
23 #include <sys/ioctl.h>
24 #include <sys/types.h>
37 #include <sys/soundcard.h>
40 * The OSS documentation talks about SOUND_MIXER_READ, but the header
41 * only contains MIXER_READ. Play safe. Same for WRITE.
43 #ifndef SOUND_MIXER_READ
44 #define SOUND_MIXER_READ MIXER_READ
46 #ifndef SOUND_MIXER_WRITE
47 #define SOUND_MIXER_WRITE MIXER_WRITE
50 static const ALCchar oss_device
[] = "OSS Default";
65 static int log2i(ALCuint x
)
77 static ALuint
OSSProc(ALvoid
*ptr
)
79 ALCdevice
*pDevice
= (ALCdevice
*)ptr
;
80 oss_data
*data
= (oss_data
*)pDevice
->ExtraData
;
86 frameSize
= aluFrameSizeFromFormat(pDevice
->Format
);
88 while(!data
->killNow
&& pDevice
->Connected
)
90 ALint len
= data
->data_size
;
91 ALubyte
*WritePtr
= data
->mix_data
;
93 aluMixData(pDevice
, WritePtr
, len
/frameSize
);
94 while(len
> 0 && !data
->killNow
)
96 wrote
= write(data
->fd
, WritePtr
, len
);
99 if(errno
!= EAGAIN
&& errno
!= EWOULDBLOCK
&& errno
!= EINTR
)
101 AL_PRINT("write failed: %s\n", strerror(errno
));
102 aluHandleDisconnect(pDevice
);
118 static ALuint
OSSCaptureProc(ALvoid
*ptr
)
120 ALCdevice
*pDevice
= (ALCdevice
*)ptr
;
121 oss_data
*data
= (oss_data
*)pDevice
->ExtraData
;
127 frameSize
= aluFrameSizeFromFormat(pDevice
->Format
);
129 while(!data
->killNow
)
131 amt
= read(data
->fd
, data
->mix_data
, data
->data_size
);
134 AL_PRINT("read failed: %s\n", strerror(errno
));
135 aluHandleDisconnect(pDevice
);
144 WriteRingBuffer(data
->ring
, data
->mix_data
, amt
/frameSize
);
150 static ALCboolean
oss_open_playback(ALCdevice
*device
, const ALCchar
*deviceName
)
155 strncpy(driver
, GetConfigValue("oss", "device", "/dev/dsp"), sizeof(driver
)-1);
156 driver
[sizeof(driver
)-1] = 0;
158 deviceName
= oss_device
;
159 else if(strcmp(deviceName
, oss_device
) != 0)
162 data
= (oss_data
*)calloc(1, sizeof(oss_data
));
165 data
->fd
= open(driver
, O_WRONLY
);
169 AL_PRINT("Could not open %s: %s\n", driver
, strerror(errno
));
173 device
->szDeviceName
= strdup(deviceName
);
174 device
->ExtraData
= data
;
178 static void oss_close_playback(ALCdevice
*device
)
180 oss_data
*data
= (oss_data
*)device
->ExtraData
;
184 device
->ExtraData
= NULL
;
187 static ALCboolean
oss_reset_playback(ALCdevice
*device
)
189 oss_data
*data
= (oss_data
*)device
->ExtraData
;
190 int numFragmentsLogSize
;
191 int log2FragmentSize
;
192 unsigned int periods
;
201 switch(aluBytesFromFormat(device
->Format
))
207 switch(aluChannelsFromFormat(device
->Format
))
209 case 1: device
->Format
= AL_FORMAT_MONO16
; break;
210 case 2: device
->Format
= AL_FORMAT_STEREO16
; break;
211 case 4: device
->Format
= AL_FORMAT_QUAD16
; break;
212 case 6: device
->Format
= AL_FORMAT_51CHN16
; break;
213 case 7: device
->Format
= AL_FORMAT_61CHN16
; break;
214 case 8: device
->Format
= AL_FORMAT_71CHN16
; break;
218 ossFormat
= AFMT_S16_NE
;
221 AL_PRINT("Unknown format: 0x%x\n", device
->Format
);
225 periods
= device
->NumUpdates
;
226 numChannels
= aluChannelsFromFormat(device
->Format
);
227 frameSize
= numChannels
* aluBytesFromFormat(device
->Format
);
229 ossSpeed
= device
->Frequency
;
230 log2FragmentSize
= log2i(device
->UpdateSize
* frameSize
);
232 /* according to the OSS spec, 16 bytes are the minimum */
233 if (log2FragmentSize
< 4)
234 log2FragmentSize
= 4;
235 /* Subtract one period since the temp mixing buffer counts as one. Still
236 * need at least two on the card, though. */
237 if(periods
> 2) periods
--;
238 numFragmentsLogSize
= (periods
<< 16) | log2FragmentSize
;
240 #define ok(func, str) (i=(func),((i<0)?(err=(str)),0:1))
241 /* Don't fail if SETFRAGMENT fails. We can handle just about anything
242 * that's reported back via GETOSPACE */
243 ioctl(data
->fd
, SNDCTL_DSP_SETFRAGMENT
, &numFragmentsLogSize
);
244 if (!(ok(ioctl(data
->fd
, SNDCTL_DSP_SETFMT
, &ossFormat
), "set format") &&
245 ok(ioctl(data
->fd
, SNDCTL_DSP_CHANNELS
, &numChannels
), "set channels") &&
246 ok(ioctl(data
->fd
, SNDCTL_DSP_SPEED
, &ossSpeed
), "set speed") &&
247 ok(ioctl(data
->fd
, SNDCTL_DSP_GETOSPACE
, &info
), "get space")))
249 AL_PRINT("%s failed: %s\n", err
, strerror(errno
));
254 if((int)aluChannelsFromFormat(device
->Format
) != numChannels
)
256 AL_PRINT("Could not set %d channels, got %d instead\n", aluChannelsFromFormat(device
->Format
), numChannels
);
260 if(!((ossFormat
== AFMT_U8
&& aluBytesFromFormat(device
->Format
) == 1) ||
261 (ossFormat
== AFMT_S16_NE
&& aluBytesFromFormat(device
->Format
) == 2)))
263 AL_PRINT("Could not set %d-bit output, got format %#x\n", aluBytesFromFormat(device
->Format
)*8, ossFormat
);
267 device
->Frequency
= ossSpeed
;
268 device
->UpdateSize
= info
.fragsize
/ frameSize
;
269 device
->NumUpdates
= info
.fragments
+ 1;
270 device
->TimeRes
= (ALuint64
)device
->UpdateSize
* 1000000000 /
273 data
->data_size
= device
->UpdateSize
* frameSize
;
274 data
->mix_data
= calloc(1, data
->data_size
);
276 SetDefaultChannelOrder(device
);
278 data
->thread
= StartThread(OSSProc
, device
);
279 if(data
->thread
== NULL
)
281 free(data
->mix_data
);
282 data
->mix_data
= NULL
;
289 static void oss_stop_playback(ALCdevice
*device
)
291 oss_data
*data
= (oss_data
*)device
->ExtraData
;
297 StopThread(data
->thread
);
301 if(ioctl(data
->fd
, SNDCTL_DSP_RESET
) != 0)
302 AL_PRINT("Error resetting device: %s\n", strerror(errno
));
304 free(data
->mix_data
);
305 data
->mix_data
= NULL
;
309 static ALCboolean
oss_open_capture(ALCdevice
*device
, const ALCchar
*deviceName
)
311 int numFragmentsLogSize
;
312 int log2FragmentSize
;
313 unsigned int periods
;
324 strncpy(driver
, GetConfigValue("oss", "capture", "/dev/dsp"), sizeof(driver
)-1);
325 driver
[sizeof(driver
)-1] = 0;
327 deviceName
= oss_device
;
328 else if(strcmp(deviceName
, oss_device
) != 0)
331 data
= (oss_data
*)calloc(1, sizeof(oss_data
));
334 data
->fd
= open(driver
, O_RDONLY
);
338 AL_PRINT("Could not open %s: %s\n", driver
, strerror(errno
));
342 switch(aluBytesFromFormat(device
->Format
))
348 ossFormat
= AFMT_S16_NE
;
351 AL_PRINT("Unknown format: 0x%x\n", device
->Format
);
358 numChannels
= aluChannelsFromFormat(device
->Format
);
359 frameSize
= numChannels
* aluBytesFromFormat(device
->Format
);
360 ossSpeed
= device
->Frequency
;
361 log2FragmentSize
= log2i(device
->UpdateSize
* device
->NumUpdates
*
362 frameSize
/ periods
);
364 /* according to the OSS spec, 16 bytes are the minimum */
365 if (log2FragmentSize
< 4)
366 log2FragmentSize
= 4;
367 numFragmentsLogSize
= (periods
<< 16) | log2FragmentSize
;
369 #define ok(func, str) (i=(func),((i<0)?(err=(str)),0:1))
370 if (!(ok(ioctl(data
->fd
, SNDCTL_DSP_SETFRAGMENT
, &numFragmentsLogSize
), "set fragment") &&
371 ok(ioctl(data
->fd
, SNDCTL_DSP_SETFMT
, &ossFormat
), "set format") &&
372 ok(ioctl(data
->fd
, SNDCTL_DSP_CHANNELS
, &numChannels
), "set channels") &&
373 ok(ioctl(data
->fd
, SNDCTL_DSP_SPEED
, &ossSpeed
), "set speed") &&
374 ok(ioctl(data
->fd
, SNDCTL_DSP_GETISPACE
, &info
), "get space")))
376 AL_PRINT("%s failed: %s\n", err
, strerror(errno
));
383 if((int)aluChannelsFromFormat(device
->Format
) != numChannels
)
385 AL_PRINT("Could not set %d channels, got %d instead\n", aluChannelsFromFormat(device
->Format
), numChannels
);
391 if(!((ossFormat
== AFMT_U8
&& aluBytesFromFormat(device
->Format
) == 1) ||
392 (ossFormat
== AFMT_S16_NE
&& aluBytesFromFormat(device
->Format
) == 2)))
394 AL_PRINT("Could not set %d-bit input, got format %#x\n", aluBytesFromFormat(device
->Format
)*8, ossFormat
);
400 data
->ring
= CreateRingBuffer(frameSize
, device
->UpdateSize
* device
->NumUpdates
);
403 AL_PRINT("ring buffer create failed\n");
409 data
->data_size
= info
.fragsize
;
410 data
->mix_data
= calloc(1, data
->data_size
);
412 device
->ExtraData
= data
;
413 data
->thread
= StartThread(OSSCaptureProc
, device
);
414 if(data
->thread
== NULL
)
416 device
->ExtraData
= NULL
;
417 free(data
->mix_data
);
422 device
->szDeviceName
= strdup(deviceName
);
426 static void oss_close_capture(ALCdevice
*device
)
428 oss_data
*data
= (oss_data
*)device
->ExtraData
;
430 StopThread(data
->thread
);
434 DestroyRingBuffer(data
->ring
);
436 free(data
->mix_data
);
438 device
->ExtraData
= NULL
;
441 static void oss_start_capture(ALCdevice
*pDevice
)
443 oss_data
*data
= (oss_data
*)pDevice
->ExtraData
;
447 static void oss_stop_capture(ALCdevice
*pDevice
)
449 oss_data
*data
= (oss_data
*)pDevice
->ExtraData
;
453 static void oss_capture_samples(ALCdevice
*pDevice
, ALCvoid
*pBuffer
, ALCuint lSamples
)
455 oss_data
*data
= (oss_data
*)pDevice
->ExtraData
;
456 if(lSamples
<= (ALCuint
)RingBufferSize(data
->ring
))
457 ReadRingBuffer(data
->ring
, pBuffer
, lSamples
);
459 alcSetError(pDevice
, ALC_INVALID_VALUE
);
462 static ALCuint
oss_available_samples(ALCdevice
*pDevice
)
464 oss_data
*data
= (oss_data
*)pDevice
->ExtraData
;
465 return RingBufferSize(data
->ring
);
468 static ALuint64
oss_get_time(ALCdevice
*Device
)
470 return Device
->SamplesPlayed
* 1000000000 / Device
->Frequency
;
474 BackendFuncs oss_funcs
= {
484 oss_available_samples
,
488 void alc_oss_init(BackendFuncs
*func_list
)
490 *func_list
= oss_funcs
;
493 void alc_oss_deinit(void)
497 void alc_oss_probe(int type
)
499 if(type
== DEVICE_PROBE
)
503 if(stat(GetConfigValue("oss", "device", "/dev/dsp"), &buf
) == 0)
505 AppendDeviceList(oss_device
);
507 else if(type
== ALL_DEVICE_PROBE
)
511 if(stat(GetConfigValue("oss", "device", "/dev/dsp"), &buf
) == 0)
513 AppendAllDeviceList(oss_device
);
515 else if(type
== CAPTURE_DEVICE_PROBE
)
519 if(stat(GetConfigValue("oss", "capture", "/dev/dsp"), &buf
) == 0)
521 AppendCaptureDeviceList(oss_device
);