Commit 923ac213 authored by Max Kellermann's avatar Max Kellermann

output_control: removed audio_output_signal()

This function was part of a workaround which we don't need anymore.
parent 756b0022
...@@ -120,12 +120,6 @@ audio_output_update(struct audio_output *ao, ...@@ -120,12 +120,6 @@ audio_output_update(struct audio_output *ao,
} }
void void
audio_output_signal(struct audio_output *ao)
{
notify_signal(&ao->notify);
}
void
audio_output_play(struct audio_output *ao) audio_output_play(struct audio_output *ao)
{ {
if (!ao->open) if (!ao->open)
......
...@@ -49,14 +49,6 @@ audio_output_update(struct audio_output *ao, ...@@ -49,14 +49,6 @@ audio_output_update(struct audio_output *ao,
const struct audio_format *audio_format, const struct audio_format *audio_format,
const struct music_pipe *mp); const struct music_pipe *mp);
/**
* Wakes up the audio output thread. This is part of a workaround for
* a deadlock bug, and should be removed as soon as the real cause is
* fixed. XXX
*/
void
audio_output_signal(struct audio_output *ao);
void void
audio_output_play(struct audio_output *ao); audio_output_play(struct audio_output *ao);
......
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