Commit e740f8d9 authored by Max Kellermann's avatar Max Kellermann

decoder/Control: remove unused methods Lock(), Unlock()

parent 9da75099
......@@ -194,20 +194,6 @@ public:
}
/**
* Locks the object.
*/
void Lock() const noexcept {
mutex.lock();
}
/**
* Unlocks the object.
*/
void Unlock() const noexcept {
mutex.unlock();
}
/**
* Signals the object. This function is only valid in the
* player thread. The object should be locked prior to
* calling this function.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment