mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 05:57:29 +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) {
|
void InboundAudioStream::setupCodec(CodecPluginPointer codec, const QString& codecName, int numChannels) {
|
||||||
qDebug(audio) << "Setup Codec:" << codecName;
|
|
||||||
cleanupCodec(); // cleanup any previously allocated coders first
|
cleanupCodec(); // cleanup any previously allocated coders first
|
||||||
_codec = codec;
|
_codec = codec;
|
||||||
_selectedCodecName = codecName;
|
_selectedCodecName = codecName;
|
||||||
|
@ -538,8 +537,6 @@ void InboundAudioStream::setupCodec(CodecPluginPointer codec, const QString& cod
|
||||||
|
|
||||||
void InboundAudioStream::cleanupCodec() {
|
void InboundAudioStream::cleanupCodec() {
|
||||||
// release any old codec encoder/decoder first...
|
// release any old codec encoder/decoder first...
|
||||||
qDebug(audio) << "Cleanup Codec:" << _selectedCodecName;
|
|
||||||
|
|
||||||
if (_codec) {
|
if (_codec) {
|
||||||
if (_decoder) {
|
if (_decoder) {
|
||||||
_codec->releaseDecoder(_decoder);
|
_codec->releaseDecoder(_decoder);
|
||||||
|
|
Loading…
Reference in a new issue