mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-04-16 14:17:12 +02:00
Remove debugging logging.
This commit is contained in:
parent
62b8165b7d
commit
3b3ee6fbbe
2 changed files with 0 additions and 10 deletions
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue