From beebe2b7afc718c4145663bf0b5a5499439ae9b9 Mon Sep 17 00:00:00 2001 From: Jonas Holmberg Date: Tue, 9 Jul 2013 11:17:59 +0200 Subject: [PATCH] matroskademux: Unlock stream lock after use Stream lock of sink pad was not unlocked after non-updating seek. --- gst/matroska/matroska-demux.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gst/matroska/matroska-demux.c b/gst/matroska/matroska-demux.c index 022cc9378d..3345337685 100644 --- a/gst/matroska/matroska-demux.c +++ b/gst/matroska/matroska-demux.c @@ -2092,6 +2092,7 @@ next: /* ouch */ if (!update) { GST_PAD_STREAM_LOCK (demux->common.sinkpad); + pad_locked = TRUE; goto exit; }