2 * SGI/IRIX audio output driver
4 * copyright (c) 2001 oliver.schoenbrunner@jku.at
6 * This file is part of MPlayer.
8 * MPlayer is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * MPlayer is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License along
19 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
27 #include <dmedia/audio.h>
29 #include "audio_out.h"
30 #include "audio_out_internal.h"
33 #include "libaf/af_format.h"
35 static const ao_info_t info
=
39 "Oliver Schoenbrunner",
46 static ALconfig ao_config
;
47 static ALport ao_port
;
48 static int sample_rate
;
49 static int queue_size
;
50 static int bytes_per_frame
;
53 * \param [in/out] format
56 * \return the closest matching SGI AL sample format
58 * \note width is set to required per-channel sample width
59 * format is updated to match the SGI AL sample format
61 static int fmt2sgial(int *format
, int *width
) {
62 int smpfmt
= AL_SAMPFMT_TWOSCOMP
;
64 /* SGI AL only supports float and signed integers in native
65 * endianness. If this is something else, we must rely on the audio
66 * filter to convert it to a compatible format. */
68 /* 24-bit audio is supported, but only with 32-bit alignment.
69 * mplayer's 24-bit format is packed, unfortunately.
70 * So we must upgrade 24-bit requests to 32 bits. Then we drop the
71 * lowest 8 bits during playback. */
77 *format
= AF_FORMAT_S8
;
80 case AF_FORMAT_U16_LE
:
81 case AF_FORMAT_U16_BE
:
82 case AF_FORMAT_S16_LE
:
83 case AF_FORMAT_S16_BE
:
84 *width
= AL_SAMPLE_16
;
85 *format
= AF_FORMAT_S16_NE
;
88 case AF_FORMAT_U24_LE
:
89 case AF_FORMAT_U24_BE
:
90 case AF_FORMAT_S24_LE
:
91 case AF_FORMAT_S24_BE
:
92 case AF_FORMAT_U32_LE
:
93 case AF_FORMAT_U32_BE
:
94 case AF_FORMAT_S32_LE
:
95 case AF_FORMAT_S32_BE
:
96 *width
= AL_SAMPLE_24
;
97 *format
= AF_FORMAT_S32_NE
;
100 case AF_FORMAT_FLOAT_LE
:
101 case AF_FORMAT_FLOAT_BE
:
103 *format
= AF_FORMAT_FLOAT_NE
;
104 smpfmt
= AL_SAMPFMT_FLOAT
;
108 *width
= AL_SAMPLE_16
;
109 *format
= AF_FORMAT_S16_NE
;
117 // to set/get/query special features/parameters
118 static int control(int cmd
, void *arg
){
120 mp_msg(MSGT_AO
, MSGL_INFO
, MSGTR_AO_SGI_INFO
);
123 case AOCONTROL_QUERY_FORMAT
:
124 /* Do not reject any format: return the closest matching
125 * format if the request is not supported natively. */
129 return CONTROL_UNKNOWN
;
132 // open & setup audio device
133 // return: 1=success 0=fail
134 static int init(int rate
, int channels
, int format
, int flags
) {
136 int smpwidth
, smpfmt
;
137 int rv
= AL_DEFAULT_OUTPUT
;
139 smpfmt
= fmt2sgial(&format
, &smpwidth
);
141 mp_msg(MSGT_AO
, MSGL_INFO
, MSGTR_AO_SGI_InitInfo
, rate
, (channels
> 1) ? "Stereo" : "Mono", af_fmt2str_short(format
));
143 { /* from /usr/share/src/dmedia/audio/setrate.c */
145 double frate
, realrate
;
149 rv
= alGetResourceByName(AL_SYSTEM
, ao_subdevice
, AL_OUTPUT_DEVICE_TYPE
);
151 mp_msg(MSGT_AO
, MSGL_ERR
, MSGTR_AO_SGI_InvalidDevice
);
158 x
[0].param
= AL_RATE
;
159 x
[0].value
.ll
= alDoubleToFixed(rate
);
160 x
[1].param
= AL_MASTER_CLOCK
;
161 x
[1].value
.i
= AL_CRYSTAL_MCLK_TYPE
;
163 if (alSetParams(rv
,x
, 2)<0) {
164 mp_msg(MSGT_AO
, MSGL_WARN
, MSGTR_AO_SGI_CantSetParms_Samplerate
, alGetErrorString(oserror()));
167 if (x
[0].sizeOut
< 0) {
168 mp_msg(MSGT_AO
, MSGL_WARN
, MSGTR_AO_SGI_CantSetAlRate
);
171 if (alGetParams(rv
,x
, 1)<0) {
172 mp_msg(MSGT_AO
, MSGL_WARN
, MSGTR_AO_SGI_CantGetParms
, alGetErrorString(oserror()));
175 realrate
= alFixedToDouble(x
[0].value
.ll
);
176 if (frate
!= realrate
) {
177 mp_msg(MSGT_AO
, MSGL_INFO
, MSGTR_AO_SGI_SampleRateInfo
, realrate
, frate
);
179 sample_rate
= (int)realrate
;
182 bytes_per_frame
= channels
* smpwidth
;
184 ao_data
.samplerate
= sample_rate
;
185 ao_data
.channels
= channels
;
186 ao_data
.format
= format
;
187 ao_data
.bps
= sample_rate
* bytes_per_frame
;
188 ao_data
.buffersize
=131072;
189 ao_data
.outburst
= ao_data
.buffersize
/16;
191 ao_config
= alNewConfig();
194 mp_msg(MSGT_AO
, MSGL_ERR
, MSGTR_AO_SGI_InitConfigError
, alGetErrorString(oserror()));
198 if(alSetChannels(ao_config
, channels
) < 0 ||
199 alSetWidth(ao_config
, smpwidth
) < 0 ||
200 alSetSampFmt(ao_config
, smpfmt
) < 0 ||
201 alSetQueueSize(ao_config
, sample_rate
) < 0 ||
202 alSetDevice(ao_config
, rv
) < 0) {
203 mp_msg(MSGT_AO
, MSGL_ERR
, MSGTR_AO_SGI_InitConfigError
, alGetErrorString(oserror()));
207 ao_port
= alOpenPort("mplayer", "w", ao_config
);
210 mp_msg(MSGT_AO
, MSGL_ERR
, MSGTR_AO_SGI_InitOpenAudioFailed
, alGetErrorString(oserror()));
214 // printf("ao_sgi, init: port %d config %d\n", ao_port, ao_config);
215 queue_size
= alGetQueueSize(ao_config
);
220 // close audio device
221 static void uninit(int immed
) {
223 /* TODO: samplerate should be set back to the value before mplayer was started! */
225 mp_msg(MSGT_AO
, MSGL_INFO
, MSGTR_AO_SGI_Uninit
);
228 alFreeConfig(ao_config
);
234 while(alGetFilled(ao_port
) > 0) sginap(1);
235 alClosePort(ao_port
);
241 // stop playing and empty buffers (for seeking/pause)
242 static void reset(void) {
244 mp_msg(MSGT_AO
, MSGL_INFO
, MSGTR_AO_SGI_Reset
);
246 alDiscardFrames(ao_port
, queue_size
);
249 // stop playing, keep buffers (for pause)
250 static void audio_pause(void) {
252 mp_msg(MSGT_AO
, MSGL_INFO
, MSGTR_AO_SGI_PauseInfo
);
256 // resume playing, after audio_pause()
257 static void audio_resume(void) {
259 mp_msg(MSGT_AO
, MSGL_INFO
, MSGTR_AO_SGI_ResumeInfo
);
263 // return: how many bytes can be played without blocking
264 static int get_space(void) {
266 // printf("ao_sgi, get_space: (ao_outburst %d)\n", ao_data.outburst);
267 // printf("ao_sgi, get_space: alGetFillable [%d] \n", alGetFillable(ao_port));
269 return alGetFillable(ao_port
) * bytes_per_frame
;
274 // plays 'len' bytes of 'data'
275 // it should round it down to outburst*n
276 // return: number of bytes played
277 static int play(void* data
, int len
, int flags
) {
279 /* Always process data in quadword-aligned chunks (64-bits). */
280 const int plen
= len
/ (sizeof(uint64_t) * bytes_per_frame
);
281 const int framecount
= plen
* sizeof(uint64_t);
283 // printf("ao_sgi, play: len %d flags %d (%d %d)\n", len, flags, ao_port, ao_config);
284 // printf("channels %d\n", ao_data.channels);
286 if(ao_data
.format
== AF_FORMAT_S32_NE
) {
287 /* The zen of this is explained in fmt2sgial() */
288 int32_t *smpls
= data
;
289 const int32_t *smple
= smpls
+ (framecount
* ao_data
.channels
);
294 alWriteFrames(ao_port
, data
, framecount
);
296 return framecount
* bytes_per_frame
;
300 // return: delay in seconds between first and last sample in buffer
301 static float get_delay(void){
303 // printf("ao_sgi, get_delay: (ao_buffersize %d)\n", ao_buffersize);
305 // return (float)queue_size/((float)sample_rate);
306 const int outstanding
= alGetFilled(ao_port
);
307 return (float)((outstanding
< 0) ? queue_size
: outstanding
) /
308 ((float)sample_rate
);