diff options
author | wm4 <wm4@nowhere> | 2015-03-24 22:07:14 +0100 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2015-03-24 22:07:14 +0100 |
commit | b7325b2f64eb66da255b9cc28b2b70b96578883d (patch) | |
tree | 07e78f6d1ee790f9147dde8013568f7eeddb8e81 | |
parent | 08df18aea35d5e6215f9307f0a9c187464442020 (diff) | |
download | mpv-b7325b2f64eb66da255b9cc28b2b70b96578883d.tar.bz2 mpv-b7325b2f64eb66da255b9cc28b2b70b96578883d.tar.xz |
ao_pulse: drop video role; fixes random muting
The details are described in #1173.
This "features" causes problems to users so often, it's better to remove
it.
Fixes #1173.
-rw-r--r-- | audio/out/ao_pulse.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/audio/out/ao_pulse.c b/audio/out/ao_pulse.c index fd5e006172..292161eb7f 100644 --- a/audio/out/ao_pulse.c +++ b/audio/out/ao_pulse.c @@ -419,7 +419,6 @@ static int init(struct ao *ao) MP_ERR(ao, "Failed to allocate proplist\n"); goto unlock_and_fail; } - (void)pa_proplist_sets(proplist, PA_PROP_MEDIA_ROLE, "video"); (void)pa_proplist_sets(proplist, PA_PROP_MEDIA_ICON_NAME, ao->client_name); pa_format_info_set_rate(format, ao->samplerate); |