Merge pull request #9006 from alalek:videoio_synchronize_ffmpeg_open

pull/9009/head
Maksim Shabunin 8 years ago
commit 58c5be0002
  1. 17
      modules/videoio/src/cap_ffmpeg_impl.hpp

@ -716,12 +716,25 @@ static int LockCallBack(void **mutex, AVLockOp op)
static ImplMutex _mutex; static ImplMutex _mutex;
static bool _initialized = false; static bool _initialized = false;
class AutoLock
{
public:
AutoLock(ImplMutex& m) : mutex(&m) { mutex->lock(); }
~AutoLock() { mutex->unlock(); }
protected:
ImplMutex* mutex;
private:
AutoLock(const AutoLock&); // disabled
AutoLock& operator = (const AutoLock&); // disabled
};
class InternalFFMpegRegister class InternalFFMpegRegister
{ {
public: public:
InternalFFMpegRegister() InternalFFMpegRegister()
{ {
_mutex.lock(); AutoLock lock(_mutex);
if (!_initialized) if (!_initialized)
{ {
#if LIBAVFORMAT_BUILD >= CALC_FFMPEG_VERSION(53, 13, 0) #if LIBAVFORMAT_BUILD >= CALC_FFMPEG_VERSION(53, 13, 0)
@ -738,7 +751,6 @@ public:
_initialized = true; _initialized = true;
} }
_mutex.unlock();
} }
~InternalFFMpegRegister() ~InternalFFMpegRegister()
@ -752,6 +764,7 @@ static InternalFFMpegRegister _init;
bool CvCapture_FFMPEG::open( const char* _filename ) bool CvCapture_FFMPEG::open( const char* _filename )
{ {
AutoLock lock(_mutex);
unsigned i; unsigned i;
bool valid = false; bool valid = false;

Loading…
Cancel
Save