diff options
Diffstat (limited to 'src/output_internal.h')
-rw-r--r-- | src/output_internal.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/output_internal.h b/src/output_internal.h index 0c25348a0..6b81bbc78 100644 --- a/src/output_internal.h +++ b/src/output_internal.h @@ -21,7 +21,8 @@ #define MPD_OUTPUT_INTERNAL_H #include "audio_format.h" -#include "notify.h" + +#include <glib.h> #include <time.h> @@ -141,11 +142,6 @@ struct audio_output { GThread *thread; /** - * Notify object for the thread. - */ - struct notify notify; - - /** * The next command to be performed by the output thread. */ enum audio_output_command command; @@ -161,6 +157,12 @@ struct audio_output { GMutex *mutex; /** + * This condition object wakes up the output thread after + * #command has been set. + */ + GCond *cond; + + /** * The #music_chunk which is currently being played. All * chunks before this one may be returned to the * #music_buffer, because they are not going to be used by |