1 [CCode (cprefix = "ClutterGst", lower_case_cprefix = "clutter_gst_", cheader_filename = "clutter-gst/clutter-gst.h")]
3 [CCode (lower_case_cprefix = "")]
5 [CCode (cname = "CLUTTER_GST_MAJOR_VERSION")]
6 public const int MAJOR;
7 [CCode (cname = "CLUTTER_GST_MINOR_VERSION")]
8 public const int MINOR;
9 [CCode (cname = "CLUTTER_GST_MICRO_VERSION")]
10 public const int MICRO;
11 [CCode (cname = "CLUTTER_GST_VERSION_HEX")]
13 [CCode (cname = "CLUTTER_GST_VERSION_S")]
14 public const string STRING;
15 [CCode (cname = "CLUTTER_GST_CHECK_VERSION")]
16 public bool check(int major, int minor, int micro);
18 public class VideoSink : Gst.BaseSink {
19 [CCode (type = "GstElement*", has_construct_function = false)]
20 public VideoSink (Clutter.Texture texture);
22 public Clutter.Texture texture { get; set; }
24 public int update_priority { get; set; }
26 public class VideoTexture : Clutter.Texture, Clutter.Media {
27 [CCode (type = "ClutterActor*", has_construct_function = false)]
28 public VideoTexture ();
29 [CCode (type = "GstElement*")]
30 public unowned Gst.Pipeline get_pipeline ();
31 public string user_agent { owned get; set; }
32 public Cogl.Handle idle_material { get; set; }
34 public static Clutter.InitError init ([CCode (array_length_pos = 0.9)] ref unowned string[] argv);
35 public static Clutter.InitError init_with_args ([CCode (array_length_pos = 0.9)] ref unowned string[] argv, string parameter_string, [CCode (array_length = false)] GLib.OptionEntry[] entries, string translation_domain) throws GLib.OptionError;