2 * OSS audio output driver
4 * This file is part of MPlayer.
6 * MPlayer is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * MPlayer is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 #include <sys/ioctl.h>
27 #include <sys/types.h>
38 #ifdef HAVE_SYS_SOUNDCARD_H
39 #include <sys/soundcard.h>
41 #ifdef HAVE_SOUNDCARD_H
42 #include <soundcard.h>
46 #include "libaf/af_format.h"
48 #include "audio_out.h"
49 #include "audio_out_internal.h"
51 static const ao_info_t info
=
53 "OSS/ioctl audio output",
59 /* Support for >2 output channels added 2001-11-25 - Steve Davies <steve@daviesfam.org> */
63 static int format2oss(int format
)
67 case AF_FORMAT_U8
: return AFMT_U8
;
68 case AF_FORMAT_S8
: return AFMT_S8
;
69 case AF_FORMAT_U16_LE
: return AFMT_U16_LE
;
70 case AF_FORMAT_U16_BE
: return AFMT_U16_BE
;
71 case AF_FORMAT_S16_LE
: return AFMT_S16_LE
;
72 case AF_FORMAT_S16_BE
: return AFMT_S16_BE
;
73 #ifdef AFMT_S24_PACKED
74 case AF_FORMAT_S24_LE
: return AFMT_S24_PACKED
;
77 case AF_FORMAT_U32_LE
: return AFMT_U32_LE
;
80 case AF_FORMAT_U32_BE
: return AFMT_U32_BE
;
83 case AF_FORMAT_S32_LE
: return AFMT_S32_LE
;
86 case AF_FORMAT_S32_BE
: return AFMT_S32_BE
;
89 case AF_FORMAT_FLOAT_NE
: return AFMT_FLOAT
;
92 case AF_FORMAT_MU_LAW
: return AFMT_MU_LAW
;
93 case AF_FORMAT_A_LAW
: return AFMT_A_LAW
;
94 case AF_FORMAT_IMA_ADPCM
: return AFMT_IMA_ADPCM
;
96 case AF_FORMAT_MPEG2
: return AFMT_MPEG
;
99 case AF_FORMAT_AC3
: return AFMT_AC3
;
102 mp_msg(MSGT_AO
, MSGL_V
, "OSS: Unknown/not supported internal format: %s\n", af_fmt2str_short(format
));
106 static int oss2format(int format
)
110 case AFMT_U8
: return AF_FORMAT_U8
;
111 case AFMT_S8
: return AF_FORMAT_S8
;
112 case AFMT_U16_LE
: return AF_FORMAT_U16_LE
;
113 case AFMT_U16_BE
: return AF_FORMAT_U16_BE
;
114 case AFMT_S16_LE
: return AF_FORMAT_S16_LE
;
115 case AFMT_S16_BE
: return AF_FORMAT_S16_BE
;
116 #ifdef AFMT_S24_PACKED
117 case AFMT_S24_PACKED
: return AF_FORMAT_S24_LE
;
120 case AFMT_U32_LE
: return AF_FORMAT_U32_LE
;
123 case AFMT_U32_BE
: return AF_FORMAT_U32_BE
;
126 case AFMT_S32_LE
: return AF_FORMAT_S32_LE
;
129 case AFMT_S32_BE
: return AF_FORMAT_S32_BE
;
132 case AFMT_FLOAT
: return AF_FORMAT_FLOAT_NE
;
135 case AFMT_MU_LAW
: return AF_FORMAT_MU_LAW
;
136 case AFMT_A_LAW
: return AF_FORMAT_A_LAW
;
137 case AFMT_IMA_ADPCM
: return AF_FORMAT_IMA_ADPCM
;
139 case AFMT_MPEG
: return AF_FORMAT_MPEG2
;
142 case AFMT_AC3
: return AF_FORMAT_AC3
;
145 mp_tmsg(MSGT_GLOBAL
,MSGL_ERR
,"[AO OSS] Unknown/Unsupported OSS format: %x.\n", format
);
149 static char *dsp
=PATH_DEV_DSP
;
150 static audio_buf_info zz
;
151 static int audio_fd
=-1;
152 static int prepause_space
;
154 static const char *oss_mixer_device
= PATH_DEV_MIXER
;
155 static int oss_mixer_channel
= SOUND_MIXER_PCM
;
157 #ifdef SNDCTL_DSP_GETPLAYVOL
158 static int volume_oss4(ao_control_vol_t
*vol
, int cmd
) {
162 return CONTROL_ERROR
;
164 if (cmd
== AOCONTROL_GET_VOLUME
) {
165 if (ioctl(audio_fd
, SNDCTL_DSP_GETPLAYVOL
, &v
) == -1)
166 return CONTROL_ERROR
;
167 vol
->right
= (v
& 0xff00) >> 8;
168 vol
->left
= v
& 0x00ff;
170 } else if (cmd
== AOCONTROL_SET_VOLUME
) {
171 v
= ((int) vol
->right
<< 8) | (int) vol
->left
;
172 if (ioctl(audio_fd
, SNDCTL_DSP_SETPLAYVOL
, &v
) == -1)
173 return CONTROL_ERROR
;
176 return CONTROL_UNKNOWN
;
180 // to set/get/query special features/parameters
181 static int control(int cmd
,void *arg
){
183 case AOCONTROL_SET_DEVICE
:
186 case AOCONTROL_GET_DEVICE
:
189 #ifdef SNDCTL_DSP_GETFMTS
190 case AOCONTROL_QUERY_FORMAT
:
193 if (!ioctl(audio_fd
, SNDCTL_DSP_GETFMTS
, &format
))
194 if ((unsigned int)format
& (unsigned long)arg
)
196 return CONTROL_FALSE
;
199 case AOCONTROL_GET_VOLUME
:
200 case AOCONTROL_SET_VOLUME
:
202 ao_control_vol_t
*vol
= (ao_control_vol_t
*)arg
;
205 #ifdef SNDCTL_DSP_GETPLAYVOL
207 if (volume_oss4(vol
, cmd
) == CONTROL_OK
)
211 if(ao_data
.format
== AF_FORMAT_AC3
)
214 if ((fd
= open(oss_mixer_device
, O_RDONLY
)) > 0)
216 ioctl(fd
, SOUND_MIXER_READ_DEVMASK
, &devs
);
217 if (devs
& (1 << oss_mixer_channel
))
219 if (cmd
== AOCONTROL_GET_VOLUME
)
221 ioctl(fd
, MIXER_READ(oss_mixer_channel
), &v
);
222 vol
->right
= (v
& 0xFF00) >> 8;
223 vol
->left
= v
& 0x00FF;
227 v
= ((int)vol
->right
<< 8) | (int)vol
->left
;
228 ioctl(fd
, MIXER_WRITE(oss_mixer_channel
), &v
);
234 return CONTROL_ERROR
;
240 return CONTROL_ERROR
;
242 return CONTROL_UNKNOWN
;
245 // open & setup audio device
246 // return: 1=success 0=fail
247 static int init(int rate
,int channels
,int format
,int flags
){
248 char *mixer_channels
[SOUND_MIXER_NRDEVICES
] = SOUND_DEVICE_NAMES
;
250 char *mdev
= mixer_device
, *mchan
= mixer_channel
;
252 mp_msg(MSGT_AO
,MSGL_V
,"ao2: %d Hz %d chans %s\n",rate
,channels
,
253 af_fmt2str_short(format
));
257 m
= strchr(ao_subdevice
,':');
271 oss_mixer_device
=mdev
;
273 oss_mixer_device
=PATH_DEV_MIXER
;
278 if ((fd
= open(oss_mixer_device
, O_RDONLY
)) == -1){
279 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO OSS] audio_setup: Can't open mixer device %s: %s\n",
280 oss_mixer_device
, strerror(errno
));
282 ioctl(fd
, SOUND_MIXER_READ_DEVMASK
, &devs
);
285 for (i
=0; i
<SOUND_MIXER_NRDEVICES
; i
++){
286 if(!strcasecmp(mixer_channels
[i
], mchan
)){
287 if(!(devs
& (1 << i
))){
288 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO OSS] audio_setup: Audio card mixer does not have channel '%s', using default.\n",mchan
);
289 i
= SOUND_MIXER_NRDEVICES
+1;
292 oss_mixer_channel
= i
;
296 if(i
==SOUND_MIXER_NRDEVICES
){
297 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO OSS] audio_setup: Audio card mixer does not have channel '%s', using default.\n",mchan
);
301 oss_mixer_channel
= SOUND_MIXER_PCM
;
303 mp_msg(MSGT_AO
,MSGL_V
,"audio_setup: using '%s' dsp device\n", dsp
);
304 mp_msg(MSGT_AO
,MSGL_V
,"audio_setup: using '%s' mixer device\n", oss_mixer_device
);
305 mp_msg(MSGT_AO
,MSGL_V
,"audio_setup: using '%s' mixer device\n", mixer_channels
[oss_mixer_channel
]);
308 audio_fd
=open(dsp
, O_WRONLY
| O_NONBLOCK
);
310 audio_fd
=open(dsp
, O_WRONLY
);
313 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO OSS] audio_setup: Can't open audio device %s: %s\n", dsp
, strerror(errno
));
318 /* Remove the non-blocking flag */
319 if(fcntl(audio_fd
, F_SETFL
, 0) < 0) {
320 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO OSS] audio_setup: Can't make file descriptor blocking: %s\n", strerror(errno
));
325 #if defined(FD_CLOEXEC) && defined(F_SETFD)
326 fcntl(audio_fd
, F_SETFD
, FD_CLOEXEC
);
329 if(format
== AF_FORMAT_AC3
) {
330 ao_data
.samplerate
=rate
;
331 ioctl (audio_fd
, SNDCTL_DSP_SPEED
, &ao_data
.samplerate
);
335 ao_data
.format
=format
;
336 oss_format
=format2oss(format
);
337 if (oss_format
== -1) {
339 oss_format
=AFMT_S16_BE
;
341 oss_format
=AFMT_S16_LE
;
343 format
=AF_FORMAT_S16_NE
;
345 if( ioctl(audio_fd
, SNDCTL_DSP_SETFMT
, &oss_format
)<0 ||
346 oss_format
!= format2oss(format
)) {
347 mp_tmsg(MSGT_AO
,MSGL_WARN
, "[AO OSS] Can't set audio device %s to %s output, trying %s...\n", dsp
,
348 af_fmt2str_short(format
), af_fmt2str_short(AF_FORMAT_S16_NE
) );
349 format
=AF_FORMAT_S16_NE
;
353 if(oss_format
!=format2oss(format
))
354 mp_msg(MSGT_AO
,MSGL_WARN
,"WARNING! Your soundcard does NOT support %s sample format! Broken audio or bad playback speed are possible! Try with '-af format'\n",audio_out_format_name(format
));
357 ao_data
.format
= oss2format(oss_format
);
358 if (ao_data
.format
== -1) return 0;
360 mp_msg(MSGT_AO
,MSGL_V
,"audio_setup: sample format: %s (requested: %s)\n",
361 af_fmt2str_short(ao_data
.format
), af_fmt2str_short(format
));
363 ao_data
.channels
= channels
;
364 if(format
!= AF_FORMAT_AC3
) {
365 // We only use SNDCTL_DSP_CHANNELS for >2 channels, in case some drivers don't have it
366 if (ao_data
.channels
> 2) {
367 if ( ioctl(audio_fd
, SNDCTL_DSP_CHANNELS
, &ao_data
.channels
) == -1 ||
368 ao_data
.channels
!= channels
) {
369 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO OSS] audio_setup: Failed to set audio device to %d channels.\n", channels
);
374 int c
= ao_data
.channels
-1;
375 if (ioctl (audio_fd
, SNDCTL_DSP_STEREO
, &c
) == -1) {
376 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO OSS] audio_setup: Failed to set audio device to %d channels.\n", ao_data
.channels
);
379 ao_data
.channels
=c
+1;
381 mp_msg(MSGT_AO
,MSGL_V
,"audio_setup: using %d channels (requested: %d)\n", ao_data
.channels
, channels
);
383 ao_data
.samplerate
=rate
;
384 ioctl (audio_fd
, SNDCTL_DSP_SPEED
, &ao_data
.samplerate
);
385 mp_msg(MSGT_AO
,MSGL_V
,"audio_setup: using %d Hz samplerate (requested: %d)\n",ao_data
.samplerate
,rate
);
388 if(ioctl(audio_fd
, SNDCTL_DSP_GETOSPACE
, &zz
)==-1){
390 mp_tmsg(MSGT_AO
,MSGL_WARN
,"[AO OSS] audio_setup: driver doesn't support SNDCTL_DSP_GETOSPACE :-(\n");
391 if(ioctl(audio_fd
, SNDCTL_DSP_GETBLKSIZE
, &r
)==-1){
392 mp_msg(MSGT_AO
,MSGL_V
,"audio_setup: %d bytes/frag (config.h)\n",ao_data
.outburst
);
395 mp_msg(MSGT_AO
,MSGL_V
,"audio_setup: %d bytes/frag (GETBLKSIZE)\n",ao_data
.outburst
);
398 mp_msg(MSGT_AO
,MSGL_V
,"audio_setup: frags: %3d/%d (%d bytes/frag) free: %6d\n",
399 zz
.fragments
, zz
.fragstotal
, zz
.fragsize
, zz
.bytes
);
400 if(ao_data
.buffersize
==-1) ao_data
.buffersize
=zz
.bytes
;
401 ao_data
.outburst
=zz
.fragsize
;
404 if(ao_data
.buffersize
==-1){
405 // Measuring buffer size:
407 ao_data
.buffersize
=0;
408 #ifdef HAVE_AUDIO_SELECT
409 data
=malloc(ao_data
.outburst
); memset(data
,0,ao_data
.outburst
);
410 while(ao_data
.buffersize
<0x40000){
413 FD_ZERO(&rfds
); FD_SET(audio_fd
,&rfds
);
414 tv
.tv_sec
=0; tv
.tv_usec
= 0;
415 if(!select(audio_fd
+1, NULL
, &rfds
, NULL
, &tv
)) break;
416 write(audio_fd
,data
,ao_data
.outburst
);
417 ao_data
.buffersize
+=ao_data
.outburst
;
420 if(ao_data
.buffersize
==0){
421 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO OSS]\n *** Your audio driver DOES NOT support select() ***\n Recompile MPlayer with #undef HAVE_AUDIO_SELECT in config.h !\n\n");
427 ao_data
.bps
=ao_data
.channels
;
428 switch (ao_data
.format
& AF_FORMAT_BITS_MASK
) {
431 case AF_FORMAT_16BIT
:
434 case AF_FORMAT_24BIT
:
437 case AF_FORMAT_32BIT
:
442 ao_data
.outburst
-=ao_data
.outburst
% ao_data
.bps
; // round down
443 ao_data
.bps
*=ao_data
.samplerate
;
448 // close audio device
449 static void uninit(int immed
){
450 if(audio_fd
== -1) return;
451 #ifdef SNDCTL_DSP_SYNC
452 // to get the buffer played
454 ioctl(audio_fd
, SNDCTL_DSP_SYNC
, NULL
);
456 #ifdef SNDCTL_DSP_RESET
458 ioctl(audio_fd
, SNDCTL_DSP_RESET
, NULL
);
464 // stop playing and empty buffers (for seeking/pause)
465 static void reset(void){
468 audio_fd
=open(dsp
, O_WRONLY
);
470 mp_tmsg(MSGT_AO
,MSGL_ERR
,"[AO OSS]\nFatal error: *** CANNOT RE-OPEN / RESET AUDIO DEVICE *** %s\n", strerror(errno
));
474 #if defined(FD_CLOEXEC) && defined(F_SETFD)
475 fcntl(audio_fd
, F_SETFD
, FD_CLOEXEC
);
478 oss_format
= format2oss(ao_data
.format
);
479 if(ao_data
.format
== AF_FORMAT_AC3
)
480 ioctl (audio_fd
, SNDCTL_DSP_SPEED
, &ao_data
.samplerate
);
481 ioctl (audio_fd
, SNDCTL_DSP_SETFMT
, &oss_format
);
482 if(ao_data
.format
!= AF_FORMAT_AC3
) {
483 if (ao_data
.channels
> 2)
484 ioctl (audio_fd
, SNDCTL_DSP_CHANNELS
, &ao_data
.channels
);
486 int c
= ao_data
.channels
-1;
487 ioctl (audio_fd
, SNDCTL_DSP_STEREO
, &c
);
489 ioctl (audio_fd
, SNDCTL_DSP_SPEED
, &ao_data
.samplerate
);
493 // stop playing, keep buffers (for pause)
494 static void audio_pause(void)
496 prepause_space
= get_space();
500 // resume playing, after audio_pause()
501 static void audio_resume(void)
505 fillcnt
= get_space() - prepause_space
;
506 if (fillcnt
> 0 && !(ao_data
.format
& AF_FORMAT_SPECIAL_MASK
)) {
507 void *silence
= calloc(fillcnt
, 1);
508 play(silence
, fillcnt
, 0);
514 // return: how many bytes can be played without blocking
515 static int get_space(void){
516 int playsize
=ao_data
.outburst
;
518 #ifdef SNDCTL_DSP_GETOSPACE
519 if(ioctl(audio_fd
, SNDCTL_DSP_GETOSPACE
, &zz
)!=-1){
520 // calculate exact buffer space:
521 playsize
= zz
.fragments
*zz
.fragsize
;
527 #ifdef HAVE_AUDIO_SELECT
531 FD_SET(audio_fd
, &rfds
);
534 if(!select(audio_fd
+1, NULL
, &rfds
, NULL
, &tv
)) return 0; // not block!
538 return ao_data
.outburst
;
541 // plays 'len' bytes of 'data'
542 // it should round it down to outburst*n
543 // return: number of bytes played
544 static int play(void* data
,int len
,int flags
){
547 if(len
>ao_data
.outburst
|| !(flags
& AOPLAY_FINAL_CHUNK
)) {
548 len
/=ao_data
.outburst
;
549 len
*=ao_data
.outburst
;
551 len
=write(audio_fd
,data
,len
);
555 static int audio_delay_method
=2;
557 // return: delay in seconds between first and last sample in buffer
558 static float get_delay(void){
559 /* Calculate how many bytes/second is sent out */
560 if(audio_delay_method
==2){
561 #ifdef SNDCTL_DSP_GETODELAY
563 if(ioctl(audio_fd
, SNDCTL_DSP_GETODELAY
, &r
)!=-1)
564 return ((float)r
)/(float)ao_data
.bps
;
566 audio_delay_method
=1; // fallback if not supported
568 if(audio_delay_method
==1){
569 // SNDCTL_DSP_GETOSPACE
570 if(ioctl(audio_fd
, SNDCTL_DSP_GETOSPACE
, &zz
)!=-1)
571 return ((float)(ao_data
.buffersize
-zz
.bytes
))/(float)ao_data
.bps
;
572 audio_delay_method
=0; // fallback if not supported
574 return ((float)ao_data
.buffersize
)/(float)ao_data
.bps
;