1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-16 17:41:14 +01:00

Use RAII idiom for lock and locking mutex in Sequence

This commit is contained in:
Paul Licameli
2016-02-03 12:58:30 -05:00
parent 13f7d0a81b
commit 6c28276daf
3 changed files with 17 additions and 5 deletions

View File

@@ -190,7 +190,7 @@ void ODComputeSummaryTask::Update()
seq = clip->GetSequence();
//This lock may be way too big since the whole file is one sequence.
//TODO: test for large files and find a way to break it down.
seq->LockDeleteUpdateMutex();
Sequence::DeleteUpdateMutexLocker locker(*seq);
//See Sequence::Delete() for why need this for now..
//We don't need the mBlockFilesMutex here because it is only for the vector list.
@@ -223,7 +223,6 @@ void ODComputeSummaryTask::Update()
tempBlocks.insert(tempBlocks.begin() + insertCursor++, odpcmaFile);
}
}
seq->UnlockDeleteUpdateMutex();
node = node->GetNext();
}
}