Bugfix #30 : Reimplemented MediaImpl removing the defective queue system and implementing a thread-safe system. Removed the memory leaks previously shown by valgrind.

This commit is contained in:
Tats
2014-10-20 17:00:22 +00:00
parent c00bf868ad
commit 7fe2a1f1a7
5 changed files with 103 additions and 73 deletions

View File

@@ -105,6 +105,14 @@ void Media::rewind()
impl_->resetMovie();
}
void Media::lockMutex() {
impl_->lockMutex();
}
void Media::unlockMutex() {
impl_->unlockMutex();
}
const uchar* Media::_getBits() const
{
return this->impl_->getBits();