udev: allow passing of ignore_dB= parameter to alsa modules

This commit is contained in:
Lennart Poettering 2009-08-19 02:29:59 +02:00
parent 24e582808c
commit d6f598ab3e
4 changed files with 49 additions and 23 deletions

View file

@ -133,7 +133,7 @@ static void io_callback(pa_mainloop_api *io, pa_io_event *e, int fd, pa_io_event
cv.values[i] = PA_VOLUME_MAX;
}
pa_sink_set_volume(s, &cv, TRUE, TRUE, TRUE, TRUE);
pa_sink_set_volume(s, &cv, TRUE, TRUE);
break;
case DOWN:
@ -144,7 +144,7 @@ static void io_callback(pa_mainloop_api *io, pa_io_event *e, int fd, pa_io_event
cv.values[i] = PA_VOLUME_MUTED;
}
pa_sink_set_volume(s, &cv, TRUE, TRUE, TRUE, TRUE);
pa_sink_set_volume(s, &cv, TRUE, TRUE);
break;
case MUTE: