mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-13 22:27:13 +02:00
Remove debug logging
This commit is contained in:
parent
7c14d5bbdf
commit
bd82f47c66
1 changed files with 0 additions and 3 deletions
|
@ -527,7 +527,6 @@ float calculateRepeatedFrameFadeFactor(int indexOfRepeat) {
|
|||
}
|
||||
|
||||
void InboundAudioStream::setupCodec(CodecPluginPointer codec, const QString& codecName, int numChannels) {
|
||||
qDebug(audio) << "Setup Codec:" << codecName;
|
||||
cleanupCodec(); // cleanup any previously allocated coders first
|
||||
_codec = codec;
|
||||
_selectedCodecName = codecName;
|
||||
|
@ -538,8 +537,6 @@ void InboundAudioStream::setupCodec(CodecPluginPointer codec, const QString& cod
|
|||
|
||||
void InboundAudioStream::cleanupCodec() {
|
||||
// release any old codec encoder/decoder first...
|
||||
qDebug(audio) << "Cleanup Codec:" << _selectedCodecName;
|
||||
|
||||
if (_codec) {
|
||||
if (_decoder) {
|
||||
_codec->releaseDecoder(_decoder);
|
||||
|
|
Loading…
Reference in a new issue