gst/gst.defs: Updating defs file
authorEdward Hervey <bilboed@bilboed.com>
Mon, 18 Jul 2005 16:40:41 +0000 (16:40 +0000)
committerEdward Hervey <bilboed@bilboed.com>
Mon, 18 Jul 2005 16:40:41 +0000 (16:40 +0000)
Original commit message from CVS:
* gst/gst.defs: Updating defs file

ChangeLog
common
gst/gst.defs

index d26a02f..bba33b9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2005-07-18  Edward Hervey  <edward@fluendo.com>
+
+       * gst/gst.defs: Updating defs file
+
 2005-07-13  Edward Hervey  <edward@fluendo.com>
 
        * gst/gst-types.defs: (MessageType):
diff --git a/common b/common
index ac7272b..6f9b691 160000 (submodule)
--- a/common
+++ b/common
@@ -1 +1 @@
-Subproject commit ac7272b7af934c2294a44ac1c0f3fac3f8d17ec6
+Subproject commit 6f9b691adc2a0300598311671dd7c4d9d2035afa
index 7e24f0c..239c4ad 100644 (file)
   )
 )
 
+(define-method truncate
+  (of-object "GstCaps")
+  (c-name "gst_caps_truncate")
+  (return-type "none")
+)
+
 (define-method set_simple
   (of-object "GstCaps")
   (c-name "gst_caps_set_simple")
   )
 )
 
+(define-method set_base_time
+  (of-object "GstElement")
+  (c-name "gst_element_set_base_time")
+  (return-type "none")
+  (parameters
+    '("GstClockTime" "time")
+  )
+)
+
+(define-method get_base_time
+  (of-object "GstElement")
+  (c-name "gst_element_get_base_time")
+  (return-type "GstClockTime")
+)
+
 (define-method is_indexable
   (of-object "GstElement")
   (c-name "gst_element_is_indexable")
   (return-type "GstBus*")
 )
 
+(define-method set_new_stream_time
+  (of-object "GstPipeline")
+  (c-name "gst_pipeline_set_new_stream_time")
+  (return-type "none")
+  (parameters
+    '("GstClockTime" "time")
+  )
+)
+
+(define-method get_last_stream_time
+  (of-object "GstPipeline")
+  (c-name "gst_pipeline_get_last_stream_time")
+  (return-type "GstClockTime")
+)
+
 (define-method use_clock
   (of-object "GstPipeline")
   (c-name "gst_pipeline_use_clock")
   )
 )
 
+(define-method link_pads_filtered
+  (of-object "GstElement")
+  (c-name "gst_element_link_pads_filtered")
+  (return-type "gboolean")
+  (parameters
+    '("const-gchar*" "srcpadname")
+    '("GstElement*" "dest")
+    '("const-gchar*" "destpadname")
+    '("GstCaps*" "filter")
+  )
+)
+
 (define-method can_src_caps
   (of-object "GstElementFactory")
   (c-name "gst_element_factory_can_src_caps")
   )
 )
 
+(define-method get_parent_element
+  (of-object "GstPad")
+  (c-name "gst_pad_get_parent_element")
+  (return-type "GstElement*")
+)
+
 (define-method query_position
   (of-object "GstPad")
   (c-name "gst_pad_query_position")