summaryrefslogtreecommitdiff
path: root/decoders/mpg123_decoder.h
diff options
context:
space:
mode:
authorVegard Storheil Eriksen <zyp@jvnv.net>2011-01-06 02:12:25 +0100
committerVegard Storheil Eriksen <zyp@jvnv.net>2011-01-06 02:12:25 +0100
commitb5452bc9bc09e66121aae35adbd5c504a3f90466 (patch)
tree30fe30d724772e94b3f590f2a582d19aba40ed24 /decoders/mpg123_decoder.h
parent70f111b184928feab0c94f762954b5ec83a441c6 (diff)
Let decoders read a dynamic amount through a Source object.decoder_api_change
Diffstat (limited to 'decoders/mpg123_decoder.h')
-rw-r--r--decoders/mpg123_decoder.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/decoders/mpg123_decoder.h b/decoders/mpg123_decoder.h
index 46f9e4c..9e2bcdf 100644
--- a/decoders/mpg123_decoder.h
+++ b/decoders/mpg123_decoder.h
@@ -12,7 +12,7 @@ class DecoderMpg123 : public DecoderBase {
public:
DecoderMpg123();
~DecoderMpg123();
- size_t decode(const uint8_t *input, size_t input_size, uint8_t *output, size_t output_size);
+ size_t decode(Source& input, uint8_t *output, size_t output_size);
};
#endif