Added a missing UNLOCK macro.

Original commit message from CVS:
Added a missing UNLOCK macro.
This commit is contained in:
Wim Taymans 2001-08-06 19:52:27 +00:00
parent 6a448d5a0b
commit 6650712126

View file

@ -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;