snapcast/client/pcmDecoder.cpp
(no author) c40bfda64c refactoring
git-svn-id: svn://elaine/murooma/trunk@328 d8a302eb-03bc-478d-80e4-98257eca68ef
2014-12-29 12:34:33 +00:00

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;
}