annotate libao2/ao_alsa.c @ 30398:acb92f578a08

Do not needlessly use (file-)global variables. Since they also were initialized to a value and non-constant (changed by ALSA) this might actually have caused bugs.
author reimar
date Wed, 27 Jan 2010 18:10:07 +0000
parents 02b9c1a452e1
children d280f1bbfe93
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
1 /*
28343
e45b08f2f5d3 Add standard license headers.
diego
parents: 28118
diff changeset
2 * ALSA 0.9.x-1.x audio output driver
e45b08f2f5d3 Add standard license headers.
diego
parents: 28118
diff changeset
3 *
e45b08f2f5d3 Add standard license headers.
diego
parents: 28118
diff changeset
4 * Copyright (C) 2004 Alex Beregszaszi
e45b08f2f5d3 Add standard license headers.
diego
parents: 28118
diff changeset
5 *
e45b08f2f5d3 Add standard license headers.
diego
parents: 28118
diff changeset
6 * modified for real ALSA 0.9.0 support by Zsolt Barat <joy@streamminister.de>
e45b08f2f5d3 Add standard license headers.
diego
parents: 28118
diff changeset
7 * additional AC-3 passthrough support by Andy Lo A Foe <andy@alsaplayer.org>
e45b08f2f5d3 Add standard license headers.
diego
parents: 28118
diff changeset
8 * 08/22/2002 iec958-init rewritten and merged with common init, zsolt
e45b08f2f5d3 Add standard license headers.
diego
parents: 28118
diff changeset
9 * 04/13/2004 merged with ao_alsa1.x, fixes provided by Jindrich Makovicka
e45b08f2f5d3 Add standard license headers.
diego
parents: 28118
diff changeset
10 * 04/25/2004 printfs converted to mp_msg, Zsolt.
e45b08f2f5d3 Add standard license headers.
diego
parents: 28118
diff changeset
11 *
e45b08f2f5d3 Add standard license headers.
diego
parents: 28118
diff changeset
12 * This file is part of MPlayer.
e45b08f2f5d3 Add standard license headers.
diego
parents: 28118
diff changeset
13 *
e45b08f2f5d3 Add standard license headers.
diego
parents: 28118
diff changeset
14 * MPlayer is free software; you can redistribute it and/or modify
e45b08f2f5d3 Add standard license headers.
diego
parents: 28118
diff changeset
15 * it under the terms of the GNU General Public License as published by
e45b08f2f5d3 Add standard license headers.
diego
parents: 28118
diff changeset
16 * the Free Software Foundation; either version 2 of the License, or
e45b08f2f5d3 Add standard license headers.
diego
parents: 28118
diff changeset
17 * (at your option) any later version.
e45b08f2f5d3 Add standard license headers.
diego
parents: 28118
diff changeset
18 *
e45b08f2f5d3 Add standard license headers.
diego
parents: 28118
diff changeset
19 * MPlayer is distributed in the hope that it will be useful,
e45b08f2f5d3 Add standard license headers.
diego
parents: 28118
diff changeset
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
e45b08f2f5d3 Add standard license headers.
diego
parents: 28118
diff changeset
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
e45b08f2f5d3 Add standard license headers.
diego
parents: 28118
diff changeset
22 * GNU General Public License for more details.
e45b08f2f5d3 Add standard license headers.
diego
parents: 28118
diff changeset
23 *
e45b08f2f5d3 Add standard license headers.
diego
parents: 28118
diff changeset
24 * You should have received a copy of the GNU General Public License along
e45b08f2f5d3 Add standard license headers.
diego
parents: 28118
diff changeset
25 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
e45b08f2f5d3 Add standard license headers.
diego
parents: 28118
diff changeset
26 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
e45b08f2f5d3 Add standard license headers.
diego
parents: 28118
diff changeset
27 */
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
28
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
29 #include <errno.h>
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
30 #include <sys/time.h>
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
31 #include <stdlib.h>
17691
b73103a82416 Output error messages from the ALSA library through mp_msg() instead of
cladisch
parents: 17690
diff changeset
32 #include <stdarg.h>
22166
68dceb30bbcf When setting the non-audio bit for hwac3 output, just try to set the
cladisch
parents: 20764
diff changeset
33 #include <ctype.h>
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
34 #include <math.h>
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
35 #include <string.h>
27281
e47193172586 Our ALSA code needs alloca, so check for it in configure and include alloca.h
reimar
parents: 26757
diff changeset
36 #include <alloca.h>
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
37
14123
a92101a7eb49 Make include paths consistent.
diego
parents: 13661
diff changeset
38 #include "config.h"
14328
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
39 #include "subopt-helper.h"
14123
a92101a7eb49 Make include paths consistent.
diego
parents: 13661
diff changeset
40 #include "mixer.h"
a92101a7eb49 Make include paths consistent.
diego
parents: 13661
diff changeset
41 #include "mp_msg.h"
20764
62bb5a46fdcb MSGTRs for ao_alsa.c
kraymer
parents: 20743
diff changeset
42 #include "help_mp.h"
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
43
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
44 #define ALSA_PCM_NEW_HW_PARAMS_API
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
45 #define ALSA_PCM_NEW_SW_PARAMS_API
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
46
28362
f0a0d87b7c56 1) HAVE_SYS_ASOUNDLIB_H/HAVE_ALSA_ASOUNDLIB_H are defined/undefined,
diego
parents: 28343
diff changeset
47 #ifdef HAVE_SYS_ASOUNDLIB_H
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
48 #include <sys/asoundlib.h>
28362
f0a0d87b7c56 1) HAVE_SYS_ASOUNDLIB_H/HAVE_ALSA_ASOUNDLIB_H are defined/undefined,
diego
parents: 28343
diff changeset
49 #elif defined(HAVE_ALSA_ASOUNDLIB_H)
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
50 #include <alsa/asoundlib.h>
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
51 #else
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
52 #error "asoundlib.h is not in sys/ or alsa/ - please bugreport"
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
53 #endif
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
54
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
55
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
56 #include "audio_out.h"
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
57 #include "audio_out_internal.h"
14245
815f03b7cee5 removing AFMT_ dependancy
alex
parents: 14123
diff changeset
58 #include "libaf/af_format.h"
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
59
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 28823
diff changeset
60 static const ao_info_t info =
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
61 {
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
62 "ALSA-0.9.x-1.x audio output",
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
63 "alsa",
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
64 "Alex Beregszaszi, Zsolt Barat <joy@streamminister.de>",
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
65 "under developement"
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
66 };
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
67
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
68 LIBAO_EXTERN(alsa)
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
69
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
70 static snd_pcm_t *alsa_handler;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
71 static snd_pcm_format_t alsa_format;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
72 static snd_pcm_hw_params_t *alsa_hwparams;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
73 static snd_pcm_sw_params_t *alsa_swparams;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
74
17619
9b619133f11a Using non-blocking writes makes sense when the program wants to do other
cladisch
parents: 17618
diff changeset
75 static size_t bytes_per_sample;
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
76
17575
9972b744fd98 Small fixes: make all global variables static, remove some unused
cladisch
parents: 17574
diff changeset
77 static int ao_noblock = 0;
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
78
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
79 static int alsa_can_pause = 0;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
80
12747
60c75c601bf1 string, alloca etc. fixes
joyping
parents: 12570
diff changeset
81 #define ALSA_DEVICE_SIZE 256
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
82
17691
b73103a82416 Output error messages from the ALSA library through mp_msg() instead of
cladisch
parents: 17690
diff changeset
83 static void alsa_error_handler(const char *file, int line, const char *function,
b73103a82416 Output error messages from the ALSA library through mp_msg() instead of
cladisch
parents: 17690
diff changeset
84 int err, const char *format, ...)
b73103a82416 Output error messages from the ALSA library through mp_msg() instead of
cladisch
parents: 17690
diff changeset
85 {
b73103a82416 Output error messages from the ALSA library through mp_msg() instead of
cladisch
parents: 17690
diff changeset
86 char tmp[0xc00];
b73103a82416 Output error messages from the ALSA library through mp_msg() instead of
cladisch
parents: 17690
diff changeset
87 va_list va;
b73103a82416 Output error messages from the ALSA library through mp_msg() instead of
cladisch
parents: 17690
diff changeset
88
b73103a82416 Output error messages from the ALSA library through mp_msg() instead of
cladisch
parents: 17690
diff changeset
89 va_start(va, format);
b73103a82416 Output error messages from the ALSA library through mp_msg() instead of
cladisch
parents: 17690
diff changeset
90 vsnprintf(tmp, sizeof tmp, format, va);
b73103a82416 Output error messages from the ALSA library through mp_msg() instead of
cladisch
parents: 17690
diff changeset
91 va_end(va);
b73103a82416 Output error messages from the ALSA library through mp_msg() instead of
cladisch
parents: 17690
diff changeset
92 tmp[sizeof tmp - 1] = '\0';
b73103a82416 Output error messages from the ALSA library through mp_msg() instead of
cladisch
parents: 17690
diff changeset
93
b73103a82416 Output error messages from the ALSA library through mp_msg() instead of
cladisch
parents: 17690
diff changeset
94 if (err)
20764
62bb5a46fdcb MSGTRs for ao_alsa.c
kraymer
parents: 20743
diff changeset
95 mp_msg(MSGT_AO, MSGL_ERR, "[AO_ALSA] alsa-lib: %s:%i:(%s) %s: %s\n",
17691
b73103a82416 Output error messages from the ALSA library through mp_msg() instead of
cladisch
parents: 17690
diff changeset
96 file, line, function, tmp, snd_strerror(err));
b73103a82416 Output error messages from the ALSA library through mp_msg() instead of
cladisch
parents: 17690
diff changeset
97 else
20764
62bb5a46fdcb MSGTRs for ao_alsa.c
kraymer
parents: 20743
diff changeset
98 mp_msg(MSGT_AO, MSGL_ERR, "[AO_ALSA] alsa-lib: %s:%i:(%s) %s\n",
17691
b73103a82416 Output error messages from the ALSA library through mp_msg() instead of
cladisch
parents: 17690
diff changeset
99 file, line, function, tmp);
b73103a82416 Output error messages from the ALSA library through mp_msg() instead of
cladisch
parents: 17690
diff changeset
100 }
b73103a82416 Output error messages from the ALSA library through mp_msg() instead of
cladisch
parents: 17690
diff changeset
101
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
102 /* to set/get/query special features/parameters */
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
103 static int control(int cmd, void *arg)
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
104 {
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
105 switch(cmd) {
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
106 case AOCONTROL_QUERY_FORMAT:
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
107 return CONTROL_TRUE;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
108 case AOCONTROL_GET_VOLUME:
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
109 case AOCONTROL_SET_VOLUME:
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
110 {
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
111 ao_control_vol_t *vol = (ao_control_vol_t *)arg;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
112
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
113 int err;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
114 snd_mixer_t *handle;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
115 snd_mixer_elem_t *elem;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
116 snd_mixer_selem_id_t *sid;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
117
12747
60c75c601bf1 string, alloca etc. fixes
joyping
parents: 12570
diff changeset
118 static char *mix_name = "PCM";
60c75c601bf1 string, alloca etc. fixes
joyping
parents: 12570
diff changeset
119 static char *card = "default";
13434
2df414ae2d2a allow to select an alsa mixer channel index.
reimar
parents: 12919
diff changeset
120 static int mix_index = 0;
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
121
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
122 long pmin, pmax;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
123 long get_vol, set_vol;
12805
0b154063a3ca fixes provided by reimar d«Órfinger. mixer, subdevice parsing, alsa#help,
joyping
parents: 12747
diff changeset
124 float f_multi;
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
125
30234
9d09ff127c25 Add and use AF_FORMAT_IS_AC3 macro.
reimar
parents: 30123
diff changeset
126 if(AF_FORMAT_IS_AC3(ao_data.format))
28118
4455edd2be89 100l, reorder check for AC3 format to avoid a possible memleak
reimar
parents: 27706
diff changeset
127 return CONTROL_TRUE;
4455edd2be89 100l, reorder check for AC3 format to avoid a possible memleak
reimar
parents: 27706
diff changeset
128
13434
2df414ae2d2a allow to select an alsa mixer channel index.
reimar
parents: 12919
diff changeset
129 if(mixer_channel) {
2df414ae2d2a allow to select an alsa mixer channel index.
reimar
parents: 12919
diff changeset
130 char *test_mix_index;
2df414ae2d2a allow to select an alsa mixer channel index.
reimar
parents: 12919
diff changeset
131
2df414ae2d2a allow to select an alsa mixer channel index.
reimar
parents: 12919
diff changeset
132 mix_name = strdup(mixer_channel);
17097
rathann
parents: 16309
diff changeset
133 if ((test_mix_index = strchr(mix_name, ','))){
13434
2df414ae2d2a allow to select an alsa mixer channel index.
reimar
parents: 12919
diff changeset
134 *test_mix_index = 0;
2df414ae2d2a allow to select an alsa mixer channel index.
reimar
parents: 12919
diff changeset
135 test_mix_index++;
2df414ae2d2a allow to select an alsa mixer channel index.
reimar
parents: 12919
diff changeset
136 mix_index = strtol(test_mix_index, &test_mix_index, 0);
2df414ae2d2a allow to select an alsa mixer channel index.
reimar
parents: 12919
diff changeset
137
2df414ae2d2a allow to select an alsa mixer channel index.
reimar
parents: 12919
diff changeset
138 if (*test_mix_index){
2df414ae2d2a allow to select an alsa mixer channel index.
reimar
parents: 12919
diff changeset
139 mp_msg(MSGT_AO,MSGL_ERR,
20764
62bb5a46fdcb MSGTRs for ao_alsa.c
kraymer
parents: 20743
diff changeset
140 MSGTR_AO_ALSA_InvalidMixerIndexDefaultingToZero);
13434
2df414ae2d2a allow to select an alsa mixer channel index.
reimar
parents: 12919
diff changeset
141 mix_index = 0 ;
2df414ae2d2a allow to select an alsa mixer channel index.
reimar
parents: 12919
diff changeset
142 }
2df414ae2d2a allow to select an alsa mixer channel index.
reimar
parents: 12919
diff changeset
143 }
2df414ae2d2a allow to select an alsa mixer channel index.
reimar
parents: 12919
diff changeset
144 }
12747
60c75c601bf1 string, alloca etc. fixes
joyping
parents: 12570
diff changeset
145 if(mixer_device) card = mixer_device;
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
146
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
147 //allocate simple id
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
148 snd_mixer_selem_id_alloca(&sid);
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 28823
diff changeset
149
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
150 //sets simple-mixer index and name
13434
2df414ae2d2a allow to select an alsa mixer channel index.
reimar
parents: 12919
diff changeset
151 snd_mixer_selem_id_set_index(sid, mix_index);
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
152 snd_mixer_selem_id_set_name(sid, mix_name);
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
153
13434
2df414ae2d2a allow to select an alsa mixer channel index.
reimar
parents: 12919
diff changeset
154 if (mixer_channel) {
2df414ae2d2a allow to select an alsa mixer channel index.
reimar
parents: 12919
diff changeset
155 free(mix_name);
2df414ae2d2a allow to select an alsa mixer channel index.
reimar
parents: 12919
diff changeset
156 mix_name = NULL;
2df414ae2d2a allow to select an alsa mixer channel index.
reimar
parents: 12919
diff changeset
157 }
2df414ae2d2a allow to select an alsa mixer channel index.
reimar
parents: 12919
diff changeset
158
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
159 if ((err = snd_mixer_open(&handle, 0)) < 0) {
20764
62bb5a46fdcb MSGTRs for ao_alsa.c
kraymer
parents: 20743
diff changeset
160 mp_msg(MSGT_AO,MSGL_ERR,MSGTR_AO_ALSA_MixerOpenError, snd_strerror(err));
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
161 return CONTROL_ERROR;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
162 }
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
163
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
164 if ((err = snd_mixer_attach(handle, card)) < 0) {
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 28823
diff changeset
165 mp_msg(MSGT_AO,MSGL_ERR,MSGTR_AO_ALSA_MixerAttachError,
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
166 card, snd_strerror(err));
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
167 snd_mixer_close(handle);
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
168 return CONTROL_ERROR;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
169 }
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
170
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
171 if ((err = snd_mixer_selem_register(handle, NULL, NULL)) < 0) {
20764
62bb5a46fdcb MSGTRs for ao_alsa.c
kraymer
parents: 20743
diff changeset
172 mp_msg(MSGT_AO,MSGL_ERR,MSGTR_AO_ALSA_MixerRegisterError, snd_strerror(err));
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
173 snd_mixer_close(handle);
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
174 return CONTROL_ERROR;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
175 }
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
176 err = snd_mixer_load(handle);
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
177 if (err < 0) {
20764
62bb5a46fdcb MSGTRs for ao_alsa.c
kraymer
parents: 20743
diff changeset
178 mp_msg(MSGT_AO,MSGL_ERR,MSGTR_AO_ALSA_MixerLoadError, snd_strerror(err));
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
179 snd_mixer_close(handle);
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
180 return CONTROL_ERROR;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
181 }
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
182
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
183 elem = snd_mixer_find_selem(handle, sid);
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
184 if (!elem) {
20764
62bb5a46fdcb MSGTRs for ao_alsa.c
kraymer
parents: 20743
diff changeset
185 mp_msg(MSGT_AO,MSGL_ERR,MSGTR_AO_ALSA_UnableToFindSimpleControl,
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
186 snd_mixer_selem_id_get_name(sid), snd_mixer_selem_id_get_index(sid));
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
187 snd_mixer_close(handle);
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
188 return CONTROL_ERROR;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
189 }
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
190
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
191 snd_mixer_selem_get_playback_volume_range(elem,&pmin,&pmax);
12811
d5f8efddac6c volume calc fixes for mixer, by reimar d«Óffinger, 10l reverse by me
joyping
parents: 12805
diff changeset
192 f_multi = (100 / (float)(pmax - pmin));
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
193
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
194 if (cmd == AOCONTROL_SET_VOLUME) {
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
195
12811
d5f8efddac6c volume calc fixes for mixer, by reimar d«Óffinger, 10l reverse by me
joyping
parents: 12805
diff changeset
196 set_vol = vol->left / f_multi + pmin + 0.5;
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
197
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
198 //setting channels
27706
8dec0335f75b Replace numeric constants by their defines.
cehoyos
parents: 27682
diff changeset
199 if ((err = snd_mixer_selem_set_playback_volume(elem, SND_MIXER_SCHN_FRONT_LEFT, set_vol)) < 0) {
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 28823
diff changeset
200 mp_msg(MSGT_AO,MSGL_ERR,MSGTR_AO_ALSA_ErrorSettingLeftChannel,
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
201 snd_strerror(err));
29436
4537ed655f0b Do not leak the mixer handle if setting of a volume fails.
cladisch
parents: 29401
diff changeset
202 snd_mixer_close(handle);
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
203 return CONTROL_ERROR;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
204 }
12805
0b154063a3ca fixes provided by reimar d«Órfinger. mixer, subdevice parsing, alsa#help,
joyping
parents: 12747
diff changeset
205 mp_msg(MSGT_AO,MSGL_DBG2,"left=%li, ", set_vol);
0b154063a3ca fixes provided by reimar d«Órfinger. mixer, subdevice parsing, alsa#help,
joyping
parents: 12747
diff changeset
206
12811
d5f8efddac6c volume calc fixes for mixer, by reimar d«Óffinger, 10l reverse by me
joyping
parents: 12805
diff changeset
207 set_vol = vol->right / f_multi + pmin + 0.5;
12805
0b154063a3ca fixes provided by reimar d«Órfinger. mixer, subdevice parsing, alsa#help,
joyping
parents: 12747
diff changeset
208
27706
8dec0335f75b Replace numeric constants by their defines.
cehoyos
parents: 27682
diff changeset
209 if ((err = snd_mixer_selem_set_playback_volume(elem, SND_MIXER_SCHN_FRONT_RIGHT, set_vol)) < 0) {
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 28823
diff changeset
210 mp_msg(MSGT_AO,MSGL_ERR,MSGTR_AO_ALSA_ErrorSettingRightChannel,
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
211 snd_strerror(err));
29436
4537ed655f0b Do not leak the mixer handle if setting of a volume fails.
cladisch
parents: 29401
diff changeset
212 snd_mixer_close(handle);
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
213 return CONTROL_ERROR;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
214 }
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 28823
diff changeset
215 mp_msg(MSGT_AO,MSGL_DBG2,"right=%li, pmin=%li, pmax=%li, mult=%f\n",
12805
0b154063a3ca fixes provided by reimar d«Órfinger. mixer, subdevice parsing, alsa#help,
joyping
parents: 12747
diff changeset
216 set_vol, pmin, pmax, f_multi);
17194
cd527e59d128 use snd_mixer_selem_set_playback_switch when muting ALSA, patch by Matthias Lederhofer <matled -at- gmx dot net>
wanderer
parents: 17097
diff changeset
217
cd527e59d128 use snd_mixer_selem_set_playback_switch when muting ALSA, patch by Matthias Lederhofer <matled -at- gmx dot net>
wanderer
parents: 17097
diff changeset
218 if (snd_mixer_selem_has_playback_switch(elem)) {
cd527e59d128 use snd_mixer_selem_set_playback_switch when muting ALSA, patch by Matthias Lederhofer <matled -at- gmx dot net>
wanderer
parents: 17097
diff changeset
219 int lmute = (vol->left == 0.0);
cd527e59d128 use snd_mixer_selem_set_playback_switch when muting ALSA, patch by Matthias Lederhofer <matled -at- gmx dot net>
wanderer
parents: 17097
diff changeset
220 int rmute = (vol->right == 0.0);
cd527e59d128 use snd_mixer_selem_set_playback_switch when muting ALSA, patch by Matthias Lederhofer <matled -at- gmx dot net>
wanderer
parents: 17097
diff changeset
221 if (snd_mixer_selem_has_playback_switch_joined(elem)) {
cd527e59d128 use snd_mixer_selem_set_playback_switch when muting ALSA, patch by Matthias Lederhofer <matled -at- gmx dot net>
wanderer
parents: 17097
diff changeset
222 lmute = rmute = lmute && rmute;
cd527e59d128 use snd_mixer_selem_set_playback_switch when muting ALSA, patch by Matthias Lederhofer <matled -at- gmx dot net>
wanderer
parents: 17097
diff changeset
223 } else {
cd527e59d128 use snd_mixer_selem_set_playback_switch when muting ALSA, patch by Matthias Lederhofer <matled -at- gmx dot net>
wanderer
parents: 17097
diff changeset
224 snd_mixer_selem_set_playback_switch(elem, SND_MIXER_SCHN_FRONT_RIGHT, !rmute);
cd527e59d128 use snd_mixer_selem_set_playback_switch when muting ALSA, patch by Matthias Lederhofer <matled -at- gmx dot net>
wanderer
parents: 17097
diff changeset
225 }
cd527e59d128 use snd_mixer_selem_set_playback_switch when muting ALSA, patch by Matthias Lederhofer <matled -at- gmx dot net>
wanderer
parents: 17097
diff changeset
226 snd_mixer_selem_set_playback_switch(elem, SND_MIXER_SCHN_FRONT_LEFT, !lmute);
cd527e59d128 use snd_mixer_selem_set_playback_switch when muting ALSA, patch by Matthias Lederhofer <matled -at- gmx dot net>
wanderer
parents: 17097
diff changeset
227 }
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
228 }
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
229 else {
27706
8dec0335f75b Replace numeric constants by their defines.
cehoyos
parents: 27682
diff changeset
230 snd_mixer_selem_get_playback_volume(elem, SND_MIXER_SCHN_FRONT_LEFT, &get_vol);
12811
d5f8efddac6c volume calc fixes for mixer, by reimar d«Óffinger, 10l reverse by me
joyping
parents: 12805
diff changeset
231 vol->left = (get_vol - pmin) * f_multi;
27706
8dec0335f75b Replace numeric constants by their defines.
cehoyos
parents: 27682
diff changeset
232 snd_mixer_selem_get_playback_volume(elem, SND_MIXER_SCHN_FRONT_RIGHT, &get_vol);
12811
d5f8efddac6c volume calc fixes for mixer, by reimar d«Óffinger, 10l reverse by me
joyping
parents: 12805
diff changeset
233 vol->right = (get_vol - pmin) * f_multi;
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
234
12805
0b154063a3ca fixes provided by reimar d«Órfinger. mixer, subdevice parsing, alsa#help,
joyping
parents: 12747
diff changeset
235 mp_msg(MSGT_AO,MSGL_DBG2,"left=%f, right=%f\n",vol->left,vol->right);
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
236 }
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
237 snd_mixer_close(handle);
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
238 return CONTROL_OK;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
239 }
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 28823
diff changeset
240
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
241 } //end switch
26757
0fdf04b07ecb cosmetics: Remove pointless parentheses from return statements.
diego
parents: 24590
diff changeset
242 return CONTROL_UNKNOWN;
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
243 }
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
244
14328
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
245 static void parse_device (char *dest, const char *src, int len)
12805
0b154063a3ca fixes provided by reimar d«Órfinger. mixer, subdevice parsing, alsa#help,
joyping
parents: 12747
diff changeset
246 {
0b154063a3ca fixes provided by reimar d«Órfinger. mixer, subdevice parsing, alsa#help,
joyping
parents: 12747
diff changeset
247 char *tmp;
14328
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
248 memmove(dest, src, len);
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
249 dest[len] = 0;
12805
0b154063a3ca fixes provided by reimar d«Órfinger. mixer, subdevice parsing, alsa#help,
joyping
parents: 12747
diff changeset
250 while ((tmp = strrchr(dest, '.')))
0b154063a3ca fixes provided by reimar d«Órfinger. mixer, subdevice parsing, alsa#help,
joyping
parents: 12747
diff changeset
251 tmp[0] = ',';
12919
aba44b58dea7 Use = instead if # in ALSA device name, as # irritates our config-parser.
reimar
parents: 12819
diff changeset
252 while ((tmp = strrchr(dest, '=')))
12805
0b154063a3ca fixes provided by reimar d«Órfinger. mixer, subdevice parsing, alsa#help,
joyping
parents: 12747
diff changeset
253 tmp[0] = ':';
0b154063a3ca fixes provided by reimar d«Órfinger. mixer, subdevice parsing, alsa#help,
joyping
parents: 12747
diff changeset
254 }
0b154063a3ca fixes provided by reimar d«Órfinger. mixer, subdevice parsing, alsa#help,
joyping
parents: 12747
diff changeset
255
17566
f580a7755ac5 Patch by Stefan Huehner / stefan % huehner ! org \
rathann
parents: 17366
diff changeset
256 static void print_help (void)
12805
0b154063a3ca fixes provided by reimar d«Órfinger. mixer, subdevice parsing, alsa#help,
joyping
parents: 12747
diff changeset
257 {
0b154063a3ca fixes provided by reimar d«Órfinger. mixer, subdevice parsing, alsa#help,
joyping
parents: 12747
diff changeset
258 mp_msg (MSGT_AO, MSGL_FATAL,
20764
62bb5a46fdcb MSGTRs for ao_alsa.c
kraymer
parents: 20743
diff changeset
259 MSGTR_AO_ALSA_CommandlineHelp);
12805
0b154063a3ca fixes provided by reimar d«Órfinger. mixer, subdevice parsing, alsa#help,
joyping
parents: 12747
diff changeset
260 }
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
261
30122
1772a5171ac7 Fix function declarations to avoid casting function pointers.
reimar
parents: 29826
diff changeset
262 static int str_maxlen(void *strp) {
1772a5171ac7 Fix function declarations to avoid casting function pointers.
reimar
parents: 29826
diff changeset
263 strarg_t *str = strp;
30123
0f5f75b4a015 Simplify range-checking functions for subopt parsing.
reimar
parents: 30122
diff changeset
264 return str->len <= ALSA_DEVICE_SIZE;
14328
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
265 }
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
266
22166
68dceb30bbcf When setting the non-audio bit for hwac3 output, just try to set the
cladisch
parents: 20764
diff changeset
267 static int try_open_device(const char *device, int open_mode, int try_ac3)
19889
d4bb39d65f87 When the hardware sample format is AC3, do not force using an hardcoded
cladisch
parents: 19887
diff changeset
268 {
22166
68dceb30bbcf When setting the non-audio bit for hwac3 output, just try to set the
cladisch
parents: 20764
diff changeset
269 int err, len;
68dceb30bbcf When setting the non-audio bit for hwac3 output, just try to set the
cladisch
parents: 20764
diff changeset
270 char *ac3_device, *args;
19889
d4bb39d65f87 When the hardware sample format is AC3, do not force using an hardcoded
cladisch
parents: 19887
diff changeset
271
22166
68dceb30bbcf When setting the non-audio bit for hwac3 output, just try to set the
cladisch
parents: 20764
diff changeset
272 if (try_ac3) {
68dceb30bbcf When setting the non-audio bit for hwac3 output, just try to set the
cladisch
parents: 20764
diff changeset
273 /* to set the non-audio bit, use AES0=6 */
68dceb30bbcf When setting the non-audio bit for hwac3 output, just try to set the
cladisch
parents: 20764
diff changeset
274 len = strlen(device);
68dceb30bbcf When setting the non-audio bit for hwac3 output, just try to set the
cladisch
parents: 20764
diff changeset
275 ac3_device = malloc(len + 7 + 1);
68dceb30bbcf When setting the non-audio bit for hwac3 output, just try to set the
cladisch
parents: 20764
diff changeset
276 if (!ac3_device)
68dceb30bbcf When setting the non-audio bit for hwac3 output, just try to set the
cladisch
parents: 20764
diff changeset
277 return -ENOMEM;
68dceb30bbcf When setting the non-audio bit for hwac3 output, just try to set the
cladisch
parents: 20764
diff changeset
278 strcpy(ac3_device, device);
68dceb30bbcf When setting the non-audio bit for hwac3 output, just try to set the
cladisch
parents: 20764
diff changeset
279 args = strchr(ac3_device, ':');
68dceb30bbcf When setting the non-audio bit for hwac3 output, just try to set the
cladisch
parents: 20764
diff changeset
280 if (!args) {
68dceb30bbcf When setting the non-audio bit for hwac3 output, just try to set the
cladisch
parents: 20764
diff changeset
281 /* no existing parameters: add it behind device name */
68dceb30bbcf When setting the non-audio bit for hwac3 output, just try to set the
cladisch
parents: 20764
diff changeset
282 strcat(ac3_device, ":AES0=6");
68dceb30bbcf When setting the non-audio bit for hwac3 output, just try to set the
cladisch
parents: 20764
diff changeset
283 } else {
68dceb30bbcf When setting the non-audio bit for hwac3 output, just try to set the
cladisch
parents: 20764
diff changeset
284 do
68dceb30bbcf When setting the non-audio bit for hwac3 output, just try to set the
cladisch
parents: 20764
diff changeset
285 ++args;
68dceb30bbcf When setting the non-audio bit for hwac3 output, just try to set the
cladisch
parents: 20764
diff changeset
286 while (isspace(*args));
68dceb30bbcf When setting the non-audio bit for hwac3 output, just try to set the
cladisch
parents: 20764
diff changeset
287 if (*args == '\0') {
68dceb30bbcf When setting the non-audio bit for hwac3 output, just try to set the
cladisch
parents: 20764
diff changeset
288 /* ":" but no parameters */
68dceb30bbcf When setting the non-audio bit for hwac3 output, just try to set the
cladisch
parents: 20764
diff changeset
289 strcat(ac3_device, "AES0=6");
68dceb30bbcf When setting the non-audio bit for hwac3 output, just try to set the
cladisch
parents: 20764
diff changeset
290 } else if (*args != '{') {
68dceb30bbcf When setting the non-audio bit for hwac3 output, just try to set the
cladisch
parents: 20764
diff changeset
291 /* a simple list of parameters: add it at the end of the list */
68dceb30bbcf When setting the non-audio bit for hwac3 output, just try to set the
cladisch
parents: 20764
diff changeset
292 strcat(ac3_device, ",AES0=6");
68dceb30bbcf When setting the non-audio bit for hwac3 output, just try to set the
cladisch
parents: 20764
diff changeset
293 } else {
68dceb30bbcf When setting the non-audio bit for hwac3 output, just try to set the
cladisch
parents: 20764
diff changeset
294 /* parameters in config syntax: add it inside the { } block */
68dceb30bbcf When setting the non-audio bit for hwac3 output, just try to set the
cladisch
parents: 20764
diff changeset
295 do
68dceb30bbcf When setting the non-audio bit for hwac3 output, just try to set the
cladisch
parents: 20764
diff changeset
296 --len;
68dceb30bbcf When setting the non-audio bit for hwac3 output, just try to set the
cladisch
parents: 20764
diff changeset
297 while (len > 0 && isspace(ac3_device[len]));
68dceb30bbcf When setting the non-audio bit for hwac3 output, just try to set the
cladisch
parents: 20764
diff changeset
298 if (ac3_device[len] == '}')
68dceb30bbcf When setting the non-audio bit for hwac3 output, just try to set the
cladisch
parents: 20764
diff changeset
299 strcpy(ac3_device + len, " AES0=6}");
19889
d4bb39d65f87 When the hardware sample format is AC3, do not force using an hardcoded
cladisch
parents: 19887
diff changeset
300 }
d4bb39d65f87 When the hardware sample format is AC3, do not force using an hardcoded
cladisch
parents: 19887
diff changeset
301 }
22166
68dceb30bbcf When setting the non-audio bit for hwac3 output, just try to set the
cladisch
parents: 20764
diff changeset
302 err = snd_pcm_open(&alsa_handler, ac3_device, SND_PCM_STREAM_PLAYBACK,
68dceb30bbcf When setting the non-audio bit for hwac3 output, just try to set the
cladisch
parents: 20764
diff changeset
303 open_mode);
68dceb30bbcf When setting the non-audio bit for hwac3 output, just try to set the
cladisch
parents: 20764
diff changeset
304 free(ac3_device);
19889
d4bb39d65f87 When the hardware sample format is AC3, do not force using an hardcoded
cladisch
parents: 19887
diff changeset
305 }
22166
68dceb30bbcf When setting the non-audio bit for hwac3 output, just try to set the
cladisch
parents: 20764
diff changeset
306 if (!try_ac3 || err < 0)
68dceb30bbcf When setting the non-audio bit for hwac3 output, just try to set the
cladisch
parents: 20764
diff changeset
307 err = snd_pcm_open(&alsa_handler, device, SND_PCM_STREAM_PLAYBACK,
68dceb30bbcf When setting the non-audio bit for hwac3 output, just try to set the
cladisch
parents: 20764
diff changeset
308 open_mode);
68dceb30bbcf When setting the non-audio bit for hwac3 output, just try to set the
cladisch
parents: 20764
diff changeset
309 return err;
19889
d4bb39d65f87 When the hardware sample format is AC3, do not force using an hardcoded
cladisch
parents: 19887
diff changeset
310 }
d4bb39d65f87 When the hardware sample format is AC3, do not force using an hardcoded
cladisch
parents: 19887
diff changeset
311
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
312 /*
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
313 open & setup audio device
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
314 return: 1=success 0=fail
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
315 */
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
316 static int init(int rate_hz, int channels, int format, int flags)
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
317 {
30398
acb92f578a08 Do not needlessly use (file-)global variables.
reimar
parents: 30241
diff changeset
318 unsigned int alsa_buffer_time = 500000; /* 0.5 s */
acb92f578a08 Do not needlessly use (file-)global variables.
reimar
parents: 30241
diff changeset
319 unsigned int alsa_fragcount = 16;
acb92f578a08 Do not needlessly use (file-)global variables.
reimar
parents: 30241
diff changeset
320 int open_mode;
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
321 int err;
14328
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
322 int block;
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
323 strarg_t device;
29507
fc8416cffdcd Use a buffer of about half a second, instead of sizing it to have
cladisch
parents: 29436
diff changeset
324 snd_pcm_uframes_t chunk_size;
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
325 snd_pcm_uframes_t bufsize;
17620
dd4db8c43d92 This changes the software parameters to be more compatible with the
cladisch
parents: 17619
diff changeset
326 snd_pcm_uframes_t boundary;
29586
2eff450157cd The suboption parser now takes a const options list, so mark them all const.
reimar
parents: 29507
diff changeset
327 const opt_t subopts[] = {
14328
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
328 {"block", OPT_ARG_BOOL, &block, NULL},
30122
1772a5171ac7 Fix function declarations to avoid casting function pointers.
reimar
parents: 29826
diff changeset
329 {"device", OPT_ARG_STR, &device, str_maxlen},
14328
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
330 {NULL}
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
331 };
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
332
12747
60c75c601bf1 string, alloca etc. fixes
joyping
parents: 12570
diff changeset
333 char alsa_device[ALSA_DEVICE_SIZE + 1];
60c75c601bf1 string, alloca etc. fixes
joyping
parents: 12570
diff changeset
334 // make sure alsa_device is null-terminated even when using strncpy etc.
60c75c601bf1 string, alloca etc. fixes
joyping
parents: 12570
diff changeset
335 memset(alsa_device, 0, ALSA_DEVICE_SIZE + 1);
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
336
14249
8f59f661f317 hopefully final fix
alex
parents: 14245
diff changeset
337 mp_msg(MSGT_AO,MSGL_V,"alsa-init: requested format: %d Hz, %d channels, %x\n", rate_hz,
8f59f661f317 hopefully final fix
alex
parents: 14245
diff changeset
338 channels, format);
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
339 alsa_handler = NULL;
17690
9ca95aee8449 Show the actual ALSA version instead of the version mplayer was compiled
cladisch
parents: 17621
diff changeset
340 #if SND_LIB_VERSION >= 0x010005
9ca95aee8449 Show the actual ALSA version instead of the version mplayer was compiled
cladisch
parents: 17621
diff changeset
341 mp_msg(MSGT_AO,MSGL_V,"alsa-init: using ALSA %s\n", snd_asoundlib_version());
9ca95aee8449 Show the actual ALSA version instead of the version mplayer was compiled
cladisch
parents: 17621
diff changeset
342 #else
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
343 mp_msg(MSGT_AO,MSGL_V,"alsa-init: compiled for ALSA-%s\n", SND_LIB_VERSION_STR);
17690
9ca95aee8449 Show the actual ALSA version instead of the version mplayer was compiled
cladisch
parents: 17621
diff changeset
344 #endif
17691
b73103a82416 Output error messages from the ALSA library through mp_msg() instead of
cladisch
parents: 17690
diff changeset
345
b73103a82416 Output error messages from the ALSA library through mp_msg() instead of
cladisch
parents: 17690
diff changeset
346 snd_lib_error_set_handler(alsa_error_handler);
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 28823
diff changeset
347
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
348 ao_data.samplerate = rate_hz;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
349 ao_data.format = format;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
350 ao_data.channels = channels;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
351
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
352 switch (format)
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
353 {
14245
815f03b7cee5 removing AFMT_ dependancy
alex
parents: 14123
diff changeset
354 case AF_FORMAT_S8:
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
355 alsa_format = SND_PCM_FORMAT_S8;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
356 break;
14245
815f03b7cee5 removing AFMT_ dependancy
alex
parents: 14123
diff changeset
357 case AF_FORMAT_U8:
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
358 alsa_format = SND_PCM_FORMAT_U8;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
359 break;
14245
815f03b7cee5 removing AFMT_ dependancy
alex
parents: 14123
diff changeset
360 case AF_FORMAT_U16_LE:
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
361 alsa_format = SND_PCM_FORMAT_U16_LE;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
362 break;
14245
815f03b7cee5 removing AFMT_ dependancy
alex
parents: 14123
diff changeset
363 case AF_FORMAT_U16_BE:
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
364 alsa_format = SND_PCM_FORMAT_U16_BE;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
365 break;
30241
02b9c1a452e1 Add support for distinguishing between little- and big-endian SPDIF AC3
reimar
parents: 30237
diff changeset
366 case AF_FORMAT_AC3_LE:
14245
815f03b7cee5 removing AFMT_ dependancy
alex
parents: 14123
diff changeset
367 case AF_FORMAT_S16_LE:
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
368 alsa_format = SND_PCM_FORMAT_S16_LE;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
369 break;
30241
02b9c1a452e1 Add support for distinguishing between little- and big-endian SPDIF AC3
reimar
parents: 30237
diff changeset
370 case AF_FORMAT_AC3_BE:
14245
815f03b7cee5 removing AFMT_ dependancy
alex
parents: 14123
diff changeset
371 case AF_FORMAT_S16_BE:
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
372 alsa_format = SND_PCM_FORMAT_S16_BE;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
373 break;
17571
e476a1d38087 This adds support for more sample formats (U32, float BE, mu/A-law).
cladisch
parents: 17570
diff changeset
374 case AF_FORMAT_U32_LE:
e476a1d38087 This adds support for more sample formats (U32, float BE, mu/A-law).
cladisch
parents: 17570
diff changeset
375 alsa_format = SND_PCM_FORMAT_U32_LE;
e476a1d38087 This adds support for more sample formats (U32, float BE, mu/A-law).
cladisch
parents: 17570
diff changeset
376 break;
e476a1d38087 This adds support for more sample formats (U32, float BE, mu/A-law).
cladisch
parents: 17570
diff changeset
377 case AF_FORMAT_U32_BE:
e476a1d38087 This adds support for more sample formats (U32, float BE, mu/A-law).
cladisch
parents: 17570
diff changeset
378 alsa_format = SND_PCM_FORMAT_U32_BE;
e476a1d38087 This adds support for more sample formats (U32, float BE, mu/A-law).
cladisch
parents: 17570
diff changeset
379 break;
14245
815f03b7cee5 removing AFMT_ dependancy
alex
parents: 14123
diff changeset
380 case AF_FORMAT_S32_LE:
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
381 alsa_format = SND_PCM_FORMAT_S32_LE;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
382 break;
14245
815f03b7cee5 removing AFMT_ dependancy
alex
parents: 14123
diff changeset
383 case AF_FORMAT_S32_BE:
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
384 alsa_format = SND_PCM_FORMAT_S32_BE;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
385 break;
29386
9ccfc57f0eff Handle 24bit audio formats natively by ALSA.
iive
parents: 29263
diff changeset
386 case AF_FORMAT_U24_LE:
29392
cd3ec59296a0 Use correct ALSA sample format for 24-bit samples packed in three bytes.
cladisch
parents: 29386
diff changeset
387 alsa_format = SND_PCM_FORMAT_U24_3LE;
29386
9ccfc57f0eff Handle 24bit audio formats natively by ALSA.
iive
parents: 29263
diff changeset
388 break;
9ccfc57f0eff Handle 24bit audio formats natively by ALSA.
iive
parents: 29263
diff changeset
389 case AF_FORMAT_U24_BE:
29392
cd3ec59296a0 Use correct ALSA sample format for 24-bit samples packed in three bytes.
cladisch
parents: 29386
diff changeset
390 alsa_format = SND_PCM_FORMAT_U24_3BE;
29386
9ccfc57f0eff Handle 24bit audio formats natively by ALSA.
iive
parents: 29263
diff changeset
391 break;
9ccfc57f0eff Handle 24bit audio formats natively by ALSA.
iive
parents: 29263
diff changeset
392 case AF_FORMAT_S24_LE:
29392
cd3ec59296a0 Use correct ALSA sample format for 24-bit samples packed in three bytes.
cladisch
parents: 29386
diff changeset
393 alsa_format = SND_PCM_FORMAT_S24_3LE;
29386
9ccfc57f0eff Handle 24bit audio formats natively by ALSA.
iive
parents: 29263
diff changeset
394 break;
9ccfc57f0eff Handle 24bit audio formats natively by ALSA.
iive
parents: 29263
diff changeset
395 case AF_FORMAT_S24_BE:
29392
cd3ec59296a0 Use correct ALSA sample format for 24-bit samples packed in three bytes.
cladisch
parents: 29386
diff changeset
396 alsa_format = SND_PCM_FORMAT_S24_3BE;
29386
9ccfc57f0eff Handle 24bit audio formats natively by ALSA.
iive
parents: 29263
diff changeset
397 break;
14245
815f03b7cee5 removing AFMT_ dependancy
alex
parents: 14123
diff changeset
398 case AF_FORMAT_FLOAT_LE:
12570
148f3c98a041 additional formats - 8bit & float
henry
parents: 12465
diff changeset
399 alsa_format = SND_PCM_FORMAT_FLOAT_LE;
148f3c98a041 additional formats - 8bit & float
henry
parents: 12465
diff changeset
400 break;
17571
e476a1d38087 This adds support for more sample formats (U32, float BE, mu/A-law).
cladisch
parents: 17570
diff changeset
401 case AF_FORMAT_FLOAT_BE:
e476a1d38087 This adds support for more sample formats (U32, float BE, mu/A-law).
cladisch
parents: 17570
diff changeset
402 alsa_format = SND_PCM_FORMAT_FLOAT_BE;
e476a1d38087 This adds support for more sample formats (U32, float BE, mu/A-law).
cladisch
parents: 17570
diff changeset
403 break;
e476a1d38087 This adds support for more sample formats (U32, float BE, mu/A-law).
cladisch
parents: 17570
diff changeset
404 case AF_FORMAT_MU_LAW:
e476a1d38087 This adds support for more sample formats (U32, float BE, mu/A-law).
cladisch
parents: 17570
diff changeset
405 alsa_format = SND_PCM_FORMAT_MU_LAW;
e476a1d38087 This adds support for more sample formats (U32, float BE, mu/A-law).
cladisch
parents: 17570
diff changeset
406 break;
e476a1d38087 This adds support for more sample formats (U32, float BE, mu/A-law).
cladisch
parents: 17570
diff changeset
407 case AF_FORMAT_A_LAW:
e476a1d38087 This adds support for more sample formats (U32, float BE, mu/A-law).
cladisch
parents: 17570
diff changeset
408 alsa_format = SND_PCM_FORMAT_A_LAW;
e476a1d38087 This adds support for more sample formats (U32, float BE, mu/A-law).
cladisch
parents: 17570
diff changeset
409 break;
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
410
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
411 default:
14251
89c1422b367b maybe now..
alex
parents: 14249
diff changeset
412 alsa_format = SND_PCM_FORMAT_MPEG; //? default should be -1
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
413 break;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
414 }
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 28823
diff changeset
415
12805
0b154063a3ca fixes provided by reimar d«Órfinger. mixer, subdevice parsing, alsa#help,
joyping
parents: 12747
diff changeset
416 //subdevice parsing
14328
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
417 // set defaults
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
418 block = 1;
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
419 /* switch for spdif
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
420 * sets opening sequence for SPDIF
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
421 * sets also the playback and other switches 'on the fly'
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
422 * while opening the abstract alias for the spdif subdevice
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
423 * 'iec958'
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
424 */
30234
9d09ff127c25 Add and use AF_FORMAT_IS_AC3 macro.
reimar
parents: 30123
diff changeset
425 if (AF_FORMAT_IS_AC3(format)) {
19889
d4bb39d65f87 When the hardware sample format is AC3, do not force using an hardcoded
cladisch
parents: 19887
diff changeset
426 device.str = "iec958";
12747
60c75c601bf1 string, alloca etc. fixes
joyping
parents: 12570
diff changeset
427 mp_msg(MSGT_AO,MSGL_V,"alsa-spdif-init: playing AC3, %i channels\n", channels);
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
428 }
13661
07dc40f25068 Only use S/PDIF output when no other alsa device is set, allows to use
reimar
parents: 13434
diff changeset
429 else
14328
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
430 /* in any case for multichannel playback we should select
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
431 * appropriate device
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
432 */
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
433 switch (channels) {
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
434 case 1:
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
435 case 2:
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
436 device.str = "default";
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
437 mp_msg(MSGT_AO,MSGL_V,"alsa-init: setup for 1/2 channel(s)\n");
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
438 break;
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
439 case 4:
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
440 if (alsa_format == SND_PCM_FORMAT_FLOAT_LE)
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
441 // hack - use the converter plugin
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
442 device.str = "plug:surround40";
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
443 else
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
444 device.str = "surround40";
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
445 mp_msg(MSGT_AO,MSGL_V,"alsa-init: device set to surround40\n");
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
446 break;
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
447 case 6:
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
448 if (alsa_format == SND_PCM_FORMAT_FLOAT_LE)
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
449 device.str = "plug:surround51";
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
450 else
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
451 device.str = "surround51";
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
452 mp_msg(MSGT_AO,MSGL_V,"alsa-init: device set to surround51\n");
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
453 break;
29826
4eae69f3f4f4 Add support for 8 channel audio.
tack
parents: 29706
diff changeset
454 case 8:
4eae69f3f4f4 Add support for 8 channel audio.
tack
parents: 29706
diff changeset
455 if (alsa_format == SND_PCM_FORMAT_FLOAT_LE)
4eae69f3f4f4 Add support for 8 channel audio.
tack
parents: 29706
diff changeset
456 device.str = "plug:surround71";
4eae69f3f4f4 Add support for 8 channel audio.
tack
parents: 29706
diff changeset
457 else
4eae69f3f4f4 Add support for 8 channel audio.
tack
parents: 29706
diff changeset
458 device.str = "surround71";
4eae69f3f4f4 Add support for 8 channel audio.
tack
parents: 29706
diff changeset
459 mp_msg(MSGT_AO,MSGL_V,"alsa-init: device set to surround71\n");
4eae69f3f4f4 Add support for 8 channel audio.
tack
parents: 29706
diff changeset
460 break;
14328
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
461 default:
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
462 device.str = "default";
20764
62bb5a46fdcb MSGTRs for ao_alsa.c
kraymer
parents: 20743
diff changeset
463 mp_msg(MSGT_AO,MSGL_ERR,MSGTR_AO_ALSA_ChannelsNotSupported,channels);
14328
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
464 }
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
465 device.len = strlen(device.str);
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
466 if (subopt_parse(ao_subdevice, subopts) != 0) {
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
467 print_help();
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
468 return 0;
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
469 }
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
470 ao_noblock = !block;
fb9bf2e782a9 Use the subopt-helper for parsing suboptions.
reimar
parents: 14264
diff changeset
471 parse_device(alsa_device, device.str, device.len);
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
472
20185
b6eed21e0535 slight overall verbosity reduction
diego
parents: 20020
diff changeset
473 mp_msg(MSGT_AO,MSGL_V,"alsa-init: using device %s\n", alsa_device);
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
474
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
475 //setting modes for block or nonblock-mode
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
476 if (ao_noblock) {
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
477 open_mode = SND_PCM_NONBLOCK;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
478 }
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
479 else {
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
480 open_mode = 0;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
481 }
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
482
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
483 if (!alsa_handler) {
30234
9d09ff127c25 Add and use AF_FORMAT_IS_AC3 macro.
reimar
parents: 30123
diff changeset
484 int isac3 = AF_FORMAT_IS_AC3(format);
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
485 //modes = 0, SND_PCM_NONBLOCK, SND_PCM_ASYNC
30234
9d09ff127c25 Add and use AF_FORMAT_IS_AC3 macro.
reimar
parents: 30123
diff changeset
486 if ((err = try_open_device(alsa_device, open_mode, isac3)) < 0)
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
487 {
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
488 if (err != -EBUSY && ao_noblock) {
20764
62bb5a46fdcb MSGTRs for ao_alsa.c
kraymer
parents: 20743
diff changeset
489 mp_msg(MSGT_AO,MSGL_INFO,MSGTR_AO_ALSA_OpenInNonblockModeFailed);
30234
9d09ff127c25 Add and use AF_FORMAT_IS_AC3 macro.
reimar
parents: 30123
diff changeset
490 if ((err = try_open_device(alsa_device, 0, isac3)) < 0) {
20764
62bb5a46fdcb MSGTRs for ao_alsa.c
kraymer
parents: 20743
diff changeset
491 mp_msg(MSGT_AO,MSGL_ERR,MSGTR_AO_ALSA_PlaybackOpenError, snd_strerror(err));
26757
0fdf04b07ecb cosmetics: Remove pointless parentheses from return statements.
diego
parents: 24590
diff changeset
492 return 0;
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
493 }
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
494 } else {
20764
62bb5a46fdcb MSGTRs for ao_alsa.c
kraymer
parents: 20743
diff changeset
495 mp_msg(MSGT_AO,MSGL_ERR,MSGTR_AO_ALSA_PlaybackOpenError, snd_strerror(err));
26757
0fdf04b07ecb cosmetics: Remove pointless parentheses from return statements.
diego
parents: 24590
diff changeset
496 return 0;
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
497 }
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
498 }
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
499
17619
9b619133f11a Using non-blocking writes makes sense when the program wants to do other
cladisch
parents: 17618
diff changeset
500 if ((err = snd_pcm_nonblock(alsa_handler, 0)) < 0) {
20764
62bb5a46fdcb MSGTRs for ao_alsa.c
kraymer
parents: 20743
diff changeset
501 mp_msg(MSGT_AO,MSGL_ERR,MSGTR_AO_ALSA_ErrorSetBlockMode, snd_strerror(err));
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
502 } else {
20743
diego
parents: 20185
diff changeset
503 mp_msg(MSGT_AO,MSGL_V,"alsa-init: pcm opened in blocking mode\n");
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
504 }
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
505
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
506 snd_pcm_hw_params_alloca(&alsa_hwparams);
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
507 snd_pcm_sw_params_alloca(&alsa_swparams);
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
508
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
509 // setting hw-parameters
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
510 if ((err = snd_pcm_hw_params_any(alsa_handler, alsa_hwparams)) < 0)
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
511 {
20764
62bb5a46fdcb MSGTRs for ao_alsa.c
kraymer
parents: 20743
diff changeset
512 mp_msg(MSGT_AO,MSGL_ERR,MSGTR_AO_ALSA_UnableToGetInitialParameters,
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
513 snd_strerror(err));
26757
0fdf04b07ecb cosmetics: Remove pointless parentheses from return statements.
diego
parents: 24590
diff changeset
514 return 0;
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
515 }
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 28823
diff changeset
516
17616
92431bc3d014 This patch removes mmap support because it doesn't have any benefit.
cladisch
parents: 17575
diff changeset
517 err = snd_pcm_hw_params_set_access(alsa_handler, alsa_hwparams,
92431bc3d014 This patch removes mmap support because it doesn't have any benefit.
cladisch
parents: 17575
diff changeset
518 SND_PCM_ACCESS_RW_INTERLEAVED);
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
519 if (err < 0) {
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 28823
diff changeset
520 mp_msg(MSGT_AO,MSGL_ERR,MSGTR_AO_ALSA_UnableToSetAccessType,
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
521 snd_strerror(err));
26757
0fdf04b07ecb cosmetics: Remove pointless parentheses from return statements.
diego
parents: 24590
diff changeset
522 return 0;
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
523 }
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
524
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
525 /* workaround for nonsupported formats
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
526 sets default format to S16_LE if the given formats aren't supported */
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
527 if ((err = snd_pcm_hw_params_test_format(alsa_handler, alsa_hwparams,
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
528 alsa_format)) < 0)
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
529 {
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
530 mp_msg(MSGT_AO,MSGL_INFO,
20764
62bb5a46fdcb MSGTRs for ao_alsa.c
kraymer
parents: 20743
diff changeset
531 MSGTR_AO_ALSA_FormatNotSupportedByHardware, af_fmt2str_short(format));
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
532 alsa_format = SND_PCM_FORMAT_S16_LE;
30241
02b9c1a452e1 Add support for distinguishing between little- and big-endian SPDIF AC3
reimar
parents: 30237
diff changeset
533 if (AF_FORMAT_IS_AC3(ao_data.format))
02b9c1a452e1 Add support for distinguishing between little- and big-endian SPDIF AC3
reimar
parents: 30237
diff changeset
534 ao_data.format = AF_FORMAT_AC3_LE;
02b9c1a452e1 Add support for distinguishing between little- and big-endian SPDIF AC3
reimar
parents: 30237
diff changeset
535 else
14245
815f03b7cee5 removing AFMT_ dependancy
alex
parents: 14123
diff changeset
536 ao_data.format = AF_FORMAT_S16_LE;
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
537 }
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
538
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
539 if ((err = snd_pcm_hw_params_set_format(alsa_handler, alsa_hwparams,
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
540 alsa_format)) < 0)
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
541 {
20764
62bb5a46fdcb MSGTRs for ao_alsa.c
kraymer
parents: 20743
diff changeset
542 mp_msg(MSGT_AO,MSGL_ERR,MSGTR_AO_ALSA_UnableToSetFormat,
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
543 snd_strerror(err));
26757
0fdf04b07ecb cosmetics: Remove pointless parentheses from return statements.
diego
parents: 24590
diff changeset
544 return 0;
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
545 }
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
546
16308
41278ab73e9b set the nearest number of channels, return(0) upon errors
henry
parents: 14849
diff changeset
547 if ((err = snd_pcm_hw_params_set_channels_near(alsa_handler, alsa_hwparams,
41278ab73e9b set the nearest number of channels, return(0) upon errors
henry
parents: 14849
diff changeset
548 &ao_data.channels)) < 0)
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
549 {
20764
62bb5a46fdcb MSGTRs for ao_alsa.c
kraymer
parents: 20743
diff changeset
550 mp_msg(MSGT_AO,MSGL_ERR,MSGTR_AO_ALSA_UnableToSetChannels,
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
551 snd_strerror(err));
26757
0fdf04b07ecb cosmetics: Remove pointless parentheses from return statements.
diego
parents: 24590
diff changeset
552 return 0;
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
553 }
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
554
17849
ebebe97331af To avoid a bug in ALSA's rate plugin that causes spurious overruns, try
cladisch
parents: 17848
diff changeset
555 /* workaround for buggy rate plugin (should be fixed in ALSA 1.0.11)
ebebe97331af To avoid a bug in ALSA's rate plugin that causes spurious overruns, try
cladisch
parents: 17848
diff changeset
556 prefer our own resampler */
ebebe97331af To avoid a bug in ALSA's rate plugin that causes spurious overruns, try
cladisch
parents: 17848
diff changeset
557 #if SND_LIB_VERSION >= 0x010009
ebebe97331af To avoid a bug in ALSA's rate plugin that causes spurious overruns, try
cladisch
parents: 17848
diff changeset
558 if ((err = snd_pcm_hw_params_set_rate_resample(alsa_handler, alsa_hwparams,
ebebe97331af To avoid a bug in ALSA's rate plugin that causes spurious overruns, try
cladisch
parents: 17848
diff changeset
559 0)) < 0)
ebebe97331af To avoid a bug in ALSA's rate plugin that causes spurious overruns, try
cladisch
parents: 17848
diff changeset
560 {
20764
62bb5a46fdcb MSGTRs for ao_alsa.c
kraymer
parents: 20743
diff changeset
561 mp_msg(MSGT_AO,MSGL_ERR,MSGTR_AO_ALSA_UnableToDisableResampling,
17849
ebebe97331af To avoid a bug in ALSA's rate plugin that causes spurious overruns, try
cladisch
parents: 17848
diff changeset
562 snd_strerror(err));
26757
0fdf04b07ecb cosmetics: Remove pointless parentheses from return statements.
diego
parents: 24590
diff changeset
563 return 0;
17849
ebebe97331af To avoid a bug in ALSA's rate plugin that causes spurious overruns, try
cladisch
parents: 17848
diff changeset
564 }
ebebe97331af To avoid a bug in ALSA's rate plugin that causes spurious overruns, try
cladisch
parents: 17848
diff changeset
565 #endif
ebebe97331af To avoid a bug in ALSA's rate plugin that causes spurious overruns, try
cladisch
parents: 17848
diff changeset
566
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 28823
diff changeset
567 if ((err = snd_pcm_hw_params_set_rate_near(alsa_handler, alsa_hwparams,
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 28823
diff changeset
568 &ao_data.samplerate, NULL)) < 0)
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
569 {
20764
62bb5a46fdcb MSGTRs for ao_alsa.c
kraymer
parents: 20743
diff changeset
570 mp_msg(MSGT_AO,MSGL_ERR,MSGTR_AO_ALSA_UnableToSetSamplerate2,
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
571 snd_strerror(err));
26757
0fdf04b07ecb cosmetics: Remove pointless parentheses from return statements.
diego
parents: 24590
diff changeset
572 return 0;
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
573 }
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
574
30237
9584cf67cea0 Use af_fmt2bits, it should give more sensible values than snd_pcm_format_physical_width,
reimar
parents: 30234
diff changeset
575 bytes_per_sample = af_fmt2bits(ao_data.format) / 8;
17570
401521ec0d61 This replaces the hardcoded numbers for the sample format widths with a
cladisch
parents: 17566
diff changeset
576 bytes_per_sample *= ao_data.channels;
401521ec0d61 This replaces the hardcoded numbers for the sample format widths with a
cladisch
parents: 17566
diff changeset
577 ao_data.bps = ao_data.samplerate * bytes_per_sample;
16309
aa7829aa8428 reordered bps calculation
henry
parents: 16308
diff changeset
578
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 28823
diff changeset
579 if ((err = snd_pcm_hw_params_set_buffer_time_near(alsa_handler, alsa_hwparams,
17575
9972b744fd98 Small fixes: make all global variables static, remove some unused
cladisch
parents: 17574
diff changeset
580 &alsa_buffer_time, NULL)) < 0)
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
581 {
20764
62bb5a46fdcb MSGTRs for ao_alsa.c
kraymer
parents: 20743
diff changeset
582 mp_msg(MSGT_AO,MSGL_ERR,MSGTR_AO_ALSA_UnableToSetBufferTimeNear,
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
583 snd_strerror(err));
26757
0fdf04b07ecb cosmetics: Remove pointless parentheses from return statements.
diego
parents: 24590
diff changeset
584 return 0;
29507
fc8416cffdcd Use a buffer of about half a second, instead of sizing it to have
cladisch
parents: 29436
diff changeset
585 }
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
586
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
587 if ((err = snd_pcm_hw_params_set_periods_near(alsa_handler, alsa_hwparams,
17575
9972b744fd98 Small fixes: make all global variables static, remove some unused
cladisch
parents: 17574
diff changeset
588 &alsa_fragcount, NULL)) < 0) {
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 28823
diff changeset
589 mp_msg(MSGT_AO,MSGL_ERR,MSGTR_AO_ALSA_UnableToSetPeriods,
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
590 snd_strerror(err));
19887
1259d6add8e6 When one of the PCM configuration function in init() fails, abort
cladisch
parents: 18009
diff changeset
591 return 0;
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
592 }
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
593
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
594 /* finally install hardware parameters */
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
595 if ((err = snd_pcm_hw_params(alsa_handler, alsa_hwparams)) < 0)
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
596 {
20764
62bb5a46fdcb MSGTRs for ao_alsa.c
kraymer
parents: 20743
diff changeset
597 mp_msg(MSGT_AO,MSGL_ERR,MSGTR_AO_ALSA_UnableToSetHwParameters,
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
598 snd_strerror(err));
19887
1259d6add8e6 When one of the PCM configuration function in init() fails, abort
cladisch
parents: 18009
diff changeset
599 return 0;
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
600 }
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
601 // end setting hw-params
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
602
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
603
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
604 // gets buffersize for control
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
605 if ((err = snd_pcm_hw_params_get_buffer_size(alsa_hwparams, &bufsize)) < 0)
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
606 {
20764
62bb5a46fdcb MSGTRs for ao_alsa.c
kraymer
parents: 20743
diff changeset
607 mp_msg(MSGT_AO,MSGL_ERR,MSGTR_AO_ALSA_UnableToGetBufferSize, snd_strerror(err));
19887
1259d6add8e6 When one of the PCM configuration function in init() fails, abort
cladisch
parents: 18009
diff changeset
608 return 0;
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
609 }
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
610 else {
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
611 ao_data.buffersize = bufsize * bytes_per_sample;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
612 mp_msg(MSGT_AO,MSGL_V,"alsa-init: got buffersize=%i\n", ao_data.buffersize);
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
613 }
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
614
17620
dd4db8c43d92 This changes the software parameters to be more compatible with the
cladisch
parents: 17619
diff changeset
615 if ((err = snd_pcm_hw_params_get_period_size(alsa_hwparams, &chunk_size, NULL)) < 0) {
20764
62bb5a46fdcb MSGTRs for ao_alsa.c
kraymer
parents: 20743
diff changeset
616 mp_msg(MSGT_AO,MSGL_ERR,MSGTR_AO_ALSA_UnableToGetPeriodSize, snd_strerror(err));
19887
1259d6add8e6 When one of the PCM configuration function in init() fails, abort
cladisch
parents: 18009
diff changeset
617 return 0;
17620
dd4db8c43d92 This changes the software parameters to be more compatible with the
cladisch
parents: 17619
diff changeset
618 } else {
dd4db8c43d92 This changes the software parameters to be more compatible with the
cladisch
parents: 17619
diff changeset
619 mp_msg(MSGT_AO,MSGL_V,"alsa-init: got period size %li\n", chunk_size);
dd4db8c43d92 This changes the software parameters to be more compatible with the
cladisch
parents: 17619
diff changeset
620 }
dd4db8c43d92 This changes the software parameters to be more compatible with the
cladisch
parents: 17619
diff changeset
621 ao_data.outburst = chunk_size * bytes_per_sample;
dd4db8c43d92 This changes the software parameters to be more compatible with the
cladisch
parents: 17619
diff changeset
622
dd4db8c43d92 This changes the software parameters to be more compatible with the
cladisch
parents: 17619
diff changeset
623 /* setting software parameters */
dd4db8c43d92 This changes the software parameters to be more compatible with the
cladisch
parents: 17619
diff changeset
624 if ((err = snd_pcm_sw_params_current(alsa_handler, alsa_swparams)) < 0) {
20764
62bb5a46fdcb MSGTRs for ao_alsa.c
kraymer
parents: 20743
diff changeset
625 mp_msg(MSGT_AO,MSGL_ERR,MSGTR_AO_ALSA_UnableToGetSwParameters,
17620
dd4db8c43d92 This changes the software parameters to be more compatible with the
cladisch
parents: 17619
diff changeset
626 snd_strerror(err));
dd4db8c43d92 This changes the software parameters to be more compatible with the
cladisch
parents: 17619
diff changeset
627 return 0;
dd4db8c43d92 This changes the software parameters to be more compatible with the
cladisch
parents: 17619
diff changeset
628 }
18009
fb7888812f13 Add workarounds for old prerelease versions of alsa-lib 0.9.0 that did
cladisch
parents: 17849
diff changeset
629 #if SND_LIB_VERSION >= 0x000901
17620
dd4db8c43d92 This changes the software parameters to be more compatible with the
cladisch
parents: 17619
diff changeset
630 if ((err = snd_pcm_sw_params_get_boundary(alsa_swparams, &boundary)) < 0) {
20764
62bb5a46fdcb MSGTRs for ao_alsa.c
kraymer
parents: 20743
diff changeset
631 mp_msg(MSGT_AO,MSGL_ERR,MSGTR_AO_ALSA_UnableToGetBoundary,
17620
dd4db8c43d92 This changes the software parameters to be more compatible with the
cladisch
parents: 17619
diff changeset
632 snd_strerror(err));
dd4db8c43d92 This changes the software parameters to be more compatible with the
cladisch
parents: 17619
diff changeset
633 return 0;
dd4db8c43d92 This changes the software parameters to be more compatible with the
cladisch
parents: 17619
diff changeset
634 }
18009
fb7888812f13 Add workarounds for old prerelease versions of alsa-lib 0.9.0 that did
cladisch
parents: 17849
diff changeset
635 #else
fb7888812f13 Add workarounds for old prerelease versions of alsa-lib 0.9.0 that did
cladisch
parents: 17849
diff changeset
636 boundary = 0x7fffffff;
fb7888812f13 Add workarounds for old prerelease versions of alsa-lib 0.9.0 that did
cladisch
parents: 17849
diff changeset
637 #endif
17620
dd4db8c43d92 This changes the software parameters to be more compatible with the
cladisch
parents: 17619
diff changeset
638 /* start playing when one period has been written */
dd4db8c43d92 This changes the software parameters to be more compatible with the
cladisch
parents: 17619
diff changeset
639 if ((err = snd_pcm_sw_params_set_start_threshold(alsa_handler, alsa_swparams, chunk_size)) < 0) {
20764
62bb5a46fdcb MSGTRs for ao_alsa.c
kraymer
parents: 20743
diff changeset
640 mp_msg(MSGT_AO,MSGL_ERR,MSGTR_AO_ALSA_UnableToSetStartThreshold,
17620
dd4db8c43d92 This changes the software parameters to be more compatible with the
cladisch
parents: 17619
diff changeset
641 snd_strerror(err));
dd4db8c43d92 This changes the software parameters to be more compatible with the
cladisch
parents: 17619
diff changeset
642 return 0;
dd4db8c43d92 This changes the software parameters to be more compatible with the
cladisch
parents: 17619
diff changeset
643 }
dd4db8c43d92 This changes the software parameters to be more compatible with the
cladisch
parents: 17619
diff changeset
644 /* disable underrun reporting */
dd4db8c43d92 This changes the software parameters to be more compatible with the
cladisch
parents: 17619
diff changeset
645 if ((err = snd_pcm_sw_params_set_stop_threshold(alsa_handler, alsa_swparams, boundary)) < 0) {
20764
62bb5a46fdcb MSGTRs for ao_alsa.c
kraymer
parents: 20743
diff changeset
646 mp_msg(MSGT_AO,MSGL_ERR,MSGTR_AO_ALSA_UnableToSetStopThreshold,
17620
dd4db8c43d92 This changes the software parameters to be more compatible with the
cladisch
parents: 17619
diff changeset
647 snd_strerror(err));
dd4db8c43d92 This changes the software parameters to be more compatible with the
cladisch
parents: 17619
diff changeset
648 return 0;
dd4db8c43d92 This changes the software parameters to be more compatible with the
cladisch
parents: 17619
diff changeset
649 }
18009
fb7888812f13 Add workarounds for old prerelease versions of alsa-lib 0.9.0 that did
cladisch
parents: 17849
diff changeset
650 #if SND_LIB_VERSION >= 0x000901
17620
dd4db8c43d92 This changes the software parameters to be more compatible with the
cladisch
parents: 17619
diff changeset
651 /* play silence when there is an underrun */
dd4db8c43d92 This changes the software parameters to be more compatible with the
cladisch
parents: 17619
diff changeset
652 if ((err = snd_pcm_sw_params_set_silence_size(alsa_handler, alsa_swparams, boundary)) < 0) {
20764
62bb5a46fdcb MSGTRs for ao_alsa.c
kraymer
parents: 20743
diff changeset
653 mp_msg(MSGT_AO,MSGL_ERR,MSGTR_AO_ALSA_UnableToSetSilenceSize,
17620
dd4db8c43d92 This changes the software parameters to be more compatible with the
cladisch
parents: 17619
diff changeset
654 snd_strerror(err));
dd4db8c43d92 This changes the software parameters to be more compatible with the
cladisch
parents: 17619
diff changeset
655 return 0;
dd4db8c43d92 This changes the software parameters to be more compatible with the
cladisch
parents: 17619
diff changeset
656 }
18009
fb7888812f13 Add workarounds for old prerelease versions of alsa-lib 0.9.0 that did
cladisch
parents: 17849
diff changeset
657 #endif
17620
dd4db8c43d92 This changes the software parameters to be more compatible with the
cladisch
parents: 17619
diff changeset
658 if ((err = snd_pcm_sw_params(alsa_handler, alsa_swparams)) < 0) {
20764
62bb5a46fdcb MSGTRs for ao_alsa.c
kraymer
parents: 20743
diff changeset
659 mp_msg(MSGT_AO,MSGL_ERR,MSGTR_AO_ALSA_UnableToGetSwParameters,
17620
dd4db8c43d92 This changes the software parameters to be more compatible with the
cladisch
parents: 17619
diff changeset
660 snd_strerror(err));
dd4db8c43d92 This changes the software parameters to be more compatible with the
cladisch
parents: 17619
diff changeset
661 return 0;
dd4db8c43d92 This changes the software parameters to be more compatible with the
cladisch
parents: 17619
diff changeset
662 }
dd4db8c43d92 This changes the software parameters to be more compatible with the
cladisch
parents: 17619
diff changeset
663 /* end setting sw-params */
dd4db8c43d92 This changes the software parameters to be more compatible with the
cladisch
parents: 17619
diff changeset
664
20185
b6eed21e0535 slight overall verbosity reduction
diego
parents: 20020
diff changeset
665 mp_msg(MSGT_AO,MSGL_V,"alsa: %d Hz/%d channels/%d bpf/%d bytes buffer/%s\n",
27682
25245b3e962f Fix "format '%d' expects type 'int', but argument 6 has type 'size_t'" warning.
ranma
parents: 27680
diff changeset
666 ao_data.samplerate, ao_data.channels, (int)bytes_per_sample, ao_data.buffersize,
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
667 snd_pcm_format_description(alsa_format));
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
668
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
669 } // end switch alsa_handler (spdif)
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
670 alsa_can_pause = snd_pcm_hw_params_can_pause(alsa_hwparams);
26757
0fdf04b07ecb cosmetics: Remove pointless parentheses from return statements.
diego
parents: 24590
diff changeset
671 return 1;
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
672 } // end init
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
673
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
674
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
675 /* close audio device */
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
676 static void uninit(int immed)
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
677 {
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
678
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
679 if (alsa_handler) {
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
680 int err;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
681
14849
d313f591d1a4 aos should respect the immed uninit flag (quit immediatly vs waiting till file
reimar
parents: 14612
diff changeset
682 if (!immed)
d313f591d1a4 aos should respect the immed uninit flag (quit immediatly vs waiting till file
reimar
parents: 14612
diff changeset
683 snd_pcm_drain(alsa_handler);
d313f591d1a4 aos should respect the immed uninit flag (quit immediatly vs waiting till file
reimar
parents: 14612
diff changeset
684
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
685 if ((err = snd_pcm_close(alsa_handler)) < 0)
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
686 {
20764
62bb5a46fdcb MSGTRs for ao_alsa.c
kraymer
parents: 20743
diff changeset
687 mp_msg(MSGT_AO,MSGL_ERR,MSGTR_AO_ALSA_PcmCloseError, snd_strerror(err));
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
688 return;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
689 }
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
690 else {
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
691 alsa_handler = NULL;
20185
b6eed21e0535 slight overall verbosity reduction
diego
parents: 20020
diff changeset
692 mp_msg(MSGT_AO,MSGL_V,"alsa-uninit: pcm closed\n");
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
693 }
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
694 }
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
695 else {
20764
62bb5a46fdcb MSGTRs for ao_alsa.c
kraymer
parents: 20743
diff changeset
696 mp_msg(MSGT_AO,MSGL_ERR,MSGTR_AO_ALSA_NoHandlerDefined);
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
697 }
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
698 }
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
699
17566
f580a7755ac5 Patch by Stefan Huehner / stefan % huehner ! org \
rathann
parents: 17366
diff changeset
700 static void audio_pause(void)
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
701 {
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
702 int err;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
703
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
704 if (alsa_can_pause) {
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
705 if ((err = snd_pcm_pause(alsa_handler, 1)) < 0)
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
706 {
20764
62bb5a46fdcb MSGTRs for ao_alsa.c
kraymer
parents: 20743
diff changeset
707 mp_msg(MSGT_AO,MSGL_ERR,MSGTR_AO_ALSA_PcmPauseError, snd_strerror(err));
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
708 return;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
709 }
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
710 mp_msg(MSGT_AO,MSGL_V,"alsa-pause: pause supported by hardware\n");
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
711 } else {
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
712 if ((err = snd_pcm_drop(alsa_handler)) < 0)
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
713 {
20764
62bb5a46fdcb MSGTRs for ao_alsa.c
kraymer
parents: 20743
diff changeset
714 mp_msg(MSGT_AO,MSGL_ERR,MSGTR_AO_ALSA_PcmDropError, snd_strerror(err));
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
715 return;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
716 }
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
717 }
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
718 }
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
719
17566
f580a7755ac5 Patch by Stefan Huehner / stefan % huehner ! org \
rathann
parents: 17366
diff changeset
720 static void audio_resume(void)
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
721 {
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
722 int err;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
723
27680
a529f3763afa Make alsa resume after suspend to disk (would say 'file descriptor is in bad state' before this change)
ranma
parents: 27281
diff changeset
724 if (snd_pcm_state(alsa_handler) == SND_PCM_STATE_SUSPENDED) {
a529f3763afa Make alsa resume after suspend to disk (would say 'file descriptor is in bad state' before this change)
ranma
parents: 27281
diff changeset
725 mp_msg(MSGT_AO,MSGL_INFO,MSGTR_AO_ALSA_PcmInSuspendModeTryingResume);
a529f3763afa Make alsa resume after suspend to disk (would say 'file descriptor is in bad state' before this change)
ranma
parents: 27281
diff changeset
726 while ((err = snd_pcm_resume(alsa_handler)) == -EAGAIN) sleep(1);
a529f3763afa Make alsa resume after suspend to disk (would say 'file descriptor is in bad state' before this change)
ranma
parents: 27281
diff changeset
727 }
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
728 if (alsa_can_pause) {
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
729 if ((err = snd_pcm_pause(alsa_handler, 0)) < 0)
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
730 {
20764
62bb5a46fdcb MSGTRs for ao_alsa.c
kraymer
parents: 20743
diff changeset
731 mp_msg(MSGT_AO,MSGL_ERR,MSGTR_AO_ALSA_PcmResumeError, snd_strerror(err));
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
732 return;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
733 }
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
734 mp_msg(MSGT_AO,MSGL_V,"alsa-resume: resume supported by hardware\n");
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
735 } else {
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
736 if ((err = snd_pcm_prepare(alsa_handler)) < 0)
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
737 {
20764
62bb5a46fdcb MSGTRs for ao_alsa.c
kraymer
parents: 20743
diff changeset
738 mp_msg(MSGT_AO,MSGL_ERR,MSGTR_AO_ALSA_PcmPrepareError, snd_strerror(err));
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
739 return;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
740 }
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
741 }
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
742 }
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
743
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
744 /* stop playing and empty buffers (for seeking/pause) */
17566
f580a7755ac5 Patch by Stefan Huehner / stefan % huehner ! org \
rathann
parents: 17366
diff changeset
745 static void reset(void)
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
746 {
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
747 int err;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
748
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
749 if ((err = snd_pcm_drop(alsa_handler)) < 0)
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
750 {
20764
62bb5a46fdcb MSGTRs for ao_alsa.c
kraymer
parents: 20743
diff changeset
751 mp_msg(MSGT_AO,MSGL_ERR,MSGTR_AO_ALSA_PcmPrepareError, snd_strerror(err));
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
752 return;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
753 }
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
754 if ((err = snd_pcm_prepare(alsa_handler)) < 0)
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
755 {
20764
62bb5a46fdcb MSGTRs for ao_alsa.c
kraymer
parents: 20743
diff changeset
756 mp_msg(MSGT_AO,MSGL_ERR,MSGTR_AO_ALSA_PcmPrepareError, snd_strerror(err));
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
757 return;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
758 }
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
759 return;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
760 }
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
761
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
762 /*
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
763 plays 'len' bytes of 'data'
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
764 returns: number of bytes played
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
765 modified last at 29.06.02 by jp
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
766 thanxs for marius <marius@rospot.com> for giving us the light ;)
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
767 */
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
768
17617
adfab82139c0 After removing play_mmap(), the play() function just unconditionally
cladisch
parents: 17616
diff changeset
769 static int play(void* data, int len, int flags)
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
770 {
29706
54f54530a4d3 Make the ao_alsa play function always process a multiple of ao_data.outburst
reimar
parents: 29586
diff changeset
771 int num_frames;
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
772 snd_pcm_sframes_t res = 0;
29706
54f54530a4d3 Make the ao_alsa play function always process a multiple of ao_data.outburst
reimar
parents: 29586
diff changeset
773 if (!(flags & AOPLAY_FINAL_CHUNK))
54f54530a4d3 Make the ao_alsa play function always process a multiple of ao_data.outburst
reimar
parents: 29586
diff changeset
774 len = len / ao_data.outburst * ao_data.outburst;
54f54530a4d3 Make the ao_alsa play function always process a multiple of ao_data.outburst
reimar
parents: 29586
diff changeset
775 num_frames = len / bytes_per_sample;
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
776
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
777 //mp_msg(MSGT_AO,MSGL_ERR,"alsa-play: frames=%i, len=%i\n",num_frames,len);
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
778
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
779 if (!alsa_handler) {
20764
62bb5a46fdcb MSGTRs for ao_alsa.c
kraymer
parents: 20743
diff changeset
780 mp_msg(MSGT_AO,MSGL_ERR,MSGTR_AO_ALSA_DeviceConfigurationError);
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
781 return 0;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
782 }
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
783
17621
d9c518932302 Fix the error handling in the play() function: add a handler for EINTR,
cladisch
parents: 17620
diff changeset
784 if (num_frames == 0)
d9c518932302 Fix the error handling in the play() function: add a handler for EINTR,
cladisch
parents: 17620
diff changeset
785 return 0;
d9c518932302 Fix the error handling in the play() function: add a handler for EINTR,
cladisch
parents: 17620
diff changeset
786
d9c518932302 Fix the error handling in the play() function: add a handler for EINTR,
cladisch
parents: 17620
diff changeset
787 do {
d9c518932302 Fix the error handling in the play() function: add a handler for EINTR,
cladisch
parents: 17620
diff changeset
788 res = snd_pcm_writei(alsa_handler, data, num_frames);
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
789
17621
d9c518932302 Fix the error handling in the play() function: add a handler for EINTR,
cladisch
parents: 17620
diff changeset
790 if (res == -EINTR) {
d9c518932302 Fix the error handling in the play() function: add a handler for EINTR,
cladisch
parents: 17620
diff changeset
791 /* nothing to do */
d9c518932302 Fix the error handling in the play() function: add a handler for EINTR,
cladisch
parents: 17620
diff changeset
792 res = 0;
d9c518932302 Fix the error handling in the play() function: add a handler for EINTR,
cladisch
parents: 17620
diff changeset
793 }
d9c518932302 Fix the error handling in the play() function: add a handler for EINTR,
cladisch
parents: 17620
diff changeset
794 else if (res == -ESTRPIPE) { /* suspend */
20764
62bb5a46fdcb MSGTRs for ao_alsa.c
kraymer
parents: 20743
diff changeset
795 mp_msg(MSGT_AO,MSGL_INFO,MSGTR_AO_ALSA_PcmInSuspendModeTryingResume);
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
796 while ((res = snd_pcm_resume(alsa_handler)) == -EAGAIN)
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
797 sleep(1);
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
798 }
17621
d9c518932302 Fix the error handling in the play() function: add a handler for EINTR,
cladisch
parents: 17620
diff changeset
799 if (res < 0) {
20764
62bb5a46fdcb MSGTRs for ao_alsa.c
kraymer
parents: 20743
diff changeset
800 mp_msg(MSGT_AO,MSGL_ERR,MSGTR_AO_ALSA_WriteError, snd_strerror(res));
62bb5a46fdcb MSGTRs for ao_alsa.c
kraymer
parents: 20743
diff changeset
801 mp_msg(MSGT_AO,MSGL_INFO,MSGTR_AO_ALSA_TryingToResetSoundcard);
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
802 if ((res = snd_pcm_prepare(alsa_handler)) < 0) {
20764
62bb5a46fdcb MSGTRs for ao_alsa.c
kraymer
parents: 20743
diff changeset
803 mp_msg(MSGT_AO,MSGL_ERR,MSGTR_AO_ALSA_PcmPrepareError, snd_strerror(res));
26757
0fdf04b07ecb cosmetics: Remove pointless parentheses from return statements.
diego
parents: 24590
diff changeset
804 return 0;
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
805 break;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
806 }
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
807 }
17621
d9c518932302 Fix the error handling in the play() function: add a handler for EINTR,
cladisch
parents: 17620
diff changeset
808 } while (res == 0);
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
809
17621
d9c518932302 Fix the error handling in the play() function: add a handler for EINTR,
cladisch
parents: 17620
diff changeset
810 return res < 0 ? res : res * bytes_per_sample;
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
811 }
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
812
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
813 /* how many byes are free in the buffer */
17566
f580a7755ac5 Patch by Stefan Huehner / stefan % huehner ! org \
rathann
parents: 17366
diff changeset
814 static int get_space(void)
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
815 {
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
816 snd_pcm_status_t *status;
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
817 int ret;
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 28823
diff changeset
818
12747
60c75c601bf1 string, alloca etc. fixes
joyping
parents: 12570
diff changeset
819 snd_pcm_status_alloca(&status);
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 28823
diff changeset
820
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
821 if ((ret = snd_pcm_status(alsa_handler, status)) < 0)
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
822 {
20764
62bb5a46fdcb MSGTRs for ao_alsa.c
kraymer
parents: 20743
diff changeset
823 mp_msg(MSGT_AO,MSGL_ERR,MSGTR_AO_ALSA_CannotGetPcmStatus, snd_strerror(ret));
26757
0fdf04b07ecb cosmetics: Remove pointless parentheses from return statements.
diego
parents: 24590
diff changeset
824 return 0;
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
825 }
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 28823
diff changeset
826
17572
580dc69d69bf Fix get_space(): we don't need to differentiate between the various PCM
cladisch
parents: 17571
diff changeset
827 ret = snd_pcm_status_get_avail(status) * bytes_per_sample;
24590
2c238fa777ff ao_alsa: Fix get_space() return values larger than buffersize
uau
parents: 22166
diff changeset
828 if (ret > ao_data.buffersize) // Buffer underrun?
2c238fa777ff ao_alsa: Fix get_space() return values larger than buffersize
uau
parents: 22166
diff changeset
829 ret = ao_data.buffersize;
26757
0fdf04b07ecb cosmetics: Remove pointless parentheses from return statements.
diego
parents: 24590
diff changeset
830 return ret;
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
831 }
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
832
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
833 /* delay in seconds between first and last sample in buffer */
17566
f580a7755ac5 Patch by Stefan Huehner / stefan % huehner ! org \
rathann
parents: 17366
diff changeset
834 static float get_delay(void)
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
835 {
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
836 if (alsa_handler) {
17573
8921544f4114 Simplify get_delay(): we don't need to get the complete PCM status but
cladisch
parents: 17572
diff changeset
837 snd_pcm_sframes_t delay;
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 28823
diff changeset
838
17573
8921544f4114 Simplify get_delay(): we don't need to get the complete PCM status but
cladisch
parents: 17572
diff changeset
839 if (snd_pcm_delay(alsa_handler, &delay) < 0)
8921544f4114 Simplify get_delay(): we don't need to get the complete PCM status but
cladisch
parents: 17572
diff changeset
840 return 0;
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 28823
diff changeset
841
17573
8921544f4114 Simplify get_delay(): we don't need to get the complete PCM status but
cladisch
parents: 17572
diff changeset
842 if (delay < 0) {
8921544f4114 Simplify get_delay(): we don't need to get the complete PCM status but
cladisch
parents: 17572
diff changeset
843 /* underrun - move the application pointer forward to catch up */
8921544f4114 Simplify get_delay(): we don't need to get the complete PCM status but
cladisch
parents: 17572
diff changeset
844 #if SND_LIB_VERSION >= 0x000901 /* snd_pcm_forward() exists since 0.9.0rc8 */
8921544f4114 Simplify get_delay(): we don't need to get the complete PCM status but
cladisch
parents: 17572
diff changeset
845 snd_pcm_forward(alsa_handler, -delay);
8921544f4114 Simplify get_delay(): we don't need to get the complete PCM status but
cladisch
parents: 17572
diff changeset
846 #endif
8921544f4114 Simplify get_delay(): we don't need to get the complete PCM status but
cladisch
parents: 17572
diff changeset
847 delay = 0;
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
848 }
17573
8921544f4114 Simplify get_delay(): we don't need to get the complete PCM status but
cladisch
parents: 17572
diff changeset
849 return (float)delay / (float)ao_data.samplerate;
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
850 } else {
26757
0fdf04b07ecb cosmetics: Remove pointless parentheses from return statements.
diego
parents: 24590
diff changeset
851 return 0;
12465
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
852 }
dea4857df1c6 alsa9/1.x merge, now with api_compat-definition
joyping
parents:
diff changeset
853 }