mirror of
https://github.com/badaix/snapcast.git
synced 2025-05-13 09:06:43 +02:00
19 lines
237 B
C++
19 lines
237 B
C++
#include "pcmDecoder.h"
|
|
|
|
PcmDecoder::PcmDecoder()
|
|
{
|
|
}
|
|
|
|
|
|
bool PcmDecoder::decode(Chunk* chunk)
|
|
{
|
|
/* WireChunk* wireChunk = chunk->wireChunk;
|
|
for (size_t n=0; n<wireChunk->length; ++n)
|
|
wireChunk->payload[n] *= 1;
|
|
*/
|
|
return true;
|
|
}
|
|
|
|
|
|
|
|
|