diff options
Diffstat (limited to '')
-rw-r--r-- | src/decoder_api.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/decoder_api.h b/src/decoder_api.h index 5afa06e77..7a77bc93a 100644 --- a/src/decoder_api.h +++ b/src/decoder_api.h @@ -122,6 +122,15 @@ double decoder_seek_where(struct decoder * decoder); void decoder_seek_error(struct decoder * decoder); /** + * Blocking read from the input stream. Returns the number of bytes + * read, or 0 if one of the following occurs: end of file; error; + * command (like SEEK or STOP). + */ +size_t decoder_read(struct decoder *decoder, + InputStream *inStream, + void *buffer, size_t length); + +/** * This function is called by the decoder plugin when it has * successfully decoded block of input data. * |