mirror of
https://github.com/badaix/snapcast.git
synced 2025-05-13 00:56:44 +02:00
18 lines
237 B
C++
18 lines
237 B
C++
#include "oggEncoder.h"
|
|
|
|
OggEncoder::OggEncoder()
|
|
{
|
|
}
|
|
|
|
|
|
void OggEncoder::encode(Chunk* chunk)
|
|
{
|
|
WireChunk* wireChunk = chunk->wireChunk;
|
|
for (size_t n=0; n<wireChunk->length; ++n)
|
|
wireChunk->payload[n] *= 1.5;
|
|
// return chunk;
|
|
}
|
|
|
|
|
|
|
|
|