mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-06-05 06:33:57 +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) {
|
if (track && track->state.id == audio && track->lastUpdateWhen > 0) {
|
||||||
result.trackTime = track->lastUpdatePosition;
|
result.trackTime = track->lastUpdatePosition;
|
||||||
result.worldTime = track->lastUpdateWhen;
|
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;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
|
@ -394,9 +394,6 @@ auto AbstractAudioFFMpegLoader::fillFrameFromQueued()
|
||||||
if (!queued.frame) {
|
if (!queued.frame) {
|
||||||
return ReadError::EndOfFile;
|
return ReadError::EndOfFile;
|
||||||
}
|
}
|
||||||
LOG(("Returning At %1 Data: %2"
|
|
||||||
).arg(queued.position
|
|
||||||
).arg(quintptr(queued.frame->extended_data[0])));
|
|
||||||
return &queued;
|
return &queued;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -674,9 +671,6 @@ void AbstractAudioFFMpegLoader::enqueueNormalFrame(
|
||||||
.samples = samples,
|
.samples = samples,
|
||||||
.frame = FFmpeg::DuplicateFramePointer(frame),
|
.frame = FFmpeg::DuplicateFramePointer(frame),
|
||||||
});
|
});
|
||||||
LOG(("Added At %1 Data: %2"
|
|
||||||
).arg(_framesQueued.back().position
|
|
||||||
).arg(quintptr(_framesQueued.back().frame->extended_data[0])));
|
|
||||||
_framesQueuedSamples += samples;
|
_framesQueuedSamples += samples;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue