]> git.sesse.net Git - vlc/commitdiff
Add a centralized avcodec lock
authorRémi Denis-Courmont <remi@remlab.net>
Thu, 12 Mar 2009 15:27:37 +0000 (17:27 +0200)
committerRémi Denis-Courmont <remi@remlab.net>
Thu, 12 Mar 2009 15:41:49 +0000 (17:41 +0200)
avcodec is used from at least three different plugins: avcodec,
switcher (which seems dead though) and indirectly in avformat. We need
to have a common interlock for all of these.

include/vlc_avcodec.h [new file with mode: 0644]
src/Makefile.am
src/libvlc.c
src/libvlccore.sym

diff --git a/include/vlc_avcodec.h b/include/vlc_avcodec.h
new file mode 100644 (file)
index 0000000..fc5a3a9
--- /dev/null
@@ -0,0 +1,36 @@
+/*****************************************************************************
+ * vlc_avcodec.h: VLC thread support for FFMPEG/libavcodec
+ *****************************************************************************
+ * Copyright (C) 2009 Rémi Denis-Courmont
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
+ *****************************************************************************/
+
+#ifndef VLC_AVCODEC_H
+# define VLC_AVCODEC_H 1
+
+VLC_EXPORT( void, vlc_avcodec_mutex, (bool) );
+
+static inline void vlc_avcodec_lock (void)
+{
+    vlc_avcodec_mutex (true);
+}
+
+static inline void vlc_avcodec_unlock (void)
+{
+    vlc_avcodec_mutex (false);
+}
+
+#endif
index ef2f3e36b9aaa6c82bf93263fd5bd80a5657ae69..eabdb6c90945e2388c2a8ffc8ff4fa11b24f8358 100644 (file)
@@ -41,6 +41,7 @@ pluginsinclude_HEADERS = \
        ../include/vlc_acl.h \
        ../include/vlc_aout.h \
        ../include/vlc_arrays.h \
+       ../include/vlc_avcodec.h \
        ../include/vlc_bits.h \
        ../include/vlc_block.h \
        ../include/vlc_block_helper.h \
index 2f1e641102d16bb6473c24e469b1194ac8670213..e4a1a8e780adf98d0062ef7d19f19cc179defed2 100644 (file)
@@ -2130,3 +2130,15 @@ static void InitDeviceValues( libvlc_int_t *p_vlc )
     (void)p_vlc;
 #endif /* HAVE_HAL */
 }
+
+#include <vlc_avcodec.h>
+
+void vlc_avcodec_mutex (bool acquire)
+{
+    static vlc_mutex_t lock = VLC_STATIC_MUTEX;
+
+    if (acquire)
+        vlc_mutex_lock (&lock);
+    else
+        vlc_mutex_unlock (&lock);
+}
index 2419796a566168af5053fb47953293e5ef863381..db21b469b3d847b2877198cbe6c1a7ed36836d07 100644 (file)
@@ -409,6 +409,7 @@ var_SetChecked
 __var_TriggerCallback
 __var_Type
 video_format_FixRgb
+vlc_avcodec_mutex
 vlc_b64_decode
 vlc_b64_decode_binary
 vlc_b64_decode_binary_to_buffer