From 665071212694d95c595eff294eff9349d56873d1 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Mon, 6 Aug 2001 19:52:27 +0000 Subject: [PATCH] Added a missing UNLOCK macro. Original commit message from CVS: Added a missing UNLOCK macro. --- gst/gstbufferpool.h | 1 + 1 file changed, 1 insertion(+) diff --git a/gst/gstbufferpool.h b/gst/gstbufferpool.h index e8b8908dbc..36c34dd6c3 100644 --- a/gst/gstbufferpool.h +++ b/gst/gstbufferpool.h @@ -34,6 +34,7 @@ extern "C" { #define GST_BUFFER_POOL(pool) \ ((GstBufferPool *)(pool)) #define GST_BUFFER_POOL_LOCK(pool) (g_mutex_lock(GST_BUFFER_POOL(pool)->lock)) +#define GST_BUFFER_POOL_UNLOCK(pool) (g_mutex_unlock(GST_BUFFER_POOL(pool)->lock)) typedef struct _GstBufferPool GstBufferPool;