summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorColin Guthrie <cguthrie@mandriva.org>2010-10-16 12:26:32 +0100
committerColin Guthrie <cguthrie@mandriva.org>2010-10-16 12:26:47 +0100
commit13278bf23407d934b56ba06d460310beb64017eb (patch)
treecebb09129914a1da55f60db4cf1bd1ccf99a60dc
parent8aa332c6f5d976a6e8ee3928f280ffda59901837 (diff)
intended-roles: Mark devices with a form factor of 'headset' as being appropriate for 'phone' streams
This was a result a report by Patrick Ben Koetter relating to his Logitech Wireless Headset.
-rw-r--r--src/pulsecore/sink.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pulsecore/sink.c b/src/pulsecore/sink.c
index 136508b2..7b4e626d 100644
--- a/src/pulsecore/sink.c
+++ b/src/pulsecore/sink.c
@@ -2808,7 +2808,8 @@ pa_bool_t pa_device_init_intended_roles(pa_proplist *p) {
return TRUE;
if ((s = pa_proplist_gets(p, PA_PROP_DEVICE_FORM_FACTOR)))
- if (pa_streq(s, "handset") || pa_streq(s, "hands-free")) {
+ if (pa_streq(s, "handset") || pa_streq(s, "hands-free")
+ || pa_streq(s, "headset")) {
pa_proplist_sets(p, PA_PROP_DEVICE_INTENDED_ROLES, "phone");
return TRUE;
}