]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
Add GST_DEBUG_BIN_TO_DOT_FILE binding, patch by Thijs Vermeir, fixes bug
authorJürg Billeter <j@bitron.ch>
Tue, 22 Jul 2008 15:54:18 +0000 (15:54 +0000)
committerJürg Billeter <juergbi@src.gnome.org>
Tue, 22 Jul 2008 15:54:18 +0000 (15:54 +0000)
2008-07-22  Jürg Billeter  <j@bitron.ch>

* vapi/packages/gstreamer-0.10/:

Add GST_DEBUG_BIN_TO_DOT_FILE binding,
patch by Thijs Vermeir, fixes bug 543759

* vapi/gstreamer-0.10.vapi: regenerated

svn path=/trunk/; revision=1723

ChangeLog
vapi/gstreamer-0.10.vapi
vapi/packages/gstreamer-0.10/gstreamer-0.10-custom.vala

index d9bd158bf2c8d5f30f52739373952e4ea453fc16..2fcdd384e155763175203793f107af532a3f3808 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2008-07-22  Jürg Billeter  <j@bitron.ch>
+
+       * vapi/packages/gstreamer-0.10/:
+
+       Add GST_DEBUG_BIN_TO_DOT_FILE binding,
+       patch by Thijs Vermeir, fixes bug 543759
+
+       * vapi/gstreamer-0.10.vapi: regenerated
+
 2008-07-22  Jürg Billeter  <j@bitron.ch>
 
        * vapi/packages/gstreamer-0.10/:
index 42ec2a9f8fd23ec94e3a25a5bd6c8d583c6d632a..cde7b3daea900871eca69af2096c5649b9e2a729 100644 (file)
@@ -2089,6 +2089,10 @@ namespace Gst {
        public const int VERSION_NANO;
        [CCode (cheader_filename = "gst/gst.h")]
        public static void init ([CCode (array_length_pos = 0.9)] ref weak string[] args);
+       [CCode (cname = "GST_DEBUG_BIN_TO_DOT_FILE", cheader_filename = "gst/gst.h")]
+       public static void debug_bin_to_dot_file (Gst.Bin bin, Gst.DebugGraphDetails details, string prefix);
+       [CCode (cname = "GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS", cheader_filename = "gst/gst.h")]
+       public static void debug_bin_to_dot_file_with_ts (Gst.Bin bin, Gst.DebugGraphDetails details, string prefix);
        [CCode (cheader_filename = "gst/gst.h")]
        public static void atomic_int_set (int atomic_int, int value);
        [CCode (cheader_filename = "gst/gst.h")]
index c0f8039c9a4e31dd1c4f9f1620d1c29cca6acb09..ec565ab2f4f738dcb9b372ea50c097eb62b9243c 100644 (file)
@@ -41,6 +41,11 @@ namespace Gst {
                public void unref ();
        }
 
+       [CCode (cname="GST_DEBUG_BIN_TO_DOT_FILE")]
+       public static void debug_bin_to_dot_file (Bin bin, DebugGraphDetails details, string prefix);
+       [CCode (cname="GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS")]
+       public static void debug_bin_to_dot_file_with_ts (Bin bin, DebugGraphDetails details, string prefix);
+
        [CCode (cname = "GValue")]
        public struct Value : GLib.Value {