diff options
Diffstat (limited to 'src/player_control.h')
-rw-r--r-- | src/player_control.h | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/src/player_control.h b/src/player_control.h index 0a62b774a..5d1c0ba3b 100644 --- a/src/player_control.h +++ b/src/player_control.h @@ -66,9 +66,17 @@ enum player_command { }; enum player_error { - PLAYER_ERROR_NOERROR = 0, - PLAYER_ERROR_FILE, - PLAYER_ERROR_AUDIO, + PLAYER_ERROR_NONE = 0, + + /** + * The decoder has failed to decode the song. + */ + PLAYER_ERROR_DECODER, + + /** + * The audio output has failed. + */ + PLAYER_ERROR_OUTPUT, }; struct player_status { |