mirror of
https://github.com/badaix/snapcast.git
synced 2025-05-14 01:26:42 +02:00
17 lines
226 B
C++
17 lines
226 B
C++
#ifndef PCM_DECODER_H
|
|
#define PCM_DECODER_H
|
|
#include "decoder.h"
|
|
|
|
|
|
class PcmDecoder : public Decoder
|
|
{
|
|
public:
|
|
PcmDecoder();
|
|
virtual bool decode(PcmChunk* chunk);
|
|
virtual bool setHeader(HeaderMessage* chunk);
|
|
};
|
|
|
|
|
|
#endif
|
|
|
|
|