X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=include%2Fvlc_avcodec.h;h=fd3d2e6b258dfc611cbf7d1c1eb6322bd210a8fd;hb=12ade3e3bc975d5426ba4af155b7372c31093b31;hp=fc5a3a99bd3215043a5b293cb612d8ae97fd1ef2;hpb=6f037fa47876b4270133259f2d5f5ae545b2689a;p=vlc diff --git a/include/vlc_avcodec.h b/include/vlc_avcodec.h index fc5a3a99bd..fd3d2e6b25 100644 --- a/include/vlc_avcodec.h +++ b/include/vlc_avcodec.h @@ -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 @@ -21,16 +21,14 @@ #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