Remove debugging logging.

This commit is contained in:
John Preston 2023-03-10 10:10:18 +04:00
parent 62b8165b7d
commit 3b3ee6fbbe
2 changed files with 0 additions and 10 deletions

View File

@ -819,10 +819,6 @@ Streaming::TimePoint Mixer::getExternalSyncTimePoint(
if (track && track->state.id == audio && track->lastUpdateWhen > 0) {
result.trackTime = track->lastUpdatePosition;
result.worldTime = track->lastUpdateWhen;
LOG(("Sync: Track Time %1, World Time: %2, Speed: %3"
).arg(result.trackTime / 1000.
).arg(result.worldTime / 1000.
).arg(track->speed));
}
return result;
}

View File

@ -394,9 +394,6 @@ auto AbstractAudioFFMpegLoader::fillFrameFromQueued()
if (!queued.frame) {
return ReadError::EndOfFile;
}
LOG(("Returning At %1 Data: %2"
).arg(queued.position
).arg(quintptr(queued.frame->extended_data[0])));
return &queued;
}
@ -674,9 +671,6 @@ void AbstractAudioFFMpegLoader::enqueueNormalFrame(
.samples = samples,
.frame = FFmpeg::DuplicateFramePointer(frame),
});
LOG(("Added At %1 Data: %2"
).arg(_framesQueued.back().position
).arg(quintptr(_framesQueued.back().frame->extended_data[0])));
_framesQueuedSamples += samples;
}