Commit cf65ebea authored by Erwan Tulou's avatar Erwan Tulou

pulse: ensure a report is sent if no stream is available

parent 3794d92b
...@@ -648,6 +648,7 @@ static int MuteSet(audio_output_t *aout, bool mute) ...@@ -648,6 +648,7 @@ static int MuteSet(audio_output_t *aout, bool mute)
sys->flags_force &= ~(PA_STREAM_START_MUTED|PA_STREAM_START_UNMUTED); sys->flags_force &= ~(PA_STREAM_START_MUTED|PA_STREAM_START_UNMUTED);
sys->flags_force |= sys->flags_force |=
mute ? PA_STREAM_START_MUTED : PA_STREAM_START_UNMUTED; mute ? PA_STREAM_START_MUTED : PA_STREAM_START_UNMUTED;
aout_MuteReport(aout, mute);
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment