summaryrefslogtreecommitdiffstats
path: root/gst/valve
diff options
context:
space:
mode:
Diffstat (limited to 'gst/valve')
-rw-r--r--gst/valve/gstvalve.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/gst/valve/gstvalve.c b/gst/valve/gstvalve.c
index d057b027..a730ca1a 100644
--- a/gst/valve/gstvalve.c
+++ b/gst/valve/gstvalve.c
@@ -273,15 +273,17 @@ gst_valve_buffer_alloc (GstPad * pad, guint64 offset, guint size,
GST_OBJECT_LOCK (GST_OBJECT (valve));
if (valve->drop)
{
+ GST_OBJECT_UNLOCK (GST_OBJECT (valve));
*buf = gst_buffer_new_and_alloc (size);
GST_BUFFER_OFFSET (*buf) = offset;
gst_buffer_set_caps (*buf, caps);
}
else
{
- ret = valve->original_allocfunc (pad, offset, size, caps, buf);
+ GstPadBufferAllocFunction allocfunc = valve->original_allocfunc;
+ GST_OBJECT_UNLOCK (GST_OBJECT (valve));
+ ret = allocfunc (pad, offset, size, caps, buf);
}
- GST_OBJECT_UNLOCK (GST_OBJECT (valve));
gst_object_unref (valve);