blob: 9e2bcdf6259790339b835e35435e46ffecaa5285 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef DECODER_MPG123_H
#define DECODER_MPG123_H
#include "decoder.h"
#include <mpg123.h>
class DecoderMpg123 : public DecoderBase {
private:
mpg123_handle *handle;
public:
DecoderMpg123();
~DecoderMpg123();
size_t decode(Source& input, uint8_t *output, size_t output_size);
};
#endif
|