Mercurial > mplayer.hg
annotate libao2/ao_alsa5.c @ 20916:87d656aadfcd
add character encoding info
author | kraymer |
---|---|
date | Tue, 14 Nov 2006 21:14:13 +0000 |
parents | 99e20a22d5d0 |
children | 0fdf04b07ecb |
rev | line source |
---|---|
996 | 1 /* |
1046
59fc1f75e486
audio_pause/resume implementacio es kozmetikai valtoztatasok
al3x
parents:
1038
diff
changeset
|
2 ao_alsa5 - ALSA-0.5.x output plugin for MPlayer |
996 | 3 |
10366 | 4 (C) Alex Beregszaszi |
996 | 5 |
6 Thanks to Arpi for helping me ;) | |
7 */ | |
8 | |
9 #include <errno.h> | |
10 #include <sys/asoundlib.h> | |
11 | |
14123 | 12 #include "config.h" |
996 | 13 |
14 #include "audio_out.h" | |
15 #include "audio_out_internal.h" | |
14245 | 16 #include "libaf/af_format.h" |
996 | 17 |
14123 | 18 #include "mp_msg.h" |
19 #include "help_mp.h" | |
5902
2639d60fe5c2
play() fix by Jimen Ching <jching@flex.com>, additional printf->mp_msg conversions (for coming i18n support)
alex
parents:
5790
diff
changeset
|
20 |
996 | 21 static ao_info_t info = |
22 { | |
23 "ALSA-0.5.x audio output", | |
24 "alsa5", | |
10366 | 25 "Alex Beregszaszi", |
996 | 26 "" |
27 }; | |
28 | |
29 LIBAO_EXTERN(alsa5) | |
30 | |
31 static snd_pcm_t *alsa_handler; | |
32 static snd_pcm_format_t alsa_format; | |
33 static int alsa_rate = SND_PCM_RATE_CONTINUOUS; | |
34 | |
35 /* to set/get/query special features/parameters */ | |
9633
12b1790038b0
64bit libao2 fix by Jens Axboe <mplayer-dev@kernel.dk>
alex
parents:
8027
diff
changeset
|
36 static int control(int cmd, void *arg) |
996 | 37 { |
38 return(CONTROL_UNKNOWN); | |
39 } | |
40 | |
41 /* | |
42 open & setup audio device | |
43 return: 1=success 0=fail | |
44 */ | |
45 static int init(int rate_hz, int channels, int format, int flags) | |
46 { | |
47 int err; | |
48 int cards = -1; | |
49 snd_pcm_channel_params_t params; | |
50 snd_pcm_channel_setup_t setup; | |
51 snd_pcm_info_t info; | |
52 snd_pcm_channel_info_t chninfo; | |
53 | |
13383
c1955840883d
mp_msg transition of unmaintained audio output drivers.
ivo
parents:
12145
diff
changeset
|
54 mp_msg(MSGT_AO, MSGL_INFO, MSGTR_AO_ALSA5_InitInfo, rate_hz, |
14264 | 55 channels, af_fmt2str_short(format)); |
996 | 56 |
57 alsa_handler = NULL; | |
58 | |
5902
2639d60fe5c2
play() fix by Jimen Ching <jching@flex.com>, additional printf->mp_msg conversions (for coming i18n support)
alex
parents:
5790
diff
changeset
|
59 mp_msg(MSGT_AO, MSGL_V, "alsa-init: compiled for ALSA-%s (%d)\n", SND_LIB_VERSION_STR, |
2639d60fe5c2
play() fix by Jimen Ching <jching@flex.com>, additional printf->mp_msg conversions (for coming i18n support)
alex
parents:
5790
diff
changeset
|
60 SND_LIB_VERSION); |
996 | 61 |
62 if ((cards = snd_cards()) < 0) | |
63 { | |
13383
c1955840883d
mp_msg transition of unmaintained audio output drivers.
ivo
parents:
12145
diff
changeset
|
64 mp_msg(MSGT_AO, MSGL_ERR, MSGTR_AO_ALSA5_SoundCardNotFound); |
996 | 65 return(0); |
66 } | |
67 | |
3095 | 68 ao_data.format = format; |
7659 | 69 ao_data.channels = channels; |
3095 | 70 ao_data.samplerate = rate_hz; |
7659 | 71 ao_data.bps = ao_data.samplerate*ao_data.channels; |
3095 | 72 ao_data.outburst = OUTBURST; |
73 ao_data.buffersize = 16384; | |
996 | 74 |
75 memset(&alsa_format, 0, sizeof(alsa_format)); | |
76 switch (format) | |
77 { | |
14245 | 78 case AF_FORMAT_S8: |
996 | 79 alsa_format.format = SND_PCM_SFMT_S8; |
80 break; | |
14245 | 81 case AF_FORMAT_U8: |
996 | 82 alsa_format.format = SND_PCM_SFMT_U8; |
83 break; | |
14245 | 84 case AF_FORMAT_U16_LE: |
996 | 85 alsa_format.format = SND_PCM_SFMT_U16_LE; |
86 break; | |
14245 | 87 case AF_FORMAT_U16_BE: |
996 | 88 alsa_format.format = SND_PCM_SFMT_U16_BE; |
89 break; | |
5790 | 90 #ifndef WORDS_BIGENDIAN |
14245 | 91 case AF_FORMAT_AC3: |
5790 | 92 #endif |
14245 | 93 case AF_FORMAT_S16_LE: |
996 | 94 alsa_format.format = SND_PCM_SFMT_S16_LE; |
95 break; | |
5790 | 96 #ifdef WORDS_BIGENDIAN |
14245 | 97 case AF_FORMAT_AC3: |
5790 | 98 #endif |
14245 | 99 case AF_FORMAT_S16_BE: |
996 | 100 alsa_format.format = SND_PCM_SFMT_S16_BE; |
101 break; | |
102 default: | |
103 alsa_format.format = SND_PCM_SFMT_MPEG; | |
104 break; | |
105 } | |
106 | |
107 switch(alsa_format.format) | |
108 { | |
109 case SND_PCM_SFMT_S16_LE: | |
110 case SND_PCM_SFMT_U16_LE: | |
3095 | 111 ao_data.bps *= 2; |
996 | 112 break; |
113 case -1: | |
14264 | 114 mp_msg(MSGT_AO, MSGL_ERR, MSGTR_AO_ALSA5_InvalidFormatReq,af_fmt2str_short(format)); |
996 | 115 return(0); |
1111 | 116 default: |
117 break; | |
996 | 118 } |
119 | |
120 switch(rate_hz) | |
121 { | |
122 case 8000: | |
123 alsa_rate = SND_PCM_RATE_8000; | |
124 break; | |
125 case 11025: | |
126 alsa_rate = SND_PCM_RATE_11025; | |
127 break; | |
128 case 16000: | |
129 alsa_rate = SND_PCM_RATE_16000; | |
130 break; | |
131 case 22050: | |
132 alsa_rate = SND_PCM_RATE_22050; | |
133 break; | |
134 case 32000: | |
135 alsa_rate = SND_PCM_RATE_32000; | |
136 break; | |
137 case 44100: | |
138 alsa_rate = SND_PCM_RATE_44100; | |
139 break; | |
140 case 48000: | |
141 alsa_rate = SND_PCM_RATE_48000; | |
142 break; | |
143 case 88200: | |
144 alsa_rate = SND_PCM_RATE_88200; | |
145 break; | |
146 case 96000: | |
147 alsa_rate = SND_PCM_RATE_96000; | |
148 break; | |
149 case 176400: | |
150 alsa_rate = SND_PCM_RATE_176400; | |
151 break; | |
152 case 192000: | |
153 alsa_rate = SND_PCM_RATE_192000; | |
154 break; | |
155 default: | |
156 alsa_rate = SND_PCM_RATE_CONTINUOUS; | |
157 break; | |
158 } | |
159 | |
3095 | 160 alsa_format.rate = ao_data.samplerate; |
9670
88e4f274df48
10l to arpi with commit r1.12, noticed by Daniel Mario Vega <dv5a@dc.uba.ar>
alex
parents:
9633
diff
changeset
|
161 alsa_format.voices = ao_data.channels; |
996 | 162 alsa_format.interleave = 1; |
163 | |
164 if ((err = snd_pcm_open(&alsa_handler, 0, 0, SND_PCM_OPEN_PLAYBACK)) < 0) | |
165 { | |
13383
c1955840883d
mp_msg transition of unmaintained audio output drivers.
ivo
parents:
12145
diff
changeset
|
166 mp_msg(MSGT_AO, MSGL_ERR, MSGTR_AO_ALSA5_PlayBackError, snd_strerror(err)); |
996 | 167 return(0); |
168 } | |
169 | |
170 if ((err = snd_pcm_info(alsa_handler, &info)) < 0) | |
171 { | |
13383
c1955840883d
mp_msg transition of unmaintained audio output drivers.
ivo
parents:
12145
diff
changeset
|
172 mp_msg(MSGT_AO, MSGL_ERR, MSGTR_AO_ALSA5_PcmInfoError, snd_strerror(err)); |
996 | 173 return(0); |
174 } | |
175 | |
13383
c1955840883d
mp_msg transition of unmaintained audio output drivers.
ivo
parents:
12145
diff
changeset
|
176 mp_msg(MSGT_AO, MSGL_INFO, MSGTR_AO_ALSA5_SoundcardsFound, |
5902
2639d60fe5c2
play() fix by Jimen Ching <jching@flex.com>, additional printf->mp_msg conversions (for coming i18n support)
alex
parents:
5790
diff
changeset
|
177 cards, info.name); |
996 | 178 |
179 if (info.flags & SND_PCM_INFO_PLAYBACK) | |
180 { | |
3700 | 181 memset(&chninfo, 0, sizeof(chninfo)); |
996 | 182 chninfo.channel = SND_PCM_CHANNEL_PLAYBACK; |
183 if ((err = snd_pcm_channel_info(alsa_handler, &chninfo)) < 0) | |
184 { | |
13383
c1955840883d
mp_msg transition of unmaintained audio output drivers.
ivo
parents:
12145
diff
changeset
|
185 mp_msg(MSGT_AO, MSGL_ERR, MSGTR_AO_ALSA5_PcmChanInfoError, snd_strerror(err)); |
996 | 186 return(0); |
187 } | |
3095 | 188 |
3087
08947e067d80
compiling under qnx, hope it works on all qnx release :)
alex
parents:
1111
diff
changeset
|
189 #ifndef __QNX__ |
996 | 190 if (chninfo.buffer_size) |
3095 | 191 ao_data.buffersize = chninfo.buffer_size; |
3087
08947e067d80
compiling under qnx, hope it works on all qnx release :)
alex
parents:
1111
diff
changeset
|
192 #endif |
3095 | 193 |
5902
2639d60fe5c2
play() fix by Jimen Ching <jching@flex.com>, additional printf->mp_msg conversions (for coming i18n support)
alex
parents:
5790
diff
changeset
|
194 mp_msg(MSGT_AO, MSGL_V, "alsa-init: setting preferred buffer size from driver: %d bytes\n", |
2639d60fe5c2
play() fix by Jimen Ching <jching@flex.com>, additional printf->mp_msg conversions (for coming i18n support)
alex
parents:
5790
diff
changeset
|
195 ao_data.buffersize); |
996 | 196 } |
197 | |
198 memset(¶ms, 0, sizeof(params)); | |
199 params.channel = SND_PCM_CHANNEL_PLAYBACK; | |
200 params.mode = SND_PCM_MODE_STREAM; | |
201 params.format = alsa_format; | |
202 params.start_mode = SND_PCM_START_DATA; | |
203 params.stop_mode = SND_PCM_STOP_ROLLOVER; | |
3095 | 204 params.buf.stream.queue_size = ao_data.buffersize; |
996 | 205 params.buf.stream.fill = SND_PCM_FILL_NONE; |
206 | |
207 if ((err = snd_pcm_channel_params(alsa_handler, ¶ms)) < 0) | |
208 { | |
13383
c1955840883d
mp_msg transition of unmaintained audio output drivers.
ivo
parents:
12145
diff
changeset
|
209 mp_msg(MSGT_AO, MSGL_ERR, MSGTR_AO_ALSA5_CantSetParms, snd_strerror(err)); |
996 | 210 return(0); |
211 } | |
212 | |
213 memset(&setup, 0, sizeof(setup)); | |
214 setup.channel = SND_PCM_CHANNEL_PLAYBACK; | |
215 setup.mode = SND_PCM_MODE_STREAM; | |
216 setup.format = alsa_format; | |
3095 | 217 setup.buf.stream.queue_size = ao_data.buffersize; |
218 setup.msbits_per_sample = ao_data.bps; | |
996 | 219 |
220 if ((err = snd_pcm_channel_setup(alsa_handler, &setup)) < 0) | |
221 { | |
13383
c1955840883d
mp_msg transition of unmaintained audio output drivers.
ivo
parents:
12145
diff
changeset
|
222 mp_msg(MSGT_AO, MSGL_ERR, MSGTR_AO_ALSA5_CantSetChan, snd_strerror(err)); |
996 | 223 return(0); |
224 } | |
225 | |
226 if ((err = snd_pcm_channel_prepare(alsa_handler, SND_PCM_CHANNEL_PLAYBACK)) < 0) | |
227 { | |
13383
c1955840883d
mp_msg transition of unmaintained audio output drivers.
ivo
parents:
12145
diff
changeset
|
228 mp_msg(MSGT_AO, MSGL_ERR, MSGTR_AO_ALSA5_ChanPrepareError, snd_strerror(err)); |
996 | 229 return(0); |
230 } | |
231 | |
5902
2639d60fe5c2
play() fix by Jimen Ching <jching@flex.com>, additional printf->mp_msg conversions (for coming i18n support)
alex
parents:
5790
diff
changeset
|
232 mp_msg(MSGT_AO, MSGL_INFO, "AUDIO: %d Hz/%d channels/%d bps/%d bytes buffer/%s\n", |
7659 | 233 ao_data.samplerate, ao_data.channels, ao_data.bps, ao_data.buffersize, |
996 | 234 snd_pcm_get_format_name(alsa_format.format)); |
235 return(1); | |
236 } | |
237 | |
238 /* close audio device */ | |
12145 | 239 static void uninit(int immed) |
996 | 240 { |
1055 | 241 int err; |
242 | |
1046
59fc1f75e486
audio_pause/resume implementacio es kozmetikai valtoztatasok
al3x
parents:
1038
diff
changeset
|
243 if ((err = snd_pcm_playback_drain(alsa_handler)) < 0) |
59fc1f75e486
audio_pause/resume implementacio es kozmetikai valtoztatasok
al3x
parents:
1038
diff
changeset
|
244 { |
13383
c1955840883d
mp_msg transition of unmaintained audio output drivers.
ivo
parents:
12145
diff
changeset
|
245 mp_msg(MSGT_AO, MSGL_ERR, MSGTR_AO_ALSA5_DrainError, snd_strerror(err)); |
1046
59fc1f75e486
audio_pause/resume implementacio es kozmetikai valtoztatasok
al3x
parents:
1038
diff
changeset
|
246 return; |
59fc1f75e486
audio_pause/resume implementacio es kozmetikai valtoztatasok
al3x
parents:
1038
diff
changeset
|
247 } |
59fc1f75e486
audio_pause/resume implementacio es kozmetikai valtoztatasok
al3x
parents:
1038
diff
changeset
|
248 |
59fc1f75e486
audio_pause/resume implementacio es kozmetikai valtoztatasok
al3x
parents:
1038
diff
changeset
|
249 if ((err = snd_pcm_channel_flush(alsa_handler, SND_PCM_CHANNEL_PLAYBACK)) < 0) |
59fc1f75e486
audio_pause/resume implementacio es kozmetikai valtoztatasok
al3x
parents:
1038
diff
changeset
|
250 { |
13383
c1955840883d
mp_msg transition of unmaintained audio output drivers.
ivo
parents:
12145
diff
changeset
|
251 mp_msg(MSGT_AO, MSGL_ERR, MSGTR_AO_ALSA5_FlushError, snd_strerror(err)); |
1046
59fc1f75e486
audio_pause/resume implementacio es kozmetikai valtoztatasok
al3x
parents:
1038
diff
changeset
|
252 return; |
59fc1f75e486
audio_pause/resume implementacio es kozmetikai valtoztatasok
al3x
parents:
1038
diff
changeset
|
253 } |
59fc1f75e486
audio_pause/resume implementacio es kozmetikai valtoztatasok
al3x
parents:
1038
diff
changeset
|
254 |
59fc1f75e486
audio_pause/resume implementacio es kozmetikai valtoztatasok
al3x
parents:
1038
diff
changeset
|
255 if ((err = snd_pcm_close(alsa_handler)) < 0) |
59fc1f75e486
audio_pause/resume implementacio es kozmetikai valtoztatasok
al3x
parents:
1038
diff
changeset
|
256 { |
13383
c1955840883d
mp_msg transition of unmaintained audio output drivers.
ivo
parents:
12145
diff
changeset
|
257 mp_msg(MSGT_AO, MSGL_ERR, MSGTR_AO_ALSA5_PcmCloseError, snd_strerror(err)); |
1046
59fc1f75e486
audio_pause/resume implementacio es kozmetikai valtoztatasok
al3x
parents:
1038
diff
changeset
|
258 return; |
59fc1f75e486
audio_pause/resume implementacio es kozmetikai valtoztatasok
al3x
parents:
1038
diff
changeset
|
259 } |
996 | 260 } |
261 | |
262 /* stop playing and empty buffers (for seeking/pause) */ | |
18915
99e20a22d5d0
modifies function declarations without parameters from ()
reynaldo
parents:
14264
diff
changeset
|
263 static void reset(void) |
996 | 264 { |
265 int err; | |
266 | |
267 if ((err = snd_pcm_playback_drain(alsa_handler)) < 0) | |
268 { | |
13383
c1955840883d
mp_msg transition of unmaintained audio output drivers.
ivo
parents:
12145
diff
changeset
|
269 mp_msg(MSGT_AO, MSGL_ERR, MSGTR_AO_ALSA5_ResetDrainError, snd_strerror(err)); |
996 | 270 return; |
271 } | |
272 | |
273 if ((err = snd_pcm_channel_flush(alsa_handler, SND_PCM_CHANNEL_PLAYBACK)) < 0) | |
274 { | |
13383
c1955840883d
mp_msg transition of unmaintained audio output drivers.
ivo
parents:
12145
diff
changeset
|
275 mp_msg(MSGT_AO, MSGL_ERR, MSGTR_AO_ALSA5_ResetFlushError, snd_strerror(err)); |
996 | 276 return; |
277 } | |
278 | |
279 if ((err = snd_pcm_channel_prepare(alsa_handler, SND_PCM_CHANNEL_PLAYBACK)) < 0) | |
280 { | |
13383
c1955840883d
mp_msg transition of unmaintained audio output drivers.
ivo
parents:
12145
diff
changeset
|
281 mp_msg(MSGT_AO, MSGL_ERR, MSGTR_AO_ALSA5_ResetChanPrepareError, snd_strerror(err)); |
996 | 282 return; |
283 } | |
284 } | |
285 | |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
996
diff
changeset
|
286 /* stop playing, keep buffers (for pause) */ |
18915
99e20a22d5d0
modifies function declarations without parameters from ()
reynaldo
parents:
14264
diff
changeset
|
287 static void audio_pause(void) |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
996
diff
changeset
|
288 { |
1046
59fc1f75e486
audio_pause/resume implementacio es kozmetikai valtoztatasok
al3x
parents:
1038
diff
changeset
|
289 int err; |
59fc1f75e486
audio_pause/resume implementacio es kozmetikai valtoztatasok
al3x
parents:
1038
diff
changeset
|
290 |
59fc1f75e486
audio_pause/resume implementacio es kozmetikai valtoztatasok
al3x
parents:
1038
diff
changeset
|
291 if ((err = snd_pcm_playback_drain(alsa_handler)) < 0) |
59fc1f75e486
audio_pause/resume implementacio es kozmetikai valtoztatasok
al3x
parents:
1038
diff
changeset
|
292 { |
13383
c1955840883d
mp_msg transition of unmaintained audio output drivers.
ivo
parents:
12145
diff
changeset
|
293 mp_msg(MSGT_AO, MSGL_ERR, MSGTR_AO_ALSA5_PauseDrainError, snd_strerror(err)); |
1046
59fc1f75e486
audio_pause/resume implementacio es kozmetikai valtoztatasok
al3x
parents:
1038
diff
changeset
|
294 return; |
59fc1f75e486
audio_pause/resume implementacio es kozmetikai valtoztatasok
al3x
parents:
1038
diff
changeset
|
295 } |
59fc1f75e486
audio_pause/resume implementacio es kozmetikai valtoztatasok
al3x
parents:
1038
diff
changeset
|
296 |
59fc1f75e486
audio_pause/resume implementacio es kozmetikai valtoztatasok
al3x
parents:
1038
diff
changeset
|
297 if ((err = snd_pcm_channel_flush(alsa_handler, SND_PCM_CHANNEL_PLAYBACK)) < 0) |
59fc1f75e486
audio_pause/resume implementacio es kozmetikai valtoztatasok
al3x
parents:
1038
diff
changeset
|
298 { |
13383
c1955840883d
mp_msg transition of unmaintained audio output drivers.
ivo
parents:
12145
diff
changeset
|
299 mp_msg(MSGT_AO, MSGL_ERR, MSGTR_AO_ALSA5_PauseFlushError, snd_strerror(err)); |
1046
59fc1f75e486
audio_pause/resume implementacio es kozmetikai valtoztatasok
al3x
parents:
1038
diff
changeset
|
300 return; |
59fc1f75e486
audio_pause/resume implementacio es kozmetikai valtoztatasok
al3x
parents:
1038
diff
changeset
|
301 } |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
996
diff
changeset
|
302 } |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
996
diff
changeset
|
303 |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
996
diff
changeset
|
304 /* resume playing, after audio_pause() */ |
18915
99e20a22d5d0
modifies function declarations without parameters from ()
reynaldo
parents:
14264
diff
changeset
|
305 static void audio_resume(void) |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
996
diff
changeset
|
306 { |
1055 | 307 int err; |
1046
59fc1f75e486
audio_pause/resume implementacio es kozmetikai valtoztatasok
al3x
parents:
1038
diff
changeset
|
308 if ((err = snd_pcm_channel_prepare(alsa_handler, SND_PCM_CHANNEL_PLAYBACK)) < 0) |
59fc1f75e486
audio_pause/resume implementacio es kozmetikai valtoztatasok
al3x
parents:
1038
diff
changeset
|
309 { |
13383
c1955840883d
mp_msg transition of unmaintained audio output drivers.
ivo
parents:
12145
diff
changeset
|
310 mp_msg(MSGT_AO, MSGL_ERR, MSGTR_AO_ALSA5_ResumePrepareError, snd_strerror(err)); |
1046
59fc1f75e486
audio_pause/resume implementacio es kozmetikai valtoztatasok
al3x
parents:
1038
diff
changeset
|
311 return; |
59fc1f75e486
audio_pause/resume implementacio es kozmetikai valtoztatasok
al3x
parents:
1038
diff
changeset
|
312 } |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
996
diff
changeset
|
313 } |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
996
diff
changeset
|
314 |
996 | 315 /* |
316 plays 'len' bytes of 'data' | |
317 returns: number of bytes played | |
318 */ | |
319 static int play(void* data, int len, int flags) | |
320 { | |
5902
2639d60fe5c2
play() fix by Jimen Ching <jching@flex.com>, additional printf->mp_msg conversions (for coming i18n support)
alex
parents:
5790
diff
changeset
|
321 int got_len; |
2639d60fe5c2
play() fix by Jimen Ching <jching@flex.com>, additional printf->mp_msg conversions (for coming i18n support)
alex
parents:
5790
diff
changeset
|
322 |
2639d60fe5c2
play() fix by Jimen Ching <jching@flex.com>, additional printf->mp_msg conversions (for coming i18n support)
alex
parents:
5790
diff
changeset
|
323 if (!len) |
2639d60fe5c2
play() fix by Jimen Ching <jching@flex.com>, additional printf->mp_msg conversions (for coming i18n support)
alex
parents:
5790
diff
changeset
|
324 return(0); |
2639d60fe5c2
play() fix by Jimen Ching <jching@flex.com>, additional printf->mp_msg conversions (for coming i18n support)
alex
parents:
5790
diff
changeset
|
325 |
2639d60fe5c2
play() fix by Jimen Ching <jching@flex.com>, additional printf->mp_msg conversions (for coming i18n support)
alex
parents:
5790
diff
changeset
|
326 if ((got_len = snd_pcm_write(alsa_handler, data, len)) < 0) |
996 | 327 { |
5902
2639d60fe5c2
play() fix by Jimen Ching <jching@flex.com>, additional printf->mp_msg conversions (for coming i18n support)
alex
parents:
5790
diff
changeset
|
328 if (got_len == -EPIPE) /* underrun? */ |
996 | 329 { |
13383
c1955840883d
mp_msg transition of unmaintained audio output drivers.
ivo
parents:
12145
diff
changeset
|
330 mp_msg(MSGT_AO, MSGL_ERR, MSGTR_AO_ALSA5_Underrun); |
5902
2639d60fe5c2
play() fix by Jimen Ching <jching@flex.com>, additional printf->mp_msg conversions (for coming i18n support)
alex
parents:
5790
diff
changeset
|
331 if ((got_len = snd_pcm_channel_prepare(alsa_handler, SND_PCM_CHANNEL_PLAYBACK)) < 0) |
996 | 332 { |
13383
c1955840883d
mp_msg transition of unmaintained audio output drivers.
ivo
parents:
12145
diff
changeset
|
333 mp_msg(MSGT_AO, MSGL_ERR, MSGTR_AO_ALSA5_PlaybackPrepareError, snd_strerror(got_len)); |
996 | 334 return(0); |
335 } | |
5902
2639d60fe5c2
play() fix by Jimen Ching <jching@flex.com>, additional printf->mp_msg conversions (for coming i18n support)
alex
parents:
5790
diff
changeset
|
336 if ((got_len = snd_pcm_write(alsa_handler, data, len)) < 0) |
996 | 337 { |
13383
c1955840883d
mp_msg transition of unmaintained audio output drivers.
ivo
parents:
12145
diff
changeset
|
338 mp_msg(MSGT_AO, MSGL_ERR, MSGTR_AO_ALSA5_WriteErrorAfterReset, |
5902
2639d60fe5c2
play() fix by Jimen Ching <jching@flex.com>, additional printf->mp_msg conversions (for coming i18n support)
alex
parents:
5790
diff
changeset
|
339 snd_strerror(got_len)); |
996 | 340 return(0); |
341 } | |
5902
2639d60fe5c2
play() fix by Jimen Ching <jching@flex.com>, additional printf->mp_msg conversions (for coming i18n support)
alex
parents:
5790
diff
changeset
|
342 return(got_len); /* 2nd write was ok */ |
996 | 343 } |
13383
c1955840883d
mp_msg transition of unmaintained audio output drivers.
ivo
parents:
12145
diff
changeset
|
344 mp_msg(MSGT_AO, MSGL_ERR, MSGTR_AO_ALSA5_OutPutError, snd_strerror(got_len)); |
5902
2639d60fe5c2
play() fix by Jimen Ching <jching@flex.com>, additional printf->mp_msg conversions (for coming i18n support)
alex
parents:
5790
diff
changeset
|
345 return(0); |
996 | 346 } |
5902
2639d60fe5c2
play() fix by Jimen Ching <jching@flex.com>, additional printf->mp_msg conversions (for coming i18n support)
alex
parents:
5790
diff
changeset
|
347 return(got_len); |
996 | 348 } |
349 | |
350 /* how many byes are free in the buffer */ | |
18915
99e20a22d5d0
modifies function declarations without parameters from ()
reynaldo
parents:
14264
diff
changeset
|
351 static int get_space(void) |
996 | 352 { |
353 snd_pcm_channel_status_t ch_stat; | |
354 | |
355 ch_stat.channel = SND_PCM_CHANNEL_PLAYBACK; | |
356 | |
357 if (snd_pcm_channel_status(alsa_handler, &ch_stat) < 0) | |
11678
972d1998bde9
occured --> occurred typo patch by Clinton Roy <croy@dstc.edu.au>
diego
parents:
10366
diff
changeset
|
358 return(0); /* error occurred */ |
996 | 359 else |
360 return(ch_stat.free); | |
361 } | |
362 | |
3095 | 363 /* delay in seconds between first and last sample in buffer */ |
18915
99e20a22d5d0
modifies function declarations without parameters from ()
reynaldo
parents:
14264
diff
changeset
|
364 static float get_delay(void) |
996 | 365 { |
366 snd_pcm_channel_status_t ch_stat; | |
367 | |
368 ch_stat.channel = SND_PCM_CHANNEL_PLAYBACK; | |
369 | |
370 if (snd_pcm_channel_status(alsa_handler, &ch_stat) < 0) | |
11678
972d1998bde9
occured --> occurred typo patch by Clinton Roy <croy@dstc.edu.au>
diego
parents:
10366
diff
changeset
|
371 return((float)ao_data.buffersize/(float)ao_data.bps); /* error occurred */ |
996 | 372 else |
3095 | 373 return((float)ch_stat.count/(float)ao_data.bps); |
996 | 374 } |