removed unnecessary mutex

This commit is contained in:
Matt Hill
2014-07-03 12:13:38 -04:00
parent cd2b99f26d
commit 25edfef9dd

View File

@@ -40,7 +40,7 @@ class VideoDispatcher
void setLatestFrame(cv::Mat* frame)
{
tthread::lock_guard<tthread::mutex> guard(mMutex);
//tthread::lock_guard<tthread::mutex> guard(mMutex);
this->latestFrame = frame;
this->latestFrameNumber++;