Hack around crash on exist of tests due to race between ~FFmpeg and __cxa_finalize.
authorCarl Hetherington <cth@carlh.net>
Fri, 2 May 2014 16:45:42 +0000 (17:45 +0100)
committerCarl Hetherington <cth@carlh.net>
Fri, 2 May 2014 16:45:42 +0000 (17:45 +0100)
src/lib/ffmpeg.cc
src/lib/ffmpeg.h

index a98aa98289e6839dedf04ccc557c33b68d1e9c71..b78a0bbf65760bd6b6b44d170b6450fd270d4229 100644 (file)
@@ -35,7 +35,13 @@ using std::stringstream;
 using boost::shared_ptr;
 using boost::lexical_cast;
 
-boost::mutex FFmpeg::_mutex;
+/* This should not really be a pointer, but I find that __cxa_finalize tries
+ * to destroy the mutex while a call to ~FFmpeg is in progress; this crashes
+ * with a failure of assert (!posix::pthread_mutex_destroy(&m));
+ *
+ * The hacky work-around is never to destroy the mutex...
+ */
+boost::mutex* FFmpeg::_mutex;
 
 FFmpeg::FFmpeg (boost::shared_ptr<const FFmpegContent> c)
        : _ffmpeg_content (c)
@@ -46,6 +52,10 @@ FFmpeg::FFmpeg (boost::shared_ptr<const FFmpegContent> c)
        , _frame (0)
        , _video_stream (-1)
 {
+       if (!_mutex) {
+               _mutex = new boost::mutex ();
+       }
+       
        setup_general ();
        setup_video ();
        setup_audio ();
@@ -53,7 +63,7 @@ FFmpeg::FFmpeg (boost::shared_ptr<const FFmpegContent> c)
 
 FFmpeg::~FFmpeg ()
 {
-       boost::mutex::scoped_lock lm (_mutex);
+       boost::mutex::scoped_lock lm (*_mutex);
 
        for (uint32_t i = 0; i < _format_context->nb_streams; ++i) {
                AVCodecContext* context = _format_context->streams[i]->codec;
@@ -145,7 +155,7 @@ FFmpeg::setup_general ()
 void
 FFmpeg::setup_video ()
 {
-       boost::mutex::scoped_lock lm (_mutex);
+       boost::mutex::scoped_lock lm (*_mutex);
 
        assert (_video_stream >= 0);
        AVCodecContext* context = _format_context->streams[_video_stream]->codec;
@@ -163,7 +173,7 @@ FFmpeg::setup_video ()
 void
 FFmpeg::setup_audio ()
 {
-       boost::mutex::scoped_lock lm (_mutex);
+       boost::mutex::scoped_lock lm (*_mutex);
 
        for (uint32_t i = 0; i < _format_context->nb_streams; ++i) {
                AVCodecContext* context = _format_context->streams[i]->codec;
index 760918437d403dd0624984e31a07fb0bdddff583..04be4873a35f68078e6bfb08d2da5ccb2d324f81 100644 (file)
@@ -75,7 +75,7 @@ protected:
           a mutex around calls to avcodec_open* and avcodec_close... and here
           it is.
        */
-       static boost::mutex _mutex;
+       static boost::mutex* _mutex;
 
 private:
        void setup_general ();