diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-05-19 02:14:20 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-05-19 02:14:20 +0000 |
commit | c180d2f95ee8621b743664f0a3c8003682705801 (patch) | |
tree | aeed9a0ea22a2cd7215b308ba1fc973d5215345c /src/decode.h | |
parent | bf9e2afbf9f8c9ec44dbad033290c8fe66d170f6 (diff) | |
download | mpd-c180d2f95ee8621b743664f0a3c8003682705801.tar.gz mpd-c180d2f95ee8621b743664f0a3c8003682705801.tar.xz mpd-c180d2f95ee8621b743664f0a3c8003682705801.zip |
try to make seeking more non-blocking
git-svn-id: https://svn.musicpd.org/mpd/trunk@1076 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/decode.h')
-rw-r--r-- | src/decode.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/decode.h b/src/decode.h index c21407b48..8b36fe7ca 100644 --- a/src/decode.h +++ b/src/decode.h @@ -31,7 +31,8 @@ #define DECODE_TYPE_URL 1 #define DECODE_STATE_STOP 0 -#define DECODE_STATE_DECODE 1 +#define DECODE_STATE_START 1 +#define DECODE_STATE_DECODE 2 #define DECODE_ERROR_NOERROR 0 #define DECODE_ERROR_UNKTYPE 10 |