From 6f2fefdd9ff5f8561b3538efb5eb0765a9b4a141 Mon Sep 17 00:00:00 2001 From: Vegard Storheil Eriksen Date: Thu, 6 Jan 2011 05:29:39 +0100 Subject: Replaced iostream-based decoder-encoder chain with direct chain. --- decoders/mpg123_decoder.h | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'decoders/mpg123_decoder.h') diff --git a/decoders/mpg123_decoder.h b/decoders/mpg123_decoder.h index 5a637af..f71dbe7 100644 --- a/decoders/mpg123_decoder.h +++ b/decoders/mpg123_decoder.h @@ -3,20 +3,21 @@ #include "decoder.h" +#include #include -class DecoderMpg123 : public DecoderBase { +class DecoderMpg123 : public Decoder { private: mpg123_handle *handle; + std::ifstream ifile; size_t decode(const uint8_t *input, size_t input_size, uint8_t *output, size_t output_size); - protected: - virtual size_t decode(ReadFunc read, uint8_t *output, size_t output_size); - public: - DecoderMpg123(); + DecoderMpg123(const std::string& filename); ~DecoderMpg123(); + + virtual std::size_t read(char* buf, std::size_t buf_size); }; #endif -- cgit v1.2.3