File: clutter-gst-1.0.vapi

package info (click to toggle)
vala-0.14 0.14.2-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 35,140 kB
  • sloc: ansic: 517,548; sh: 11,725; makefile: 1,433; yacc: 1,218; xml: 657; lex: 286; perl: 106
file content (36 lines) | stat: -rw-r--r-- 1,636 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[CCode (cprefix = "ClutterGst", lower_case_cprefix = "clutter_gst_", cheader_filename = "clutter-gst/clutter-gst.h")]
namespace ClutterGst {
	[CCode (lower_case_cprefix = "")]
	namespace Version {
		[CCode (cname = "CLUTTER_GST_MAJOR_VERSION")]
		public const int MAJOR;
		[CCode (cname = "CLUTTER_GST_MINOR_VERSION")]
		public const int MINOR;
		[CCode (cname = "CLUTTER_GST_MICRO_VERSION")]
		public const int MICRO;
		[CCode (cname = "CLUTTER_GST_VERSION_HEX")]
		public const int HEX;
		[CCode (cname = "CLUTTER_GST_VERSION_S")]
		public const string STRING;
		[CCode (cname = "CLUTTER_GST_CHECK_VERSION")]
		public bool check(int major, int minor, int micro);
	}
	public class VideoSink : Gst.BaseSink {
		[CCode (type = "GstElement*", has_construct_function = false)]
		public VideoSink (Clutter.Texture texture);
		[NoAccessorMethod]
		public Clutter.Texture texture { get; set; }
		[NoAccessorMethod]
		public int update_priority { get; set; }
	}
	public class VideoTexture : Clutter.Texture, Clutter.Media {
		[CCode (type = "ClutterActor*", has_construct_function = false)]
		public VideoTexture ();
		[CCode (type = "GstElement*")]
		public unowned Gst.Pipeline get_pipeline ();
		public string user_agent { owned get; set; }
		public Cogl.Handle idle_material { get; set; }
	}
	public static Clutter.InitError init ([CCode (array_length_pos = 0.9)] ref unowned string[] argv);
	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;
}