mirror of
https://github.com/badaix/snapcast.git
synced 2025-08-01 23:59:43 +02:00
18 lines
258 B
C++
18 lines
258 B
C++
#ifndef FLAC_DECODER_H
|
|
#define FLAC_DECODER_H
|
|
#include "decoder.h"
|
|
|
|
|
|
class FlacDecoder : public Decoder
|
|
{
|
|
public:
|
|
FlacDecoder();
|
|
virtual ~FlacDecoder();
|
|
virtual bool decode(msg::PcmChunk* chunk);
|
|
virtual bool setHeader(msg::Header* chunk);
|
|
};
|
|
|
|
|
|
#endif
|
|
|
|
|