alsa: avoid loading the plugin when linked against 0.2

chromium is linked against 0.2, avoid trying to load the alsa
plugin that is linked against 0.3

See #275
This commit is contained in:
Wim Taymans 2020-09-07 17:40:32 +02:00
parent a652edce0a
commit 368366b88d

View file

@ -983,7 +983,9 @@ SND_PCM_PLUGIN_DEFINE_FUNC(pipewire)
uint32_t flags = 0;
int err;
pw_init(NULL, NULL);
pw_init(NULL, NULL);
if (strstr(pw_get_library_version(), "0.2") != NULL)
return -ENOTSUP;
snd_config_for_each(i, next, conf) {
snd_config_t *n = snd_config_iterator_entry(i);