summaryrefslogtreecommitdiffstats
path: root/gst
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2005-11-21 17:37:41 +0000
committerWim Taymans <wim.taymans@gmail.com>2005-11-21 17:37:41 +0000
commitb99bef3e5855ca02749f9f4643b77df4e172c439 (patch)
tree471351e5ad810278275b817505b711c47d7bb8a1 /gst
parente879eec880a5b1286f350b31181e50c00b2dc8a4 (diff)
Fix for stream lock updates.
Original commit message from CVS: * ext/faac/gstfaac.c: (gst_faac_sink_event): * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_src_event): * gst/tta/gstttaparse.c: (gst_tta_parse_src_event): Fix for stream lock updates.
Diffstat (limited to 'gst')
-rw-r--r--gst/qtdemux/qtdemux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/qtdemux/qtdemux.c b/gst/qtdemux/qtdemux.c
index 9a598554..8d0d5c3e 100644
--- a/gst/qtdemux/qtdemux.c
+++ b/gst/qtdemux/qtdemux.c
@@ -358,7 +358,7 @@ gst_qtdemux_handle_src_event (GstPad * pad, GstEvent * event)
}
gst_pad_event_default (pad, gst_event_new_flush_start ());
- GST_STREAM_LOCK (pad);
+ GST_PAD_STREAM_LOCK (pad);
/* resync to new time */
for (n = 0; n < qtdemux->n_streams; n++) {
@@ -378,7 +378,7 @@ gst_qtdemux_handle_src_event (GstPad * pad, GstEvent * event)
gst_pad_start_task (qtdemux->sinkpad,
(GstTaskFunction) gst_qtdemux_loop_header, qtdemux->sinkpad);
- GST_STREAM_UNLOCK (pad);
+ GST_PAD_STREAM_UNLOCK (pad);
break;
}
default: