diff options
author | Max Kellermann <max@duempel.org> | 2008-08-26 08:41:05 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-08-26 08:41:05 +0200 |
commit | 15c9352bb632277fc6e787114ae5af60e6dc8597 (patch) | |
tree | 2c7d8232bfc34dab98ddc423a54b92fd62f2d8ac /src/decode.h | |
parent | 1c03c721eae87077675ccafece4cf4b9fef0a1ac (diff) | |
download | mpd-15c9352bb632277fc6e787114ae5af60e6dc8597.tar.gz mpd-15c9352bb632277fc6e787114ae5af60e6dc8597.tar.xz mpd-15c9352bb632277fc6e787114ae5af60e6dc8597.zip |
moved enum decoder_command to decoder_api.h
The decoder plugins need this type, so export it in the public API.
This allows is to remove "decode.h" from "decoder_api.h", uncluttering
the API namespace some more.
Diffstat (limited to 'src/decode.h')
-rw-r--r-- | src/decode.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/decode.h b/src/decode.h index 9922cd81e..a1ed04157 100644 --- a/src/decode.h +++ b/src/decode.h @@ -19,6 +19,7 @@ #ifndef DECODE_H #define DECODE_H +#include "decoder_api.h" #include "song.h" #include "audio_format.h" @@ -33,13 +34,6 @@ enum decoder_state { DECODE_STATE_DECODE }; -enum decoder_command { - DECODE_COMMAND_NONE = 0, - DECODE_COMMAND_START, - DECODE_COMMAND_STOP, - DECODE_COMMAND_SEEK -}; - #define DECODE_ERROR_NOERROR 0 #define DECODE_ERROR_UNKTYPE 10 #define DECODE_ERROR_FILE 20 |