mirror of
https://github.com/badaix/snapcast.git
synced 2025-08-02 16:19:09 +02:00
16 lines
165 B
C++
16 lines
165 B
C++
#ifndef PCM_DECODER_H
|
|
#define PCM_DECODER_H
|
|
#include "decoder.h"
|
|
|
|
|
|
class PcmDecoder
|
|
{
|
|
public:
|
|
PcmDecoder();
|
|
virtual bool decode(BaseMessage* chunk);
|
|
};
|
|
|
|
|
|
#endif
|
|
|
|
|