git-svn-id: svn://elaine/murooma/trunk@218 d8a302eb-03bc-478d-80e4-98257eca68ef
This commit is contained in:
(no author) 2014-08-29 05:36:48 +00:00
parent 9c6ee38ce4
commit 763d17defc
8 changed files with 361 additions and 4 deletions

19
client/pcmDecoder.cpp Normal file
View file

@ -0,0 +1,19 @@
#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;
}