Commit 7d19f1dd authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

PulseAudio: report policy stream events (refs #5101)

parent a666d9b2
...@@ -372,6 +372,12 @@ static void stream_event_cb(pa_stream *s, const char *name, pa_proplist *pl, ...@@ -372,6 +372,12 @@ static void stream_event_cb(pa_stream *s, const char *name, pa_proplist *pl,
{ {
audio_output_t *aout = userdata; audio_output_t *aout = userdata;
if (!strcmp(name, PA_STREAM_EVENT_REQUEST_CORK))
aout_PolicyReport(aout, true);
else
if (!strcmp(name, PA_STREAM_EVENT_REQUEST_UNCORK))
aout_PolicyReport(aout, false);
else
#if PA_CHECK_VERSION(1,0,0) #if PA_CHECK_VERSION(1,0,0)
/* FIXME: expose aout_Restart() directly */ /* FIXME: expose aout_Restart() directly */
if (!strcmp(name, PA_STREAM_EVENT_FORMAT_LOST)) { if (!strcmp(name, PA_STREAM_EVENT_FORMAT_LOST)) {
......
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