refuse to initialize on modem devices

This commit is contained in:
Lennart Poettering 2009-04-04 04:12:42 +02:00
parent f7083280f8
commit 77a1e3876b
4 changed files with 24 additions and 0 deletions

View file

@ -1469,6 +1469,11 @@ pa_source *pa_alsa_source_new(pa_module *m, pa_modargs *ma, const char*driver, p
pa_assert(u->device_name);
pa_log_info("Successfully opened device %s.", u->device_name);
if (pa_alsa_pcm_is_modem(u->pcm_handle)) {
pa_log_notice("Device %s is modem, refusing further initialization.", u->device_name);
goto fail;
}
if (profile)
pa_log_info("Selected configuration '%s' (%s).", profile->description, profile->name);