This commit is contained in:
Jared Bruni
2021-08-28 16:03:28 -07:00
parent 7be39b9019
commit e254dd3d6a
4 changed files with 19 additions and 6 deletions

View File

@@ -159,6 +159,13 @@ unsigned long Playback::allocatedFrames() {
}
void Playback::setWaitColorLevel(int w, int l) {
mutex.lock();
ac::setVariableWait(w);
ac::setColorLevel(l);
mutex.unlock();
}
void Playback::setSubFilter_(int s) {
mutex.lock();
ac::setSubFilter(s);