[pulseaudio-tickets] [Bug 84983] [AV200 - Oxygen HD Audio - Asus Xonar D1] analog output device is not listed in audio settings
bugzilla-daemon at freedesktop.org
bugzilla-daemon at freedesktop.org
Fri Mar 13 01:36:08 PDT 2015
https://bugs.freedesktop.org/show_bug.cgi?id=84983
--- Comment #48 from Raymond <superquad.vortex2 at gmail.com> ---
element_parse_override_map only supprt two override maps
static int element_parse_override_map(
const char *filename,
unsigned line,
const char *section,
const char *lvalue,
const char *rvalue,
void *data,
void *userdata) {
pa_alsa_path *p = userdata;
pa_alsa_element *e;
const char *state = NULL;
unsigned i = 0;
char *n;
if (!(e = element_get(p, section, TRUE))) {
pa_log("[%s:%u] Override map makes no sense in '%s'", filename, line,
section);
return -1;
}
while ((n = pa_split(rvalue, ",", &state))) {
pa_channel_position_mask_t m;
if (!*n)
m = 0;
else {
if ((m = parse_mask(n)) == 0) {
pa_log("[%s:%u] Override map '%s' invalid in '%s'", filename,
line, n, section);
pa_xfree(n);
return -1;
}
}
if (pa_streq(lvalue, "override-map.1"))
e->masks[i++][0] = m;
else
e->masks[i++][1] = m;
/* Later on we might add override-map.3 and so on here ... */
pa_xfree(n);
}
e->override_map = TRUE;
return 0;
}
--
You are receiving this mail because:
You are the QA Contact for the bug.
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.freedesktop.org/archives/pulseaudio-bugs/attachments/20150313/29acbcf5/attachment.html>
More information about the pulseaudio-bugs
mailing list