aboutsummaryrefslogtreecommitdiff
path: root/src/decoder_internal.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-08-26 08:27:14 +0200
committerMax Kellermann <max@duempel.org>2008-08-26 08:27:14 +0200
commit1c196478b6258f666cbc3efb9bccc60c595949fe (patch)
treecd825b5f162132a8412df8e9e44eb1bbab2c6764 /src/decoder_internal.h
parentcf139dc012fe592d6e6d6165d536392e02dcb759 (diff)
added flag "decoder.seeking"
This flag is used internally; it is set by decoder_seek_where(), and indicates that the decoder plugin has begun the seek process. It is used for the case that the decoder plugin has to read data during the seek process. Before this patch, that was impossible, because decoder_read() would refuse to read data unless dc->command is NONE. This patch is kind of a dirty workaround, and needs to be redesigned later.
Diffstat (limited to 'src/decoder_internal.h')
-rw-r--r--src/decoder_internal.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/decoder_internal.h b/src/decoder_internal.h
index 37b7b65f..6d8bc7a8 100644
--- a/src/decoder_internal.h
+++ b/src/decoder_internal.h
@@ -26,6 +26,8 @@ struct decoder {
struct decoder_plugin *plugin;
ConvState conv_state;
+
+ int seeking;
};
#endif