gst/: Add gstdebugutils.[ch] methods that weren't wrapped previously.

Original commit message from CVS:
* gst/gst-0.10.15.ignore:
* gst/gst-types.defs:
* gst/gst.defs:
Add gstdebugutils.[ch] methods that weren't wrapped previously.
We can now dump pipeline graphviz files from python ! :)
This commit is contained in:
Edward Hervey 2008-08-11 16:40:45 +00:00
parent 8c5646ea9e
commit d17feec22d
5 changed files with 46 additions and 1 deletions

View file

@ -1,3 +1,11 @@
2008-08-11 Edward Hervey <edward.hervey@collabora.co.uk>
* gst/gst-0.10.15.ignore:
* gst/gst-types.defs:
* gst/gst.defs:
Add gstdebugutils.[ch] methods that weren't wrapped previously.
We can now dump pipeline graphviz files from python ! :)
2008-07-02 Edward Hervey <edward.hervey@collabora.co.uk>
* configure.ac:

2
common

@ -1 +1 @@
Subproject commit 593bb114c6f5c32b529aa6443be4c2d60d6484c7
Subproject commit d70ca17ae6fbe6020996e4567275d5e14972ed45

View file

@ -16,8 +16,11 @@ ignore
GstURIHandler__proxy_do_get_protocols_full
GstURIHandler__do_get_type_full
GstURIHandler__proxy_do_get_type_full
GST_DEBUG_BIN_TO_DOT_FILE
GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS
%%
ignore-type
GstLFOControlSource
GstLFOWaveform
GstDebugGraphDetails
%%

View file

@ -426,6 +426,19 @@
)
)
(define-flags DebugGraphDetails
(in-module "Gst")
(c-name "GstDebugGraphDetails")
(gtype-id "GST_TYPE_DEBUG_GRAPH_DETAILS")
(values
'("media-type" "GST_DEBUG_GRAPH_SHOW_MEDIA_TYPE")
'("caps-details" "GST_DEBUG_GRAPH_SHOW_CAPS_DETAILS")
'("non-default-params" "GST_DEBUG_GRAPH_SHOW_NON_DEFAULT_PARAMS")
'("states" "GST_DEBUG_GRAPH_SHOW_STATES")
'("all" "GST_DEBUG_GRAPH_SHOW_ALL")
)
)
(define-flags ElementFlags
(in-module "Gst")
(c-name "GstElementFlags")

View file

@ -1047,6 +1047,27 @@
)
)
;; From ../gstreamer/gst/gstdebugutils.h
(define-function DEBUG_BIN_TO_DOT_FILE
(c-name "GST_DEBUG_BIN_TO_DOT_FILE")
(return-type "none")
(parameters
'("GstBin*" "bin")
'("GstDebugGraphDetails" "details")
'("const-gchar*" "filename")
)
)
(define-function DEBUG_BIN_TO_DOT_FILE_WITH_TS
(c-name "GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS")
(return-type "none")
(parameters
'("GstBin*" "bin")
'("GstDebugGraphDetails" "details")
'("const-gchar*" "filename")
)
)
;; From ../gstreamer/gst/gstelement.h