mirror of
https://github.com/badaix/snapcast.git
synced 2025-05-11 08:06:41 +02:00
25 lines
325 B
C++
25 lines
325 B
C++
#include "pcmDecoder.h"
|
|
|
|
PcmDecoder::PcmDecoder() : Decoder()
|
|
{
|
|
}
|
|
|
|
|
|
bool PcmDecoder::decode(PcmChunk* chunk)
|
|
{
|
|
/* WireChunk* wireChunk = chunk->wireChunk;
|
|
for (size_t n=0; n<wireChunk->length; ++n)
|
|
wireChunk->payload[n] *= 1;
|
|
*/
|
|
return true;
|
|
}
|
|
|
|
|
|
bool PcmDecoder::setHeader(HeaderMessage* chunk)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
|
|
|
|
|