mirror of
https://github.com/badaix/snapcast.git
synced 2025-05-10 23:56:43 +02:00
21 lines
203 B
C++
21 lines
203 B
C++
#include "pcmDecoder.h"
|
|
|
|
PcmDecoder::PcmDecoder() : Decoder()
|
|
{
|
|
}
|
|
|
|
|
|
bool PcmDecoder::decode(msg::PcmChunk* chunk)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
|
|
bool PcmDecoder::setHeader(msg::Header* chunk)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
|
|
|
|
|