gst/gst-0.10.10.ignore: API addition
authorEdward Hervey <bilboed@bilboed.com>
Thu, 31 Aug 2006 14:03:44 +0000 (14:03 +0000)
committerEdward Hervey <bilboed@bilboed.com>
Thu, 31 Aug 2006 14:03:44 +0000 (14:03 +0000)
Original commit message from CVS:
* gst/gst-0.10.10.ignore:
API addition
* gst/gst.defs:
Added new ghostpad functions.

ChangeLog
gst/gst-0.10.10.ignore
gst/gst.defs

index 29c769f..324d09f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2006-08-31  Edward Hervey  <edward@fluendo.com>
+
+       * gst/gst-0.10.10.ignore:
+       API addition
+       * gst/gst.defs:
+       Added new ghostpad functions.
+
 2006-08-29  Edward Hervey  <edward@fluendo.com>
 
        * gst/gst.override:
index 9861f65..d9e4b1d 100644 (file)
@@ -2,4 +2,6 @@
 ignore
    gst_segtrap_is_enabled
    gst_segtrap_set_enabled
+   gst_ghost_pad_new_from_template
+   gst_ghost_pad_new_no_target_from_template
 %%
index 2d88c42..dc82e9a 100644 (file)
   )
 )
 
+(define-function ghost_pad_new_from_template
+  (c-name "gst_ghost_pad_new_from_template")
+  (return-type "GstPad*")
+  (parameters
+    '("const-gchar*" "name")
+    '("GstPad*" "target")
+    '("GstPadTemplate*" "templ")
+  )
+)
+
+(define-function ghost_pad_new_no_target_from_template
+  (c-name "gst_ghost_pad_new_no_target_from_template")
+  (return-type "GstPad*")
+  (parameters
+    '("const-gchar*" "name")
+    '("GstPadTemplate*" "templ")
+  )
+)
+
 (define-method get_target
   (of-object "GstGhostPad")
   (c-name "gst_ghost_pad_get_target")