gst/mpegstream/gstmpegparse.c: set_clock returns a boolean.
authorWim Taymans <wim.taymans@gmail.com>
Tue, 22 Nov 2005 19:07:13 +0000 (19:07 +0000)
committerWim Taymans <wim.taymans@gmail.com>
Tue, 22 Nov 2005 19:07:13 +0000 (19:07 +0000)
Original commit message from CVS:
* gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_set_clock):
set_clock returns a boolean.

ChangeLog
gst/mpegstream/gstmpegparse.c

index 274c528..62f263e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-11-22  Wim Taymans  <wim@fluendo.com>
+
+       * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_set_clock):
+       set_clock returns a boolean.
+
 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
 
        * ext/mad/gstmad.c: (gst_mad_chain):
index 5c51d12..157bd68 100644 (file)
@@ -92,7 +92,8 @@ static void gst_mpeg_parse_init (GstMPEGParse * mpeg_parse);
 static GstStateChangeReturn gst_mpeg_parse_change_state (GstElement * element,
     GstStateChange transition);
 
-static void gst_mpeg_parse_set_clock (GstElement * element, GstClock * clock);
+static gboolean gst_mpeg_parse_set_clock (GstElement * element,
+    GstClock * clock);
 
 static gboolean gst_mpeg_parse_parse_packhead (GstMPEGParse * mpeg_parse,
     GstBuffer * buffer);
@@ -269,12 +270,14 @@ gst_mpeg_parse_init (GstMPEGParse * mpeg_parse)
   gst_mpeg_parse_reset (mpeg_parse);
 }
 
-static void
+static gboolean
 gst_mpeg_parse_set_clock (GstElement * element, GstClock * clock)
 {
   GstMPEGParse *parse = GST_MPEG_PARSE (element);
 
   parse->clock = clock;
+
+  return TRUE;
 }
 
 #if 0