diff options
author | Max Kellermann <max@duempel.org> | 2008-08-26 08:27:07 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-08-26 08:27:07 +0200 |
commit | 17e9cc84c5f94c94c71b2a808b57d4655ee21d12 (patch) | |
tree | fbb3c0e6ac5af307ae7e5a4ca4ca525f904d5740 /src/decoder_api.h | |
parent | 78c55e24324c881541a87cd0003c60f378a43d68 (diff) | |
download | mpd-17e9cc84c5f94c94c71b2a808b57d4655ee21d12.tar.gz mpd-17e9cc84c5f94c94c71b2a808b57d4655ee21d12.tar.xz mpd-17e9cc84c5f94c94c71b2a808b57d4655ee21d12.zip |
added decoder_seek_where() and decoder_seek_error()
Provide access to seeking for the decoder plugins; they have to know
where to seek, and they need a way to tell us that seeking has failed.
Diffstat (limited to 'src/decoder_api.h')
-rw-r--r-- | src/decoder_api.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/decoder_api.h b/src/decoder_api.h index 980693362..3781d79d2 100644 --- a/src/decoder_api.h +++ b/src/decoder_api.h @@ -112,6 +112,10 @@ enum decoder_command decoder_get_command(struct decoder * decoder); */ void decoder_command_finished(struct decoder * decoder); +double decoder_seek_where(struct decoder * decoder); + +void decoder_seek_error(struct decoder * decoder); + /** * This function is called by the decoder plugin when it has * successfully decoded block of input data. |