summaryrefslogtreecommitdiffstats
path: root/mix
diff options
context:
space:
mode:
Diffstat (limited to 'mix')
-rw-r--r--mix/pcm_upmix.c2
-rw-r--r--mix/pcm_vdownmix.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/mix/pcm_upmix.c b/mix/pcm_upmix.c
index 9ca5bf4..66e6604 100644
--- a/mix/pcm_upmix.c
+++ b/mix/pcm_upmix.c
@@ -338,7 +338,7 @@ SND_PCM_PLUGIN_DEFINE_FUNC(upmix)
const char *id;
if (snd_config_get_id(n, &id) < 0)
continue;
- if (strcmp(id, "comment") == 0 || strcmp(id, "type") == 0)
+ if (strcmp(id, "comment") == 0 || strcmp(id, "type") == 0 || strcmp(id, "hint") == 0)
continue;
if (strcmp(id, "slave") == 0) {
sconf = n;
diff --git a/mix/pcm_vdownmix.c b/mix/pcm_vdownmix.c
index a083ae2..d5648cf 100644
--- a/mix/pcm_vdownmix.c
+++ b/mix/pcm_vdownmix.c
@@ -295,7 +295,7 @@ SND_PCM_PLUGIN_DEFINE_FUNC(vdownmix)
const char *id;
if (snd_config_get_id(n, &id) < 0)
continue;
- if (strcmp(id, "comment") == 0 || strcmp(id, "type") == 0)
+ if (strcmp(id, "comment") == 0 || strcmp(id, "type") == 0 || strcmp(id, "hint") == 0)
continue;
if (strcmp(id, "slave") == 0) {
sconf = n;