mmdevapi: Blacklist portaudio.

This commit is contained in:
Maarten Lankhorst 2010-05-30 19:18:35 +02:00 committed by Alexandre Julliard
parent 0379acc27d
commit 47d28ace15
1 changed files with 2 additions and 0 deletions

View File

@ -756,6 +756,8 @@ static int blacklist(const char *dev) {
return 1;
if (!strncmp(dev, "ALSA ", 5) && strstr(dev, "hw:"))
return 1;
if (!strncmp(dev, "PortAudio ", 10))
return 1;
return 0;
}