gst/gst-0.10.10.ignore: API addition

Original commit message from CVS:
* gst/gst-0.10.10.ignore:
API addition
* gst/gst.defs:
Added new ghostpad functions.
This commit is contained in:
Edward Hervey 2006-08-31 14:03:44 +00:00
parent bef4334ee2
commit 9f017ec3e9
3 changed files with 28 additions and 0 deletions

View file

@ -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:

View 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
%%

View file

@ -2094,6 +2094,25 @@
)
)
(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")