diff options
author | Diego Elio Pettenò | 2011-01-24 23:36:13 +0000 |
---|---|---|
committer | Mans Rullgard | 2011-01-24 23:45:46 +0000 |
commit | bb875b75bab4d1713f8251746b01785c19965a9f (patch) | |
tree | d26a1de91f3b1659432d1f84134e1e535b2eaef8 /libavcodec/utils.c | |
parent | 3568853f63e1ab8ff1fc0773a132d14187a0e2d8 (diff) |
Make the ff_lockmgr_cb function pointer static to utils.c
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/utils.c')
-rw-r--r-- | libavcodec/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c index 02b9fd6904..53a0674323 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -45,7 +45,7 @@ #include <float.h> static int volatile entangled_thread_counter=0; -int (*ff_lockmgr_cb)(void **mutex, enum AVLockOp op); +static int (*ff_lockmgr_cb)(void **mutex, enum AVLockOp op); static void *codec_mutex; void *av_fast_realloc(void *ptr, unsigned int *size, FF_INTERNALC_MEM_TYPE min_size) |