2 * Alsa MIXER Wine Driver for Linux
3 * Very loosely based on wineoss mixer driver
5 * Copyright 2007 Maarten Lankhorst
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 #include "wine/port.h"
35 #ifdef HAVE_SYS_IOCTL_H
36 # include <sys/ioctl.h>
39 #define NONAMELESSUNION
40 #define NONAMELESSSTRUCT
50 #include "wine/unicode.h"
51 #include "wine/debug.h"
53 WINE_DEFAULT_DEBUG_CHANNEL(mixer
);
57 #define WINE_MIXER_MANUF_ID 0xAA
58 #define WINE_MIXER_PRODUCT_ID 0x55
59 #define WINE_MIXER_VERSION 0x0100
62 * In windows it seems to be required for all controls to have a volume switch
63 * In alsa that's optional
65 * I assume for playback controls, that there is always a playback volume switch available
68 * For capture controls, it is needed that there is a capture switch and a volume switch,
69 * It doesn't matter whether it is a playback volume switch or a capture volume switch.
70 * The code will first try to get/adjust capture volume, if that fails it tries playback volume
71 * It is not pretty, but under my 3 test cards it seems that there is no other choice:
72 * Most capture controls don't have a capture volume setting
74 * MUX means that only capture source can be exclusively selected,
75 * MIXER means that multiple sources can be selected simultaneously.
78 static const char * getMessage(UINT uMsg
)
80 #define MSG_TO_STR(x) case x: return #x;
82 MSG_TO_STR(DRVM_INIT
);
83 MSG_TO_STR(DRVM_EXIT
);
84 MSG_TO_STR(DRVM_ENABLE
);
85 MSG_TO_STR(DRVM_DISABLE
);
86 MSG_TO_STR(MXDM_GETDEVCAPS
);
87 MSG_TO_STR(MXDM_GETLINEINFO
);
88 MSG_TO_STR(MXDM_GETNUMDEVS
);
89 MSG_TO_STR(MXDM_OPEN
);
90 MSG_TO_STR(MXDM_CLOSE
);
91 MSG_TO_STR(MXDM_GETLINECONTROLS
);
92 MSG_TO_STR(MXDM_GETCONTROLDETAILS
);
93 MSG_TO_STR(MXDM_SETCONTROLDETAILS
);
97 return wine_dbg_sprintf("UNKNOWN(%08x)", uMsg
);
100 static const char * getControlType(DWORD dwControlType
)
102 #define TYPE_TO_STR(x) case x: return #x;
103 switch (dwControlType
) {
104 TYPE_TO_STR(MIXERCONTROL_CONTROLTYPE_CUSTOM
);
105 TYPE_TO_STR(MIXERCONTROL_CONTROLTYPE_BOOLEANMETER
);
106 TYPE_TO_STR(MIXERCONTROL_CONTROLTYPE_SIGNEDMETER
);
107 TYPE_TO_STR(MIXERCONTROL_CONTROLTYPE_PEAKMETER
);
108 TYPE_TO_STR(MIXERCONTROL_CONTROLTYPE_UNSIGNEDMETER
);
109 TYPE_TO_STR(MIXERCONTROL_CONTROLTYPE_BOOLEAN
);
110 TYPE_TO_STR(MIXERCONTROL_CONTROLTYPE_ONOFF
);
111 TYPE_TO_STR(MIXERCONTROL_CONTROLTYPE_MUTE
);
112 TYPE_TO_STR(MIXERCONTROL_CONTROLTYPE_MONO
);
113 TYPE_TO_STR(MIXERCONTROL_CONTROLTYPE_LOUDNESS
);
114 TYPE_TO_STR(MIXERCONTROL_CONTROLTYPE_STEREOENH
);
115 TYPE_TO_STR(MIXERCONTROL_CONTROLTYPE_BASS_BOOST
);
116 TYPE_TO_STR(MIXERCONTROL_CONTROLTYPE_BUTTON
);
117 TYPE_TO_STR(MIXERCONTROL_CONTROLTYPE_DECIBELS
);
118 TYPE_TO_STR(MIXERCONTROL_CONTROLTYPE_SIGNED
);
119 TYPE_TO_STR(MIXERCONTROL_CONTROLTYPE_UNSIGNED
);
120 TYPE_TO_STR(MIXERCONTROL_CONTROLTYPE_PERCENT
);
121 TYPE_TO_STR(MIXERCONTROL_CONTROLTYPE_SLIDER
);
122 TYPE_TO_STR(MIXERCONTROL_CONTROLTYPE_PAN
);
123 TYPE_TO_STR(MIXERCONTROL_CONTROLTYPE_QSOUNDPAN
);
124 TYPE_TO_STR(MIXERCONTROL_CONTROLTYPE_FADER
);
125 TYPE_TO_STR(MIXERCONTROL_CONTROLTYPE_VOLUME
);
126 TYPE_TO_STR(MIXERCONTROL_CONTROLTYPE_BASS
);
127 TYPE_TO_STR(MIXERCONTROL_CONTROLTYPE_TREBLE
);
128 TYPE_TO_STR(MIXERCONTROL_CONTROLTYPE_EQUALIZER
);
129 TYPE_TO_STR(MIXERCONTROL_CONTROLTYPE_SINGLESELECT
);
130 TYPE_TO_STR(MIXERCONTROL_CONTROLTYPE_MUX
);
131 TYPE_TO_STR(MIXERCONTROL_CONTROLTYPE_MULTIPLESELECT
);
132 TYPE_TO_STR(MIXERCONTROL_CONTROLTYPE_MIXER
);
133 TYPE_TO_STR(MIXERCONTROL_CONTROLTYPE_MICROTIME
);
134 TYPE_TO_STR(MIXERCONTROL_CONTROLTYPE_MILLITIME
);
137 return wine_dbg_sprintf("UNKNOWN(%08x)", dwControlType
);
140 /* A simple declaration of a line control
141 * These are each of the channels that show up
143 typedef struct line
{
144 /* Name we present to outside world */
145 WCHAR name
[MAXPNAMELEN
];
151 snd_mixer_elem_t
*elem
;
154 /* A control structure, with toggle enabled switch
155 * Control structures control volume, muted, which capture source
157 typedef struct control
{
166 WCHAR mixername
[MAXPNAMELEN
];
169 LPDRVCALLBACK callback
;
170 DWORD_PTR callbackpriv
;
177 #define MAX_MIXERS 32
178 #define CONTROLSPERLINE 3
182 static int cards
= 0;
183 static mixer mixdev
[MAX_MIXERS
];
184 static HANDLE thread
;
185 static int elem_callback(snd_mixer_elem_t
*elem
, unsigned int mask
);
186 static DWORD WINAPI
ALSA_MixerPollThread(LPVOID lParam
);
187 static CRITICAL_SECTION elem_crst
;
188 static int msg_pipe
[2];
191 /* found channel names in alsa lib, alsa api doesn't have another way for this
192 * map name -> componenttype, worst case we get a wrong componenttype which is
196 static const struct mixerlinetype
{
197 const char *name
; DWORD cmpt
;
199 { "Master", MIXERLINE_COMPONENTTYPE_DST_SPEAKERS
, },
200 { "Capture", MIXERLINE_COMPONENTTYPE_DST_WAVEIN
, },
201 { "PCM", MIXERLINE_COMPONENTTYPE_SRC_WAVEOUT
, },
202 { "PC Speaker", MIXERLINE_COMPONENTTYPE_SRC_PCSPEAKER
, },
203 { "Synth", MIXERLINE_COMPONENTTYPE_SRC_SYNTHESIZER
, },
204 { "Headphone", MIXERLINE_COMPONENTTYPE_DST_HEADPHONES
, },
205 { "Mic", MIXERLINE_COMPONENTTYPE_SRC_MICROPHONE
, },
206 { "Aux", MIXERLINE_COMPONENTTYPE_SRC_UNDEFINED
, },
207 { "CD", MIXERLINE_COMPONENTTYPE_SRC_COMPACTDISC
, },
208 { "Line", MIXERLINE_COMPONENTTYPE_SRC_LINE
, },
209 { "Phone", MIXERLINE_COMPONENTTYPE_SRC_TELEPHONE
, },
210 { "Digital", MIXERLINE_COMPONENTTYPE_SRC_MICROPHONE
, },
211 { "Front Mic", MIXERLINE_COMPONENTTYPE_SRC_MICROPHONE
, },
214 /* Map name to MIXERLINE_COMPONENTTYPE_XXX */
215 static int getcomponenttype(const char *name
)
218 for (x
=0; x
< sizeof(converttable
)/sizeof(converttable
[0]); ++x
)
219 if (!strcasecmp(name
, converttable
[x
].name
))
221 TRACE("%d -> %s\n", x
, name
);
222 return converttable
[x
].cmpt
;
224 WARN("Unknown mixer name %s, probably harmless\n", name
);
225 return MIXERLINE_COMPONENTTYPE_SRC_UNDEFINED
;
228 /* Is this control suited for showing up? */
229 static int blacklisted(snd_mixer_elem_t
*elem
)
231 const char *name
= snd_mixer_selem_get_name(elem
);
234 if (!snd_mixer_selem_has_playback_volume(elem
) &&
235 !snd_mixer_selem_has_capture_volume(elem
))
238 TRACE("%s: %x\n", name
, blisted
);
242 static void fillcontrols(mixer
*mmixer
)
245 for (id
= 0; id
< mmixer
->chans
; ++id
)
247 line
*mline
= &mmixer
->lines
[id
];
248 int ofs
= CONTROLSPERLINE
* id
;
252 TRACE("Filling control %d\n", id
);
253 if (id
== 1 && !mline
->elem
)
256 if (mline
->capt
&& snd_mixer_selem_has_capture_volume(mline
->elem
))
257 snd_mixer_selem_get_capture_volume_range(mline
->elem
, &min
, &max
);
259 snd_mixer_selem_get_playback_volume_range(mline
->elem
, &min
, &max
);
261 /* (!snd_mixer_selem_has_playback_volume(elem) || snd_mixer_selem_has_capture_volume(elem)) */
262 /* Volume, always enabled by definition of blacklisted channels */
263 mmixer
->controls
[ofs
].enabled
= 1;
264 mmixer
->controls
[ofs
].c
.cbStruct
= sizeof(mmixer
->controls
[ofs
].c
);
265 mmixer
->controls
[ofs
].c
.dwControlType
= MIXERCONTROL_CONTROLTYPE_VOLUME
;
266 mmixer
->controls
[ofs
].c
.dwControlID
= ofs
;
267 mmixer
->controls
[ofs
].c
.Bounds
.s1
.dwMinimum
= 0;
268 mmixer
->controls
[ofs
].c
.Bounds
.s1
.dwMaximum
= 65535;
269 mmixer
->controls
[ofs
].c
.Metrics
.cSteps
= 65536/(max
-min
);
271 if ((id
== 1 && snd_mixer_selem_has_capture_switch(mline
->elem
)) ||
272 (!mline
->capt
&& snd_mixer_selem_has_playback_switch(mline
->elem
)))
273 { /* MUTE button optional, main capture channel should have one too */
274 mmixer
->controls
[ofs
+OFS_MUTE
].enabled
= 1;
275 mmixer
->controls
[ofs
+OFS_MUTE
].c
.cbStruct
= sizeof(mmixer
->controls
[ofs
].c
);
276 mmixer
->controls
[ofs
+OFS_MUTE
].c
.dwControlType
= MIXERCONTROL_CONTROLTYPE_MUTE
;
277 mmixer
->controls
[ofs
+OFS_MUTE
].c
.dwControlID
= ofs
+OFS_MUTE
;
278 mmixer
->controls
[ofs
+OFS_MUTE
].c
.Bounds
.s1
.dwMaximum
= 1;
281 if (mline
->capt
&& snd_mixer_selem_has_capture_switch_exclusive(mline
->elem
))
282 mmixer
->controls
[CONTROLSPERLINE
+OFS_MUX
].c
.dwControlType
= MIXERCONTROL_CONTROLTYPE_MUX
;
285 { /* Capture select, in case cMultipleItems is 0, it means capture is disabled anyway */
286 mmixer
->controls
[ofs
+OFS_MUX
].enabled
= 1;
287 mmixer
->controls
[ofs
+OFS_MUX
].c
.cbStruct
= sizeof(mmixer
->controls
[ofs
].c
);
288 mmixer
->controls
[ofs
+OFS_MUX
].c
.dwControlType
= MIXERCONTROL_CONTROLTYPE_MIXER
;
289 mmixer
->controls
[ofs
+OFS_MUX
].c
.dwControlID
= ofs
+OFS_MUX
;
290 mmixer
->controls
[ofs
+OFS_MUX
].c
.fdwControl
= MIXERCONTROL_CONTROLF_MULTIPLE
;
292 for (x
= 0; x
<mmixer
->chans
; ++x
)
293 if (x
!= id
&& mmixer
->lines
[x
].dst
== id
)
294 ++(mmixer
->controls
[ofs
+OFS_MUX
].c
.cMultipleItems
);
295 if (!mmixer
->controls
[ofs
+OFS_MUX
].c
.cMultipleItems
)
296 mmixer
->controls
[ofs
+OFS_MUX
].enabled
= 0;
298 mmixer
->controls
[ofs
+OFS_MUX
].c
.Bounds
.s1
.dwMaximum
= mmixer
->controls
[ofs
+OFS_MUX
].c
.cMultipleItems
- 1;
299 mmixer
->controls
[ofs
+OFS_MUX
].c
.Metrics
.cSteps
= mmixer
->controls
[ofs
+OFS_MUX
].c
.cMultipleItems
;
301 for (x
=0; x
<CONTROLSPERLINE
; ++x
)
303 lstrcpynW(mmixer
->controls
[ofs
+x
].c
.szShortName
, mline
->name
, sizeof(mmixer
->controls
[ofs
+x
].c
.szShortName
)/sizeof(WCHAR
));
304 lstrcpynW(mmixer
->controls
[ofs
+x
].c
.szName
, mline
->name
, sizeof(mmixer
->controls
[ofs
+x
].c
.szName
)/sizeof(WCHAR
));
309 /* get amount of channels for elem */
310 /* Officially we should keep capture/playback separated,
311 * but that's not going to work in the alsa api */
312 static int chans(mixer
*mmixer
, snd_mixer_elem_t
* elem
, DWORD capt
)
316 if (capt
&& snd_mixer_selem_has_capture_volume(elem
)) {
317 for (chn
= 0; chn
<= SND_MIXER_SCHN_LAST
; ++chn
)
318 if (snd_mixer_selem_has_capture_channel(elem
, chn
))
321 for (chn
= 0; chn
<= SND_MIXER_SCHN_LAST
; ++chn
)
322 if (snd_mixer_selem_has_playback_channel(elem
, chn
))
326 FIXME("Mixer channel %s was found for %s, but no channels were found? Wrong selection!\n", snd_mixer_selem_get_name(elem
), (snd_mixer_selem_has_playback_volume(elem
) ? "playback" : "capture"));
330 static void filllines(mixer
*mmixer
, snd_mixer_elem_t
*mastelem
, snd_mixer_elem_t
*captelem
, int capt
)
332 snd_mixer_elem_t
*elem
;
333 line
*mline
= mmixer
->lines
;
336 MultiByteToWideChar(CP_UNIXCP
, 0, snd_mixer_selem_get_name(mastelem
), -1, mline
->name
, sizeof(mline
->name
)/sizeof(WCHAR
));
337 mline
->component
= getcomponenttype(snd_mixer_selem_get_name(mastelem
));
340 mline
->elem
= mastelem
;
341 mline
->chans
= chans(mmixer
, mastelem
, 0);
343 snd_mixer_elem_set_callback(mastelem
, &elem_callback
);
344 snd_mixer_elem_set_callback_private(mastelem
, mmixer
);
347 * Note: since mmixer->dests = 1, it means only playback control is visible
348 * This makes sense, because if there are no capture sources capture control
349 * can't do anything and should be invisible */
351 /* Control 1 is reserved for capture even when not enabled */
355 MultiByteToWideChar(CP_UNIXCP
, 0, snd_mixer_selem_get_name(captelem
), -1, mline
->name
, sizeof(mline
->name
)/sizeof(WCHAR
));
356 mline
->component
= getcomponenttype(snd_mixer_selem_get_name(captelem
));
359 mline
->elem
= captelem
;
360 mline
->chans
= chans(mmixer
, captelem
, 1);
362 snd_mixer_elem_set_callback(captelem
, &elem_callback
);
363 snd_mixer_elem_set_callback_private(captelem
, mmixer
);
366 for (elem
= snd_mixer_first_elem(mmixer
->mix
); elem
; elem
= snd_mixer_elem_next(elem
))
367 if (elem
!= mastelem
&& elem
!= captelem
&& !blacklisted(elem
))
369 const char * name
= snd_mixer_selem_get_name(elem
);
370 DWORD comp
= getcomponenttype(name
);
372 if (snd_mixer_selem_has_playback_volume(elem
) &&
373 (snd_mixer_selem_has_capture_volume(elem
) || comp
!= MIXERLINE_COMPONENTTYPE_SRC_MICROPHONE
))
375 (++mline
)->component
= comp
;
376 MultiByteToWideChar(CP_UNIXCP
, 0, name
, -1, mline
->name
, MAXPNAMELEN
);
377 mline
->capt
= mline
->dst
= 0;
379 mline
->chans
= chans(mmixer
, elem
, 0);
384 if (capt
&& (snd_mixer_selem_has_capture_volume(elem
) || comp
== MIXERLINE_COMPONENTTYPE_SRC_MICROPHONE
))
386 (++mline
)->component
= comp
;
387 MultiByteToWideChar(CP_UNIXCP
, 0, name
, -1, mline
->name
, MAXPNAMELEN
);
388 mline
->capt
= mline
->dst
= 1;
390 mline
->chans
= chans(mmixer
, elem
, 1);
393 snd_mixer_elem_set_callback(elem
, &elem_callback
);
394 snd_mixer_elem_set_callback_private(elem
, mmixer
);
398 /* Windows api wants to have a 'master' device to which all slaves are attached
399 * There are 2 ones in this code:
400 * - 'Master', fall back to 'Headphone' if unavailable, and if that's not available 'PCM'
402 * Capture might not always be available, so should be prepared to be without if needed
405 static void ALSA_MixerInit(void)
408 snd_ctl_card_info_t
*info
;
410 info
= HeapAlloc( GetProcessHeap(), 0, snd_ctl_card_info_sizeof());
411 for (x
= 0; x
< MAX_MIXERS
; ++x
)
413 int card
, err
, capcontrols
= 0;
414 char cardind
[6], cardname
[10];
417 snd_mixer_elem_t
*elem
, *mastelem
= NULL
, *headelem
= NULL
, *captelem
= NULL
, *pcmelem
= NULL
;
419 memset(info
, 0, snd_ctl_card_info_sizeof());
420 memset(&mixdev
[mixnum
], 0, sizeof(*mixdev
));
421 snprintf(cardind
, sizeof(cardind
), "%d", x
);
422 card
= snd_card_get_index(cardind
);
426 snprintf(cardname
, sizeof(cardname
), "hw:%d", card
);
428 err
= snd_ctl_open(&ctl
, cardname
, 0);
431 WARN("Cannot open card: %s\n", snd_strerror(err
));
435 err
= snd_ctl_card_info(ctl
, info
);
438 WARN("Cannot get card info: %s\n", snd_strerror(err
));
443 MultiByteToWideChar(CP_UNIXCP
, 0, snd_ctl_card_info_get_name(info
), -1, mixdev
[mixnum
].mixername
, sizeof(mixdev
[mixnum
].mixername
)/sizeof(WCHAR
));
446 err
= snd_mixer_open(&mixdev
[mixnum
].mix
, 0);
449 WARN("Error occurred opening mixer: %s\n", snd_strerror(err
));
453 err
= snd_mixer_attach(mixdev
[mixnum
].mix
, cardname
);
457 err
= snd_mixer_selem_register(mixdev
[mixnum
].mix
, NULL
, NULL
);
461 err
= snd_mixer_load(mixdev
[mixnum
].mix
);
465 /* First, lets see what's available..
466 * If there are multiple Master or Captures, all except 1 will be added as slaves
468 for (elem
= snd_mixer_first_elem(mixdev
[mixnum
].mix
); elem
; elem
= snd_mixer_elem_next(elem
))
469 if (!strcasecmp(snd_mixer_selem_get_name(elem
), "Master") && !mastelem
)
471 else if (!strcasecmp(snd_mixer_selem_get_name(elem
), "Capture") && !captelem
)
473 else if (!blacklisted(elem
))
475 DWORD comp
= getcomponenttype(snd_mixer_selem_get_name(elem
));
478 /* Work around buggy drivers: Make this a capture control if the name is recognised as a microphone */
479 if (snd_mixer_selem_has_capture_volume(elem
))
481 else if (comp
== MIXERLINE_COMPONENTTYPE_SRC_MICROPHONE
)
487 if (!skip
&& snd_mixer_selem_has_playback_volume(elem
))
489 if (!strcasecmp(snd_mixer_selem_get_name(elem
), "Headphone") && !headelem
)
491 else if (!strcasecmp(snd_mixer_selem_get_name(elem
), "PCM") && !pcmelem
)
494 ++(mixdev
[mixnum
].chans
);
498 /* Add master channel, uncounted channels and an extra for capture */
499 mixdev
[mixnum
].chans
+= !!mastelem
+ !!headelem
+ !!pcmelem
+ 1;
501 /* If there is only 'Capture' and 'Master', this device is not worth it */
502 if (mixdev
[mixnum
].chans
== 2)
504 WARN("No channels found, skipping device!\n");
508 /* Master element can't have a capture control in this code, so
509 * if Headphone or PCM is promoted to master, unset its capture control */
510 if (headelem
&& !mastelem
)
512 /* Using 'Headphone' as master device */
514 capcontrols
-= !!snd_mixer_selem_has_capture_switch(mastelem
);
516 else if (pcmelem
&& !mastelem
)
518 /* Use 'PCM' as master device */
520 capcontrols
-= !!snd_mixer_selem_has_capture_switch(mastelem
);
524 /* If there is nothing sensible that can act as 'Master' control, something is wrong */
525 FIXME("No master control found on %s, disabling mixer\n", snd_ctl_card_info_get_name(info
));
529 if (!captelem
|| !capcontrols
)
531 /* Can't enable capture, so disabling it
532 * Note: capture control will still exist because
533 * dwLineID 0 and 1 are reserved for Master and Capture
535 WARN("No use enabling capture part of mixer, capture control found: %s, amount of capture controls: %d\n",
536 (!captelem
? "no" : "yes"), capcontrols
);
538 mixdev
[mixnum
].dests
= 1;
542 mixdev
[mixnum
].chans
+= capcontrols
;
543 mixdev
[mixnum
].dests
= 2;
546 mixdev
[mixnum
].lines
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(line
) * mixdev
[mixnum
].chans
);
547 mixdev
[mixnum
].controls
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(control
) * CONTROLSPERLINE
*mixdev
[mixnum
].chans
);
549 if (!mixdev
[mixnum
].lines
|| !mixdev
[mixnum
].controls
)
552 filllines(&mixdev
[mixnum
], mastelem
, captelem
, capcontrols
);
553 fillcontrols(&mixdev
[mixnum
]);
555 TRACE("%s: Amount of controls: %i/%i, name: %s\n", cardname
, mixdev
[mixnum
].dests
, mixdev
[mixnum
].chans
, debugstr_w(mixdev
[mixnum
].mixername
));
560 WARN("Error occurred initialising mixer: %s\n", snd_strerror(err
));
562 HeapFree(GetProcessHeap(), 0, mixdev
[mixnum
].lines
);
563 HeapFree(GetProcessHeap(), 0, mixdev
[mixnum
].controls
);
564 snd_mixer_close(mixdev
[mixnum
].mix
);
567 HeapFree( GetProcessHeap(), 0, info
);
569 /* There is no trouble with already assigning callbacks without initialising critsect:
570 * Callbacks only occur when snd_mixer_handle_events is called (only happens in thread)
572 InitializeCriticalSection(&elem_crst
);
573 elem_crst
.DebugInfo
->Spare
[0] = (DWORD_PTR
)(__FILE__
": ALSA_MIXER.elem_crst");
577 static void ALSA_MixerExit(void)
583 WARN("Callback thread still alive, terminating uncleanly, refcnt: %d\n", refcnt
);
584 /* Least we can do is making sure we're not in 'foreign' code */
585 EnterCriticalSection(&elem_crst
);
586 TerminateThread(thread
, 1);
588 LeaveCriticalSection(&elem_crst
);
591 TRACE("Cleaning up\n");
593 elem_crst
.DebugInfo
->Spare
[0] = 0;
594 DeleteCriticalSection(&elem_crst
);
595 for (x
= 0; x
< cards
; ++x
)
597 snd_mixer_close(mixdev
[x
].mix
);
598 HeapFree(GetProcessHeap(), 0, mixdev
[x
].lines
);
599 HeapFree(GetProcessHeap(), 0, mixdev
[x
].controls
);
604 static mixer
* MIX_GetMix(UINT wDevID
)
610 WARN("Invalid mixer id: %d\n", wDevID
);
614 mmixer
= &mixdev
[wDevID
];
618 /* Since alsa doesn't tell what exactly changed, just assume all affected controls changed */
619 static int elem_callback(snd_mixer_elem_t
*elem
, unsigned int type
)
621 mixer
*mmixer
= snd_mixer_elem_get_callback_private(elem
);
623 BOOL captchanged
= 0;
625 if (type
!= SND_CTL_EVENT_MASK_VALUE
)
630 EnterCriticalSection(&elem_crst
);
632 if (!mmixer
->callback
)
635 for (x
=0; x
<mmixer
->chans
; ++x
)
637 const int ofs
= CONTROLSPERLINE
*x
;
638 if (elem
!= mmixer
->lines
[x
].elem
)
641 if (mmixer
->lines
[x
].capt
)
644 TRACE("Found changed control %s\n", debugstr_w(mmixer
->lines
[x
].name
));
645 mmixer
->callback(mmixer
->hmx
, MM_MIXM_LINE_CHANGE
, mmixer
->callbackpriv
, x
, 0);
646 mmixer
->callback(mmixer
->hmx
, MM_MIXM_CONTROL_CHANGE
, mmixer
->callbackpriv
, ofs
, 0);
648 if (mmixer
->controls
[ofs
+OFS_MUTE
].enabled
)
649 mmixer
->callback(mmixer
->hmx
, MM_MIXM_CONTROL_CHANGE
, mmixer
->callbackpriv
, ofs
+OFS_MUTE
, 0);
652 mmixer
->callback(mmixer
->hmx
, MM_MIXM_CONTROL_CHANGE
, mmixer
->callbackpriv
, CONTROLSPERLINE
+OFS_MUX
, 0);
655 LeaveCriticalSection(&elem_crst
);
660 static DWORD WINAPI
ALSA_MixerPollThread(LPVOID lParam
)
662 struct pollfd
*pfds
= NULL
;
663 int x
, y
, err
, mcnt
, count
= 1;
665 TRACE("%p\n", lParam
);
667 for (x
= 0; x
< cards
; ++x
)
668 count
+= snd_mixer_poll_descriptors_count(mixdev
[x
].mix
);
670 TRACE("Counted %d descriptors\n", count
);
671 pfds
= HeapAlloc(GetProcessHeap(), 0, count
* sizeof(struct pollfd
));
675 WARN("Out of memory\n");
679 pfds
[0].fd
= msg_pipe
[0];
680 pfds
[0].events
= POLLIN
;
683 for (x
= 0; x
< cards
; ++x
)
684 y
+= snd_mixer_poll_descriptors(mixdev
[x
].mix
, &pfds
[y
], count
- y
);
686 while ((err
= poll(pfds
, (unsigned int) count
, -1)) >= 0 || errno
== EINTR
|| errno
== EAGAIN
)
688 if (pfds
[0].revents
& POLLIN
)
692 for (x
= y
= 0; x
< cards
; ++x
)
694 int j
, max
= snd_mixer_poll_descriptors_count(mixdev
[x
].mix
);
695 for (j
= 0; j
< max
; ++j
)
696 if (pfds
[mcnt
+j
].revents
)
698 y
+= snd_mixer_handle_events(mixdev
[x
].mix
);
704 TRACE("Handled %d events\n", y
);
708 TRACE("Shutting down\n");
709 HeapFree(GetProcessHeap(), 0, pfds
);
711 y
= read(msg_pipe
[0], &x
, sizeof(x
));
717 static DWORD
MIX_Open(UINT wDevID
, LPMIXEROPENDESC desc
, DWORD_PTR flags
)
719 mixer
*mmixer
= MIX_GetMix(wDevID
);
721 return MMSYSERR_BADDEVICEID
;
723 flags
&= CALLBACK_TYPEMASK
;
729 case CALLBACK_FUNCTION
:
733 FIXME("Unhandled callback type: %08lx\n", flags
& CALLBACK_TYPEMASK
);
734 return MIXERR_INVALVALUE
;
737 mmixer
->callback
= (LPDRVCALLBACK
)desc
->dwCallback
;
738 mmixer
->callbackpriv
= desc
->dwInstance
;
739 mmixer
->hmx
= (HDRVR
)desc
->hmx
;
742 if (InterlockedIncrement(&refcnt
) == 1)
744 if (pipe(msg_pipe
) >= 0)
746 thread
= CreateThread(NULL
, 0, ALSA_MixerPollThread
, NULL
, 0, NULL
);
751 msg_pipe
[0] = msg_pipe
[1] = -1;
755 msg_pipe
[0] = msg_pipe
[1] = -1;
758 return MMSYSERR_NOERROR
;
761 static DWORD
MIX_Close(UINT wDevID
)
764 mixer
*mmixer
= MIX_GetMix(wDevID
);
766 return MMSYSERR_BADDEVICEID
;
768 EnterCriticalSection(&elem_crst
);
769 mmixer
->callback
= 0;
770 LeaveCriticalSection(&elem_crst
);
772 if (!InterlockedDecrement(&refcnt
))
774 if (write(msg_pipe
[1], &x
, sizeof(x
)) > 0)
776 TRACE("Shutting down thread...\n");
777 WaitForSingleObject(thread
, INFINITE
);
782 return MMSYSERR_NOERROR
;
785 static DWORD
MIX_GetDevCaps(UINT wDevID
, LPMIXERCAPS2W caps
, DWORD_PTR parm2
)
787 mixer
*mmixer
= MIX_GetMix(wDevID
);
791 return MMSYSERR_INVALPARAM
;
794 return MMSYSERR_BADDEVICEID
;
796 memset(&capsW
, 0, sizeof(MIXERCAPS2W
));
798 capsW
.wMid
= WINE_MIXER_MANUF_ID
;
799 capsW
.wPid
= WINE_MIXER_PRODUCT_ID
;
800 capsW
.vDriverVersion
= WINE_MIXER_VERSION
;
802 lstrcpynW(capsW
.szPname
, mmixer
->mixername
, sizeof(capsW
.szPname
)/sizeof(WCHAR
));
803 capsW
.cDestinations
= mmixer
->dests
;
804 memcpy(caps
, &capsW
, min(parm2
, sizeof(capsW
)));
805 return MMSYSERR_NOERROR
;
808 /* convert win32 volume to alsa volume, and vice versa */
809 static INT
normalized(INT value
, INT prevmax
, INT nextmax
)
811 int ret
= MulDiv(value
, nextmax
, prevmax
);
813 /* Have to stay in range */
814 TRACE("%d/%d -> %d/%d\n", value
, prevmax
, ret
, nextmax
);
823 /* get amount of sources for dest */
824 static int getsrccntfromchan(mixer
*mmixer
, int dad
)
828 for (i
=0; i
<mmixer
->chans
; ++i
)
829 if (i
!= dad
&& mmixer
->lines
[i
].dst
== dad
)
834 FIXME("No src found for %i (%s)?\n", dad
, debugstr_w(mmixer
->lines
[dad
].name
));
838 /* find lineid for source 'num' with dest 'dad' */
839 static int getsrclinefromchan(mixer
*mmixer
, int dad
, int num
)
842 for (i
=0; i
<mmixer
->chans
; ++i
)
843 if (i
!= dad
&& mmixer
->lines
[i
].dst
== dad
)
849 WARN("No src found for src %i from dest %i\n", num
, dad
);
853 /* get the source number belonging to line */
854 static int getsrcfromline(mixer
*mmixer
, int line
)
856 int i
, j
=0, dad
= mmixer
->lines
[line
].dst
;
858 for (i
=0; i
<mmixer
->chans
; ++i
)
859 if (i
!= dad
&& mmixer
->lines
[i
].dst
== dad
)
865 WARN("No src found for line %i with dad %i\n", line
, dad
);
869 /* Get volume/muted/capture channel */
870 static DWORD
MIX_GetControlDetails(UINT wDevID
, LPMIXERCONTROLDETAILS mctrld
, DWORD_PTR flags
)
872 mixer
*mmixer
= MIX_GetMix(wDevID
);
878 return MMSYSERR_INVALPARAM
;
880 ctrl
= mctrld
->dwControlID
;
881 line
= ctrl
/CONTROLSPERLINE
;
883 if (mctrld
->cbStruct
!= sizeof(*mctrld
))
884 return MMSYSERR_INVALPARAM
;
887 return MMSYSERR_BADDEVICEID
;
889 if (line
>= mmixer
->chans
|| !mmixer
->controls
[ctrl
].enabled
)
890 return MIXERR_INVALCONTROL
;
892 ct
= &mmixer
->controls
[ctrl
];
894 flags
&= MIXER_GETCONTROLDETAILSF_QUERYMASK
;
897 case MIXER_GETCONTROLDETAILSF_VALUE
:
898 TRACE("MIXER_GETCONTROLDETAILSF_VALUE (%d/%d)\n", ctrl
, line
);
899 switch (ct
->c
.dwControlType
)
901 case MIXERCONTROL_CONTROLTYPE_VOLUME
:
903 long min
= 0, max
= 0, vol
= 0;
905 LPMIXERCONTROLDETAILS_UNSIGNED mcdu
;
906 snd_mixer_elem_t
* elem
= mmixer
->lines
[line
].elem
;
908 if (mctrld
->cbDetails
!= sizeof(MIXERCONTROLDETAILS_UNSIGNED
))
910 WARN("invalid parameter: cbDetails %d\n", mctrld
->cbDetails
);
911 return MMSYSERR_INVALPARAM
;
914 TRACE("%s MIXERCONTROLDETAILS_UNSIGNED[%u]\n", getControlType(ct
->c
.dwControlType
), mctrld
->cChannels
);
916 mcdu
= mctrld
->paDetails
;
918 if (mctrld
->cChannels
!= 1 && mmixer
->lines
[line
].chans
!= mctrld
->cChannels
)
920 WARN("Unsupported cChannels (%d instead of %d)\n", mctrld
->cChannels
, mmixer
->lines
[line
].chans
);
921 return MMSYSERR_INVALPARAM
;
924 if (mmixer
->lines
[line
].capt
&& snd_mixer_selem_has_capture_volume(elem
)) {
925 snd_mixer_selem_get_capture_volume_range(elem
, &min
, &max
);
926 for (chn
= 0; chn
<= SND_MIXER_SCHN_LAST
; ++chn
)
927 if (snd_mixer_selem_has_capture_channel(elem
, chn
))
929 snd_mixer_selem_get_capture_volume(elem
, chn
, &vol
);
930 mcdu
->dwValue
= normalized(vol
- min
, max
, 65535);
931 if (mctrld
->cChannels
== 1)
936 snd_mixer_selem_get_playback_volume_range(elem
, &min
, &max
);
938 for (chn
= 0; chn
<= SND_MIXER_SCHN_LAST
; ++chn
)
939 if (snd_mixer_selem_has_playback_channel(elem
, chn
))
941 snd_mixer_selem_get_playback_volume(elem
, chn
, &vol
);
942 mcdu
->dwValue
= normalized(vol
- min
, max
, 65535);
943 if (mctrld
->cChannels
== 1)
949 return MMSYSERR_NOERROR
;
952 case MIXERCONTROL_CONTROLTYPE_ONOFF
:
953 case MIXERCONTROL_CONTROLTYPE_MUTE
:
955 LPMIXERCONTROLDETAILS_BOOLEAN mcdb
;
957 snd_mixer_elem_t
* elem
= mmixer
->lines
[line
].elem
;
959 if (mctrld
->cbDetails
!= sizeof(MIXERCONTROLDETAILS_BOOLEAN
))
961 WARN("invalid parameter: cbDetails %d\n", mctrld
->cbDetails
);
962 return MMSYSERR_INVALPARAM
;
965 TRACE("%s MIXERCONTROLDETAILS_BOOLEAN[%u]\n", getControlType(ct
->c
.dwControlType
), mctrld
->cChannels
);
967 mcdb
= mctrld
->paDetails
;
970 for (chn
= 0; chn
<= SND_MIXER_SCHN_LAST
; ++chn
)
972 if (!snd_mixer_selem_has_capture_channel(elem
, chn
))
974 snd_mixer_selem_get_capture_switch(elem
, chn
, &ival
);
978 for (chn
= 0; chn
<= SND_MIXER_SCHN_LAST
; ++chn
)
980 if (!snd_mixer_selem_has_playback_channel(elem
, chn
))
982 snd_mixer_selem_get_playback_switch(elem
, chn
, &ival
);
986 if (chn
> SND_MIXER_SCHN_LAST
)
988 TRACE("can't find active channel\n");
989 return MMSYSERR_INVALPARAM
; /* fixme: what's right error? */
992 mcdb
->fValue
= !ival
;
993 TRACE("=> %s\n", mcdb
->fValue
? "on" : "off");
994 return MMSYSERR_NOERROR
;
996 case MIXERCONTROL_CONTROLTYPE_MIXER
:
997 case MIXERCONTROL_CONTROLTYPE_MUX
:
999 LPMIXERCONTROLDETAILS_BOOLEAN mcdb
;
1000 int x
, i
=0, ival
= 0, chn
;
1002 if (mctrld
->cbDetails
!= sizeof(MIXERCONTROLDETAILS_BOOLEAN
))
1004 WARN("invalid parameter: cbDetails %d\n", mctrld
->cbDetails
);
1005 return MMSYSERR_INVALPARAM
;
1008 TRACE("%s MIXERCONTROLDETAILS_BOOLEAN[%u]\n", getControlType(ct
->c
.dwControlType
), mctrld
->cChannels
);
1010 mcdb
= mctrld
->paDetails
;
1012 for (x
= 0; x
<mmixer
->chans
; ++x
)
1013 if (line
!= x
&& mmixer
->lines
[x
].dst
== line
)
1016 for (chn
= 0; chn
<= SND_MIXER_SCHN_LAST
; ++chn
)
1018 if (!snd_mixer_selem_has_capture_channel(mmixer
->lines
[x
].elem
, chn
))
1020 snd_mixer_selem_get_capture_switch(mmixer
->lines
[x
].elem
, chn
, &ival
);
1024 if (i
>= mctrld
->u
.cMultipleItems
)
1026 TRACE("overflow\n");
1027 return MMSYSERR_INVALPARAM
;
1029 TRACE("fVal[%i] = %sselected\n", i
, (!ival
? "un" : ""));
1030 mcdb
[i
++].fValue
= ival
;
1036 FIXME("Unhandled controltype %s\n", getControlType(ct
->c
.dwControlType
));
1037 return MMSYSERR_INVALPARAM
;
1039 return MMSYSERR_NOERROR
;
1041 case MIXER_GETCONTROLDETAILSF_LISTTEXT
:
1042 TRACE("MIXER_GETCONTROLDETAILSF_LISTTEXT (%d)\n", ctrl
);
1044 if (ct
->c
.dwControlType
== MIXERCONTROL_CONTROLTYPE_MUX
|| ct
->c
.dwControlType
== MIXERCONTROL_CONTROLTYPE_MIXER
)
1046 LPMIXERCONTROLDETAILS_LISTTEXTW mcdlt
= mctrld
->paDetails
;
1049 for (i
= j
= 0; j
< mmixer
->chans
; ++j
)
1050 if (j
!= line
&& mmixer
->lines
[j
].dst
== line
)
1052 if (i
> mctrld
->u
.cMultipleItems
)
1053 return MMSYSERR_INVALPARAM
;
1054 mcdlt
->dwParam1
= j
;
1055 mcdlt
->dwParam2
= mmixer
->lines
[j
].component
;
1056 lstrcpynW(mcdlt
->szName
, mmixer
->lines
[j
].name
, sizeof(mcdlt
->szName
) / sizeof(WCHAR
));
1057 TRACE("Adding %i as %s\n", j
, debugstr_w(mcdlt
->szName
));
1060 if (i
< mctrld
->u
.cMultipleItems
)
1061 return MMSYSERR_INVALPARAM
;
1062 return MMSYSERR_NOERROR
;
1064 FIXME ("Imagine this code being horribly broken and incomplete, introducing: reality\n");
1065 return MMSYSERR_INVALPARAM
;
1068 WARN("Unknown flag (%08lx)\n", flags
);
1069 return MMSYSERR_INVALPARAM
;
1073 /* Set volume/capture channel/muted for control */
1074 static DWORD
MIX_SetControlDetails(UINT wDevID
, LPMIXERCONTROLDETAILS mctrld
, DWORD_PTR flags
)
1076 mixer
*mmixer
= MIX_GetMix(wDevID
);
1077 DWORD ctrl
, line
, i
;
1079 snd_mixer_elem_t
* elem
;
1082 return MMSYSERR_INVALPARAM
;
1084 ctrl
= mctrld
->dwControlID
;
1085 line
= ctrl
/CONTROLSPERLINE
;
1087 if (mctrld
->cbStruct
!= sizeof(*mctrld
))
1089 WARN("Invalid size of mctrld %d\n", mctrld
->cbStruct
);
1090 return MMSYSERR_INVALPARAM
;
1094 return MMSYSERR_BADDEVICEID
;
1096 if (line
>= mmixer
->chans
)
1098 WARN("Invalid line id: %d not in range of 0-%d\n", line
, mmixer
->chans
-1);
1099 return MMSYSERR_INVALPARAM
;
1102 if (!mmixer
->controls
[ctrl
].enabled
)
1104 WARN("Control %d not enabled\n", ctrl
);
1105 return MIXERR_INVALCONTROL
;
1108 ct
= &mmixer
->controls
[ctrl
];
1109 elem
= mmixer
->lines
[line
].elem
;
1110 flags
&= MIXER_SETCONTROLDETAILSF_QUERYMASK
;
1113 case MIXER_SETCONTROLDETAILSF_VALUE
:
1114 TRACE("MIXER_SETCONTROLDETAILSF_VALUE (%d)\n", ctrl
);
1118 WARN("Unknown flag (%08lx)\n", flags
);
1119 return MMSYSERR_INVALPARAM
;
1122 switch (ct
->c
.dwControlType
)
1124 case MIXERCONTROL_CONTROLTYPE_VOLUME
:
1126 long min
= 0, max
= 0;
1128 LPMIXERCONTROLDETAILS_UNSIGNED mcdu
;
1129 snd_mixer_elem_t
* elem
= mmixer
->lines
[line
].elem
;
1131 if (mctrld
->cbDetails
!= sizeof(MIXERCONTROLDETAILS_UNSIGNED
))
1133 WARN("invalid parameter: cbDetails %d\n", mctrld
->cbDetails
);
1134 return MMSYSERR_INVALPARAM
;
1137 if (mctrld
->cChannels
!= 1 && mmixer
->lines
[line
].chans
!= mctrld
->cChannels
)
1139 WARN("Unsupported cChannels (%d instead of %d)\n", mctrld
->cChannels
, mmixer
->lines
[line
].chans
);
1140 return MMSYSERR_INVALPARAM
;
1143 TRACE("%s MIXERCONTROLDETAILS_UNSIGNED[%u]\n", getControlType(ct
->c
.dwControlType
), mctrld
->cChannels
);
1144 mcdu
= mctrld
->paDetails
;
1146 for (chn
=0; chn
<mctrld
->cChannels
;++chn
)
1148 TRACE("Chan %d value %d\n", chn
, mcdu
[chn
].dwValue
);
1151 /* There isn't always a capture volume, so in that case change playback volume */
1152 if (mmixer
->lines
[line
].capt
&& snd_mixer_selem_has_capture_volume(elem
))
1154 snd_mixer_selem_get_capture_volume_range(elem
, &min
, &max
);
1156 for (chn
= 0; chn
<= SND_MIXER_SCHN_LAST
; ++chn
)
1157 if (snd_mixer_selem_has_capture_channel(elem
, chn
))
1159 snd_mixer_selem_set_capture_volume(elem
, chn
, min
+ normalized(mcdu
->dwValue
, 65535, max
));
1160 if (mctrld
->cChannels
!= 1)
1166 snd_mixer_selem_get_playback_volume_range(elem
, &min
, &max
);
1168 for (chn
= 0; chn
<= SND_MIXER_SCHN_LAST
; ++chn
)
1169 if (snd_mixer_selem_has_playback_channel(elem
, chn
))
1171 snd_mixer_selem_set_playback_volume(elem
, chn
, min
+ normalized(mcdu
->dwValue
, 65535, max
));
1172 if (mctrld
->cChannels
!= 1)
1179 case MIXERCONTROL_CONTROLTYPE_MUTE
:
1180 case MIXERCONTROL_CONTROLTYPE_ONOFF
:
1182 LPMIXERCONTROLDETAILS_BOOLEAN mcdb
;
1184 if (mctrld
->cbDetails
!= sizeof(MIXERCONTROLDETAILS_BOOLEAN
))
1186 WARN("invalid parameter: cbDetails %d\n", mctrld
->cbDetails
);
1187 return MMSYSERR_INVALPARAM
;
1190 TRACE("%s MIXERCONTROLDETAILS_BOOLEAN[%u]\n", getControlType(ct
->c
.dwControlType
), mctrld
->cChannels
);
1192 mcdb
= mctrld
->paDetails
;
1193 if (line
== 1) /* Mute/unmute capturing */
1194 for (i
= 0; i
<= SND_MIXER_SCHN_LAST
; ++i
)
1196 if (snd_mixer_selem_has_capture_channel(elem
, i
))
1197 snd_mixer_selem_set_capture_switch(elem
, i
, !mcdb
->fValue
);
1200 for (i
= 0; i
<= SND_MIXER_SCHN_LAST
; ++i
)
1201 if (snd_mixer_selem_has_playback_channel(elem
, i
))
1202 snd_mixer_selem_set_playback_switch(elem
, i
, !mcdb
->fValue
);
1206 case MIXERCONTROL_CONTROLTYPE_MIXER
:
1207 case MIXERCONTROL_CONTROLTYPE_MUX
:
1209 LPMIXERCONTROLDETAILS_BOOLEAN mcdb
;
1211 int didone
= 0, canone
= (ct
->c
.dwControlType
== MIXERCONTROL_CONTROLTYPE_MUX
);
1213 if (mctrld
->cbDetails
!= sizeof(MIXERCONTROLDETAILS_BOOLEAN
))
1215 WARN("invalid parameter: cbDetails %d\n", mctrld
->cbDetails
);
1216 return MMSYSERR_INVALPARAM
;
1219 TRACE("%s MIXERCONTROLDETAILS_BOOLEAN[%u]\n", getControlType(ct
->c
.dwControlType
), mctrld
->cChannels
);
1220 mcdb
= mctrld
->paDetails
;
1222 for (x
=i
=0; x
< mmixer
->chans
; ++x
)
1223 if (line
!= x
&& mmixer
->lines
[x
].dst
== line
)
1225 TRACE("fVal[%i] (%s) = %i\n", i
, debugstr_w(mmixer
->lines
[x
].name
), mcdb
[i
].fValue
);
1226 if (i
>= mctrld
->u
.cMultipleItems
)
1228 TRACE("Too many items to fit, overflowing\n");
1229 return MIXERR_INVALVALUE
;
1231 if (mcdb
[i
].fValue
&& canone
&& didone
)
1233 TRACE("Nice try, but it's not going to work\n");
1234 elem_callback(mmixer
->lines
[1].elem
, SND_CTL_EVENT_MASK_VALUE
);
1235 return MIXERR_INVALVALUE
;
1242 if (canone
&& !didone
)
1244 TRACE("Nice try, this is not going to work either\n");
1245 elem_callback(mmixer
->lines
[1].elem
, SND_CTL_EVENT_MASK_VALUE
);
1246 return MIXERR_INVALVALUE
;
1249 for (x
= i
= 0; x
<mmixer
->chans
; ++x
)
1250 if (line
!= x
&& mmixer
->lines
[x
].dst
== line
)
1253 for (chn
= 0; chn
<= SND_MIXER_SCHN_LAST
; ++chn
)
1255 if (!snd_mixer_selem_has_capture_channel(mmixer
->lines
[x
].elem
, chn
))
1257 snd_mixer_selem_set_capture_switch(mmixer
->lines
[x
].elem
, chn
, mcdb
[i
].fValue
);
1262 /* If it's a MUX, it means that only 1 channel can be selected
1263 * and the other channels are unselected
1265 * For MIXER multiple sources are allowed, so unselect here
1270 for (x
= i
= 0; x
<mmixer
->chans
; ++x
)
1271 if (line
!= x
&& mmixer
->lines
[x
].dst
== line
)
1273 if (!mcdb
[i
].fValue
)
1274 for (chn
= 0; chn
<= SND_MIXER_SCHN_LAST
; ++chn
)
1276 if (!snd_mixer_selem_has_capture_channel(mmixer
->lines
[x
].elem
, chn
))
1278 snd_mixer_selem_set_capture_switch(mmixer
->lines
[x
].elem
, chn
, mcdb
[i
].fValue
);
1285 FIXME("Unhandled type %s\n", getControlType(ct
->c
.dwControlType
));
1286 return MMSYSERR_INVALPARAM
;
1288 return MMSYSERR_NOERROR
;
1291 /* Here we give info over the source/dest line given by dwSource+dwDest or dwDest, respectively
1292 * It is also possible that a line is found by componenttype or target type, latter is not implemented yet
1293 * Most important values returned in struct:
1296 * line control count
1297 * amount of channels
1299 static DWORD
MIX_GetLineInfo(UINT wDevID
, LPMIXERLINEW Ml
, DWORD_PTR flags
)
1301 DWORD_PTR qf
= flags
& MIXER_GETLINEINFOF_QUERYMASK
;
1302 mixer
*mmixer
= MIX_GetMix(wDevID
);
1309 return MMSYSERR_INVALPARAM
;
1314 WARN("Device %u not found\n", wDevID
);
1315 return MMSYSERR_BADDEVICEID
;
1318 if (Ml
->cbStruct
!= sizeof(*Ml
))
1320 WARN("invalid parameter: Ml->cbStruct = %d\n", Ml
->cbStruct
);
1321 return MMSYSERR_INVALPARAM
;
1325 Ml
->fdwLine
= MIXERLINE_LINEF_DISCONNECTED
;
1328 case MIXER_GETLINEINFOF_COMPONENTTYPE
:
1330 Ml
->dwLineID
= 0xFFFF;
1331 TRACE("Looking for componenttype %d/%x\n", Ml
->dwComponentType
, Ml
->dwComponentType
);
1332 for (idx
= 0; idx
< mmixer
->chans
; ++idx
)
1333 if (mmixer
->lines
[idx
].component
== Ml
->dwComponentType
)
1338 if (Ml
->dwLineID
== 0xFFFF)
1339 return MMSYSERR_KEYNOTFOUND
;
1340 /* Now that we have lineid, fallback to lineid*/
1343 case MIXER_GETLINEINFOF_LINEID
:
1344 if (Ml
->dwLineID
>= mmixer
->chans
)
1345 return MIXERR_INVALLINE
;
1347 TRACE("MIXER_GETLINEINFOF_LINEID %d\n", Ml
->dwLineID
);
1348 Ml
->dwDestination
= mmixer
->lines
[Ml
->dwLineID
].dst
;
1350 if (Ml
->dwDestination
!= Ml
->dwLineID
)
1352 Ml
->dwSource
= getsrcfromline(mmixer
, Ml
->dwLineID
);
1353 Ml
->cConnections
= 1;
1357 Ml
->cConnections
= getsrccntfromchan(mmixer
, Ml
->dwLineID
);
1358 Ml
->dwSource
= 0xFFFFFFFF;
1360 TRACE("Connections %d, source %d\n", Ml
->cConnections
, Ml
->dwSource
);
1363 case MIXER_GETLINEINFOF_DESTINATION
:
1364 if (Ml
->dwDestination
>= mmixer
->dests
)
1366 WARN("dest %d out of bounds\n", Ml
->dwDestination
);
1367 return MIXERR_INVALLINE
;
1370 Ml
->dwLineID
= Ml
->dwDestination
;
1371 Ml
->cConnections
= getsrccntfromchan(mmixer
, Ml
->dwLineID
);
1372 Ml
->dwSource
= 0xFFFFFFFF;
1375 case MIXER_GETLINEINFOF_SOURCE
:
1376 if (Ml
->dwDestination
>= mmixer
->dests
)
1378 WARN("dest %d for source out of bounds\n", Ml
->dwDestination
);
1379 return MIXERR_INVALLINE
;
1382 if (Ml
->dwSource
>= getsrccntfromchan(mmixer
, Ml
->dwDestination
))
1384 WARN("src %d out of bounds\n", Ml
->dwSource
);
1385 return MIXERR_INVALLINE
;
1388 Ml
->dwLineID
= getsrclinefromchan(mmixer
, Ml
->dwDestination
, Ml
->dwSource
);
1389 Ml
->cConnections
= 1;
1392 case MIXER_GETLINEINFOF_TARGETTYPE
:
1393 FIXME("TODO: TARGETTYPE, stub\n");
1394 return MMSYSERR_INVALPARAM
;
1397 FIXME("Unknown query flag: %08lx\n", qf
);
1398 return MMSYSERR_INVALPARAM
;
1401 Ml
->fdwLine
&= ~MIXERLINE_LINEF_DISCONNECTED
;
1402 Ml
->fdwLine
|= MIXERLINE_LINEF_ACTIVE
;
1403 if (Ml
->dwLineID
>= mmixer
->dests
)
1404 Ml
->fdwLine
|= MIXERLINE_LINEF_SOURCE
;
1406 mline
= &mmixer
->lines
[Ml
->dwLineID
];
1407 Ml
->dwComponentType
= mline
->component
;
1408 Ml
->cChannels
= mmixer
->lines
[Ml
->dwLineID
].chans
;
1411 for (i
=CONTROLSPERLINE
*Ml
->dwLineID
;i
<CONTROLSPERLINE
*(Ml
->dwLineID
+1); ++i
)
1412 if (mmixer
->controls
[i
].enabled
)
1415 lstrcpynW(Ml
->szShortName
, mmixer
->lines
[Ml
->dwLineID
].name
, sizeof(Ml
->szShortName
)/sizeof(WCHAR
));
1416 lstrcpynW(Ml
->szName
, mmixer
->lines
[Ml
->dwLineID
].name
, sizeof(Ml
->szName
)/sizeof(WCHAR
));
1418 Ml
->Target
.dwType
= MIXERLINE_TARGETTYPE_WAVEIN
;
1420 Ml
->Target
.dwType
= MIXERLINE_TARGETTYPE_WAVEOUT
;
1421 Ml
->Target
.dwDeviceID
= 0xFFFFFFFF;
1422 Ml
->Target
.wMid
= WINE_MIXER_MANUF_ID
;
1423 Ml
->Target
.wPid
= WINE_MIXER_PRODUCT_ID
;
1424 Ml
->Target
.vDriverVersion
= WINE_MIXER_VERSION
;
1425 lstrcpynW(Ml
->Target
.szPname
, mmixer
->mixername
, sizeof(Ml
->Target
.szPname
)/sizeof(WCHAR
));
1426 return MMSYSERR_NOERROR
;
1429 /* Get the controls that belong to a certain line, either all or 1 */
1430 static DWORD
MIX_GetLineControls(UINT wDevID
, LPMIXERLINECONTROLSW mlc
, DWORD_PTR flags
)
1432 mixer
*mmixer
= MIX_GetMix(wDevID
);
1436 if (!mlc
|| mlc
->cbStruct
!= sizeof(*mlc
))
1438 WARN("Invalid mlc %p, cbStruct: %d\n", mlc
, (!mlc
? -1 : mlc
->cbStruct
));
1439 return MMSYSERR_INVALPARAM
;
1442 if (mlc
->cbmxctrl
!= sizeof(MIXERCONTROLW
))
1444 WARN("cbmxctrl %d\n", mlc
->cbmxctrl
);
1445 return MMSYSERR_INVALPARAM
;
1449 return MMSYSERR_BADDEVICEID
;
1451 flags
&= MIXER_GETLINECONTROLSF_QUERYMASK
;
1453 if (flags
== MIXER_GETLINECONTROLSF_ONEBYID
)
1454 mlc
->dwLineID
= mlc
->u
.dwControlID
/ CONTROLSPERLINE
;
1456 if (mlc
->dwLineID
>= mmixer
->chans
)
1458 TRACE("Invalid dwLineID %d\n", mlc
->dwLineID
);
1459 return MIXERR_INVALLINE
;
1464 case MIXER_GETLINECONTROLSF_ALL
:
1465 TRACE("line=%08x MIXER_GETLINECONTROLSF_ALL (%d)\n", mlc
->dwLineID
, mlc
->cControls
);
1466 for (i
= 0; i
< CONTROLSPERLINE
; ++i
)
1467 if (mmixer
->controls
[i
+mlc
->dwLineID
* CONTROLSPERLINE
].enabled
)
1469 memcpy(&mlc
->pamxctrl
[j
], &mmixer
->controls
[i
+mlc
->dwLineID
* CONTROLSPERLINE
].c
, sizeof(MIXERCONTROLW
));
1470 TRACE("Added %s (%s)\n", debugstr_w(mlc
->pamxctrl
[j
].szShortName
), debugstr_w(mlc
->pamxctrl
[j
].szName
));
1472 if (j
> mlc
->cControls
)
1474 WARN("invalid parameter\n");
1475 return MMSYSERR_INVALPARAM
;
1479 if (!j
|| mlc
->cControls
> j
)
1481 WARN("invalid parameter\n");
1482 return MMSYSERR_INVALPARAM
;
1485 case MIXER_GETLINECONTROLSF_ONEBYID
:
1486 TRACE("line=%08x MIXER_GETLINECONTROLSF_ONEBYID (%x)\n", mlc
->dwLineID
, mlc
->u
.dwControlID
);
1488 if (!mmixer
->controls
[mlc
->u
.dwControlID
].enabled
)
1489 return MIXERR_INVALCONTROL
;
1491 mlc
->pamxctrl
[0] = mmixer
->controls
[mlc
->u
.dwControlID
].c
;
1493 case MIXER_GETLINECONTROLSF_ONEBYTYPE
:
1494 TRACE("line=%08x MIXER_GETLINECONTROLSF_ONEBYTYPE (%s)\n", mlc
->dwLineID
, getControlType(mlc
->u
.dwControlType
));
1496 ct
= mlc
->u
.dwControlType
& MIXERCONTROL_CT_CLASS_MASK
;
1497 for (i
= 0; i
<= CONTROLSPERLINE
; ++i
)
1499 const int ofs
= i
+mlc
->dwLineID
*CONTROLSPERLINE
;
1500 if (i
== CONTROLSPERLINE
)
1502 WARN("invalid parameter: control %s not found\n", getControlType(mlc
->u
.dwControlType
));
1503 return MIXERR_INVALCONTROL
;
1505 if (mmixer
->controls
[ofs
].enabled
&& (mmixer
->controls
[ofs
].c
.dwControlType
& MIXERCONTROL_CT_CLASS_MASK
) == ct
)
1507 mlc
->pamxctrl
[0] = mmixer
->controls
[ofs
].c
;
1513 FIXME("Unknown flag %08lx\n", flags
& MIXER_GETLINECONTROLSF_QUERYMASK
);
1514 return MMSYSERR_INVALPARAM
;
1517 return MMSYSERR_NOERROR
;
1520 #endif /*HAVE_ALSA*/
1522 /**************************************************************************
1523 * mxdMessage (WINEALSA.3)
1525 DWORD WINAPI
ALSA_mxdMessage(UINT wDevID
, UINT wMsg
, DWORD_PTR dwUser
,
1526 DWORD_PTR dwParam1
, DWORD_PTR dwParam2
)
1530 TRACE("(%04X, %s, %08lX, %08lX, %08lX);\n", wDevID
, getMessage(wMsg
),
1531 dwUser
, dwParam1
, dwParam2
);
1535 case DRVM_INIT
: ALSA_MixerInit(); ret
= MMSYSERR_NOERROR
; break;
1536 case DRVM_EXIT
: ALSA_MixerExit(); ret
= MMSYSERR_NOERROR
; break;
1537 /* All taken care of by driver initialisation */
1538 /* Unimplemented, and not needed */
1541 ret
= MMSYSERR_NOERROR
; break;
1544 ret
= MIX_Open(wDevID
, (LPMIXEROPENDESC
) dwParam1
, dwParam2
); break;
1547 ret
= MIX_Close(wDevID
); break;
1549 case MXDM_GETDEVCAPS
:
1550 ret
= MIX_GetDevCaps(wDevID
, (LPMIXERCAPS2W
)dwParam1
, dwParam2
); break;
1552 case MXDM_GETLINEINFO
:
1553 ret
= MIX_GetLineInfo(wDevID
, (LPMIXERLINEW
)dwParam1
, dwParam2
); break;
1555 case MXDM_GETLINECONTROLS
:
1556 ret
= MIX_GetLineControls(wDevID
, (LPMIXERLINECONTROLSW
)dwParam1
, dwParam2
); break;
1558 case MXDM_GETCONTROLDETAILS
:
1559 ret
= MIX_GetControlDetails(wDevID
, (LPMIXERCONTROLDETAILS
)dwParam1
, dwParam2
); break;
1561 case MXDM_SETCONTROLDETAILS
:
1562 ret
= MIX_SetControlDetails(wDevID
, (LPMIXERCONTROLDETAILS
)dwParam1
, dwParam2
); break;
1564 case MXDM_GETNUMDEVS
:
1568 WARN("unknown message %s!\n", getMessage(wMsg
));
1569 return MMSYSERR_NOTSUPPORTED
;
1572 TRACE("Returning %08X\n", ret
);
1575 TRACE("(%04X, %04X, %08lX, %08lX, %08lX);\n", wDevID
, wMsg
, dwUser
, dwParam1
, dwParam2
);
1577 return MMSYSERR_NOTENABLED
;
1578 #endif /*HAVE_ALSA*/