mirror of
https://github.com/badaix/snapcast.git
synced 2025-05-21 04:56:13 +02:00
17 lines
229 B
C++
17 lines
229 B
C++
#ifndef PCM_DECODER_H
|
|
#define PCM_DECODER_H
|
|
#include "decoder.h"
|
|
|
|
|
|
class PcmDecoder : public Decoder
|
|
{
|
|
public:
|
|
PcmDecoder();
|
|
virtual bool decode(msg::PcmChunk* chunk);
|
|
virtual bool setHeader(msg::Header* chunk);
|
|
};
|
|
|
|
|
|
#endif
|
|
|
|
|