indexmanager: removed some unused debugging code

This commit is contained in:
itsmattkc
2020-02-20 02:22:15 +11:00
parent 4754ec384f
commit d1a9a29c5e
2 changed files with 0 additions and 4 deletions
@@ -116,8 +116,6 @@ void AudioRenderBackend::ConformUnavailable(StreamPtr stream, const TimeRange &r
void AudioRenderBackend::ConformUpdated(Stream *stream, const AudioRenderingParams &params)
{
qDebug() << "Got conform updated in ARB";
for (int i=0;i<conform_wait_info_.size();i++) {
const ConformWaitInfo& info = conform_wait_info_.at(i);
-2
View File
@@ -82,7 +82,6 @@ void IndexManager::IndexTaskFinished()
const IndexPair& stp = indexing_.at(i);
if (stp.task == sender()) {
//emit StreamIndexUpdated(stp.stream.get());
indexing_.removeAt(i);
return;
}
@@ -96,6 +95,5 @@ void IndexManager::StreamIndexUpdatedEvent()
void IndexManager::StreamConformAppendedEvent(const AudioRenderingParams &params)
{
qDebug() << "Got stream conform appended event";
emit StreamConformAppended(static_cast<Stream*>(sender()), params);
}