mirror of
https://github.com/badaix/snapcast.git
synced 2025-06-01 18:31:45 +02:00
16 lines
159 B
C++
16 lines
159 B
C++
#ifndef PCM_DECODER_H
|
|
#define PCM_DECODER_H
|
|
#include "decoder.h"
|
|
|
|
|
|
class PcmDecoder
|
|
{
|
|
public:
|
|
PcmDecoder();
|
|
virtual bool decode(Chunk* chunk);
|
|
};
|
|
|
|
|
|
#endif
|
|
|
|
|