$OpenBSD: patch-src_player_h,v 1.1 2015/03/20 14:59:36 dcoppa Exp $

commit 310900e4be52d11388792d776d9f6b89380bbecd
Author: Lars-Dominik Braun <lars@6xq.net>
Date:   Sat Mar 7 16:20:26 2015 +0100

player: Ignore volume change before playback started

--- src/player.h.orig	Sun Sep 28 08:17:29 2014
+++ src/player.h	Fri Mar 20 09:45:26 2015
@@ -49,9 +49,13 @@ typedef struct {
 	pthread_cond_t pauseCond;
 
 	enum {
-		PLAYER_DEAD = 0, /* thread is not running */
-		PLAYER_STARTING, /* thread is starting */
+		/* not running */
+		PLAYER_DEAD = 0,
+		/* running, but not ready to play music yet */
+		PLAYER_WAITING,
+		/* currently playing a song */
 		PLAYER_PLAYING,
+		/* finished playing a song */
 		PLAYER_FINISHED,
 	} mode;
 
