]> git.sesse.net Git - vlc/blobdiff - include/vlc_avcodec.h
Use var_Inherit* instead of var_CreateGet*.
[vlc] / include / vlc_avcodec.h
index fc5a3a99bd3215043a5b293cb612d8ae97fd1ef2..fd3d2e6b258dfc611cbf7d1c1eb6322bd210a8fd 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * vlc_avcodec.h: VLC thread support for FFMPEG/libavcodec
  *****************************************************************************
- * Copyright (C) 2009 Rémi Denis-Courmont
+ * Copyright (C) 2009-2010 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
 #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);
+    vlc_global_lock (VLC_AVCODEC_MUTEX);
 }
 
 static inline void vlc_avcodec_unlock (void)
 {
-    vlc_avcodec_mutex (false);
+    vlc_global_unlock (VLC_AVCODEC_MUTEX);
 }
 
 #endif