mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
Remove logging statement.
This commit is contained in:
parent
cb78daa0b1
commit
997abf6543
1 changed files with 0 additions and 3 deletions
|
@ -73,9 +73,6 @@ void AthenaOpusDecoder::decode(const QByteArray &encodedBuffer, QByteArray &deco
|
|||
|
||||
decodedBuffer.resize(bufferSize);
|
||||
int bufferFrames = decodedBuffer.size() / _opusNumChannels / static_cast<int>(sizeof(opus_int16));
|
||||
|
||||
qCDebug(decoder) << "Opus decode: encodedBytes = " << encodedBuffer.length() << "; decodedBufferBytes = "
|
||||
<< decodedBuffer.size() << "; frameCount = " << bufferFrames;
|
||||
int decoded_frames = opus_decode(_decoder, reinterpret_cast<const unsigned char*>(encodedBuffer.data()),
|
||||
encodedBuffer.length(), reinterpret_cast<opus_int16*>(decodedBuffer.data()), bufferFrames, 0);
|
||||
|
||||
|
|
Loading…
Reference in a new issue