aboutsummaryrefslogtreecommitdiff
path: root/src/decoder_api.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-08-26 08:41:05 +0200
committerMax Kellermann <max@duempel.org>2008-08-26 08:41:05 +0200
commit15c9352bb632277fc6e787114ae5af60e6dc8597 (patch)
tree2c7d8232bfc34dab98ddc423a54b92fd62f2d8ac /src/decoder_api.h
parent1c03c721eae87077675ccafece4cf4b9fef0a1ac (diff)
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/decoder_api.h')
-rw-r--r--src/decoder_api.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/decoder_api.h b/src/decoder_api.h
index 9c998f0a..7428b3aa 100644
--- a/src/decoder_api.h
+++ b/src/decoder_api.h
@@ -30,7 +30,6 @@
#include "replayGain.h"
#include "tag.h"
#include "playerData.h"
-#include "decode.h"
/* valid values for streamTypes in the InputPlugin struct: */
@@ -38,6 +37,14 @@
#define INPUT_PLUGIN_STREAM_URL 0x02
+enum decoder_command {
+ DECODE_COMMAND_NONE = 0,
+ DECODE_COMMAND_START,
+ DECODE_COMMAND_STOP,
+ DECODE_COMMAND_SEEK
+};
+
+
struct decoder;