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 char *oss_device
;
51 static char *oss_device_capture
;
66 static int log2i(ALCuint x
)
78 static ALuint
OSSProc(ALvoid
*ptr
)
80 ALCdevice
*pDevice
= (ALCdevice
*)ptr
;
81 oss_data
*data
= (oss_data
*)pDevice
->ExtraData
;
86 ALint len
= data
->data_size
;
87 ALubyte
*WritePtr
= data
->mix_data
;
90 aluMixData(pDevice
->Context
, WritePtr
, len
, pDevice
->Format
);
93 while(len
> 0 && !data
->killNow
)
95 wrote
= write(data
->fd
, WritePtr
, len
);
98 if(errno
!= EAGAIN
&& errno
!= EWOULDBLOCK
)
100 AL_PRINT("write failed: %s\n", strerror(errno
));
116 static ALuint
OSSCaptureProc(ALvoid
*ptr
)
118 ALCdevice
*pDevice
= (ALCdevice
*)ptr
;
119 oss_data
*data
= (oss_data
*)pDevice
->ExtraData
;
123 frameSize
= aluBytesFromFormat(pDevice
->Format
);
124 frameSize
*= aluChannelsFromFormat(pDevice
->Format
);
126 while(!data
->killNow
)
128 amt
= read(data
->fd
, data
->mix_data
, data
->data_size
);
131 AL_PRINT("read failed: %s\n", strerror(errno
));
140 WriteRingBuffer(data
->ring
, data
->mix_data
, amt
/frameSize
);
146 static ALCboolean
oss_open_playback(ALCdevice
*device
, const ALCchar
*deviceName
)
151 strncpy(driver
, GetConfigValue("oss", "device", "/dev/dsp"), sizeof(driver
)-1);
152 driver
[sizeof(driver
)-1] = 0;
155 if(strcmp(deviceName
, oss_device
))
157 device
->szDeviceName
= oss_device
;
160 device
->szDeviceName
= oss_device
;
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
->ExtraData
= data
;
177 static void oss_close_playback(ALCdevice
*device
)
179 oss_data
*data
= (oss_data
*)device
->ExtraData
;
183 device
->ExtraData
= NULL
;
186 static ALCboolean
oss_start_context(ALCdevice
*device
, ALCcontext
*context
)
188 oss_data
*data
= (oss_data
*)device
->ExtraData
;
189 int numFragmentsLogSize
;
190 int log2FragmentSize
;
191 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
;
222 AL_PRINT("Unknown format?! %x\n", device
->Format
);
225 periods
= GetConfigValueInt("oss", "periods", 4);
226 if((int)periods
<= 0)
228 numChannels
= aluChannelsFromFormat(device
->Format
);
229 frameSize
= numChannels
* aluBytesFromFormat(device
->Format
);
231 ossSpeed
= device
->Frequency
;
232 log2FragmentSize
= log2i(device
->BufferSize
* frameSize
/ periods
);
234 /* according to the OSS spec, 16 bytes are the minimum */
235 if (log2FragmentSize
< 4)
236 log2FragmentSize
= 4;
237 numFragmentsLogSize
= (periods
<< 16) | log2FragmentSize
;
239 #define ok(func, str) (i=(func),((i<0)?(err=(str)),0:1))
240 if (!(ok(ioctl(data
->fd
, SNDCTL_DSP_SETFRAGMENT
, &numFragmentsLogSize
), "set fragment") &&
241 ok(ioctl(data
->fd
, SNDCTL_DSP_SETFMT
, &ossFormat
), "set format") &&
242 ok(ioctl(data
->fd
, SNDCTL_DSP_CHANNELS
, &numChannels
), "set channels") &&
243 ok(ioctl(data
->fd
, SNDCTL_DSP_SPEED
, &ossSpeed
), "set speed") &&
244 ok(ioctl(data
->fd
, SNDCTL_DSP_GETOSPACE
, &info
), "get space")))
246 AL_PRINT("%s failed: %s\n", err
, strerror(errno
));
251 if((int)aluChannelsFromFormat(device
->Format
) != numChannels
)
253 AL_PRINT("Could not set %d channels, got %d instead\n", aluChannelsFromFormat(device
->Format
), numChannels
);
257 if(!((ossFormat
== AFMT_U8
&& aluBytesFromFormat(device
->Format
) == 1) ||
258 (ossFormat
== AFMT_S16_NE
&& aluBytesFromFormat(device
->Format
) == 2)))
260 AL_PRINT("Could not set %d-bit output, got format %#x\n", aluBytesFromFormat(device
->Format
)*8, ossFormat
);
264 device
->Frequency
= ossSpeed
;
265 device
->UpdateSize
= info
.fragsize
/ frameSize
;
267 data
->data_size
= device
->UpdateSize
* frameSize
;
268 data
->mix_data
= calloc(1, data
->data_size
);
270 data
->thread
= StartThread(OSSProc
, device
);
271 if(data
->thread
== NULL
)
273 free(data
->mix_data
);
274 data
->mix_data
= NULL
;
281 static void oss_stop_context(ALCdevice
*device
, ALCcontext
*context
)
283 oss_data
*data
= (oss_data
*)device
->ExtraData
;
290 StopThread(data
->thread
);
293 free(data
->mix_data
);
294 data
->mix_data
= NULL
;
298 static ALCboolean
oss_open_capture(ALCdevice
*device
, const ALCchar
*deviceName
)
300 int numFragmentsLogSize
;
301 int log2FragmentSize
;
302 unsigned int periods
;
313 strncpy(driver
, GetConfigValue("oss", "capture", "/dev/dsp"), sizeof(driver
)-1);
314 driver
[sizeof(driver
)-1] = 0;
317 if(strcmp(deviceName
, oss_device_capture
))
319 device
->szDeviceName
= oss_device_capture
;
322 device
->szDeviceName
= oss_device_capture
;
324 data
= (oss_data
*)calloc(1, sizeof(oss_data
));
327 data
->fd
= open(driver
, O_RDONLY
);
331 AL_PRINT("Could not open %s: %s\n", driver
, strerror(errno
));
335 switch(aluBytesFromFormat(device
->Format
))
341 ossFormat
= AFMT_S16_NE
;
345 AL_PRINT("Unknown format?! %x\n", device
->Format
);
349 numChannels
= aluChannelsFromFormat(device
->Format
);
350 frameSize
= numChannels
* aluBytesFromFormat(device
->Format
);
351 ossSpeed
= device
->Frequency
;
352 log2FragmentSize
= log2i(device
->BufferSize
* frameSize
/ periods
);
354 /* according to the OSS spec, 16 bytes are the minimum */
355 if (log2FragmentSize
< 4)
356 log2FragmentSize
= 4;
357 numFragmentsLogSize
= (periods
<< 16) | log2FragmentSize
;
359 #define ok(func, str) (i=(func),((i<0)?(err=(str)),0:1))
360 if (!(ok(ioctl(data
->fd
, SNDCTL_DSP_SETFRAGMENT
, &numFragmentsLogSize
), "set fragment") &&
361 ok(ioctl(data
->fd
, SNDCTL_DSP_SETFMT
, &ossFormat
), "set format") &&
362 ok(ioctl(data
->fd
, SNDCTL_DSP_CHANNELS
, &numChannels
), "set channels") &&
363 ok(ioctl(data
->fd
, SNDCTL_DSP_SPEED
, &ossSpeed
), "set speed") &&
364 ok(ioctl(data
->fd
, SNDCTL_DSP_GETISPACE
, &info
), "get space")))
366 AL_PRINT("%s failed: %s\n", err
, strerror(errno
));
373 if((int)aluChannelsFromFormat(device
->Format
) != numChannels
)
375 AL_PRINT("Could not set %d channels, got %d instead\n", aluChannelsFromFormat(device
->Format
), numChannels
);
381 if(!((ossFormat
== AFMT_U8
&& aluBytesFromFormat(device
->Format
) == 1) ||
382 (ossFormat
== AFMT_S16_NE
&& aluBytesFromFormat(device
->Format
) == 2)))
384 AL_PRINT("Could not set %d-bit input, got format %#x\n", aluBytesFromFormat(device
->Format
)*8, ossFormat
);
390 data
->ring
= CreateRingBuffer(frameSize
, device
->BufferSize
);
393 AL_PRINT("ring buffer create failed\n");
399 data
->data_size
= info
.fragsize
;
400 data
->mix_data
= calloc(1, data
->data_size
);
402 device
->ExtraData
= data
;
403 data
->thread
= StartThread(OSSCaptureProc
, device
);
404 if(data
->thread
== NULL
)
406 device
->ExtraData
= NULL
;
407 free(data
->mix_data
);
415 static void oss_close_capture(ALCdevice
*device
)
417 oss_data
*data
= (oss_data
*)device
->ExtraData
;
419 StopThread(data
->thread
);
423 DestroyRingBuffer(data
->ring
);
425 free(data
->mix_data
);
427 device
->ExtraData
= NULL
;
430 static void oss_start_capture(ALCdevice
*pDevice
)
432 oss_data
*data
= (oss_data
*)pDevice
->ExtraData
;
436 static void oss_stop_capture(ALCdevice
*pDevice
)
438 oss_data
*data
= (oss_data
*)pDevice
->ExtraData
;
442 static void oss_capture_samples(ALCdevice
*pDevice
, ALCvoid
*pBuffer
, ALCuint lSamples
)
444 oss_data
*data
= (oss_data
*)pDevice
->ExtraData
;
445 if(lSamples
<= (ALCuint
)RingBufferSize(data
->ring
))
446 ReadRingBuffer(data
->ring
, pBuffer
, lSamples
);
448 SetALCError(ALC_INVALID_VALUE
);
451 static ALCuint
oss_available_samples(ALCdevice
*pDevice
)
453 oss_data
*data
= (oss_data
*)pDevice
->ExtraData
;
454 return RingBufferSize(data
->ring
);
458 BackendFuncs oss_funcs
= {
468 oss_available_samples
471 void alc_oss_init(BackendFuncs
*func_list
)
473 *func_list
= oss_funcs
;
475 oss_device
= AppendDeviceList("OSS Software");
476 AppendAllDeviceList(oss_device
);
478 oss_device_capture
= AppendCaptureDeviceList("OSS Capture");