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:
parent
8c5646ea9e
commit
d17feec22d
@ -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>
|
2008-07-02 Edward Hervey <edward.hervey@collabora.co.uk>
|
||||||
|
|
||||||
* configure.ac:
|
* configure.ac:
|
||||||
|
2
common
2
common
@ -1 +1 @@
|
|||||||
Subproject commit 593bb114c6f5c32b529aa6443be4c2d60d6484c7
|
Subproject commit d70ca17ae6fbe6020996e4567275d5e14972ed45
|
@ -16,8 +16,11 @@ ignore
|
|||||||
GstURIHandler__proxy_do_get_protocols_full
|
GstURIHandler__proxy_do_get_protocols_full
|
||||||
GstURIHandler__do_get_type_full
|
GstURIHandler__do_get_type_full
|
||||||
GstURIHandler__proxy_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
|
ignore-type
|
||||||
GstLFOControlSource
|
GstLFOControlSource
|
||||||
GstLFOWaveform
|
GstLFOWaveform
|
||||||
|
GstDebugGraphDetails
|
||||||
%%
|
%%
|
||||||
|
@ -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
|
(define-flags ElementFlags
|
||||||
(in-module "Gst")
|
(in-module "Gst")
|
||||||
(c-name "GstElementFlags")
|
(c-name "GstElementFlags")
|
||||||
|
21
gst/gst.defs
21
gst/gst.defs
@ -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
|
;; From ../gstreamer/gst/gstelement.h
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user