From 20f9738c10125e4b4749994c49ef39e363985483 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Tue, 23 Aug 2011 09:23:33 +0200 Subject: [PATCH] hlsdemux: Use FALSE instead of 0 for a bool parameter --- gst/hls/gsthlsdemux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/hls/gsthlsdemux.c b/gst/hls/gsthlsdemux.c index aabd965e36..98b099bef9 100644 --- a/gst/hls/gsthlsdemux.c +++ b/gst/hls/gsthlsdemux.c @@ -716,7 +716,7 @@ gst_hls_demux_loop (GstHLSDemux * demux) GST_DEBUG_OBJECT (demux, "Sending new-segment. Segment start:%" GST_TIME_FORMAT, GST_TIME_ARGS (demux->position)); gst_pad_push_event (demux->srcpad, - gst_event_new_new_segment (0, 1.0, GST_FORMAT_TIME, demux->position, + gst_event_new_new_segment (FALSE, 1.0, GST_FORMAT_TIME, demux->position, GST_CLOCK_TIME_NONE, demux->position)); demux->need_segment = FALSE; }