Skip to content

Commit

Permalink
Remove logging statement.
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcusLlewellyn authored Jan 19, 2020
1 parent cb78daa commit 997abf6
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions plugins/opusCodec/src/OpusDecoder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 997abf6

Please sign in to comment.