summaryrefslogtreecommitdiff
path: root/decoders/mpg123_decoder.h
blob: 5a637af33b9804257c79668ea81ddf83a4ad9562 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef DECODER_MPG123_H
#define DECODER_MPG123_H

#include "decoder.h"

#include <mpg123.h>

class DecoderMpg123 : public DecoderBase {
	private:
		mpg123_handle *handle;
		
		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();
};

#endif