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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
/* gstreamer-app-1.0.vapi generated by vapigen, do not modify. */
[CCode (cprefix = "Gst", gir_namespace = "GstApp", gir_version = "1.0", lower_case_cprefix = "gst_")]
namespace Gst {
namespace App {
[CCode (cheader_filename = "gst/app/app.h", type_id = "gst_app_sink_get_type ()")]
[GIR (name = "AppSink")]
public class Sink : Gst.Base.Sink, Gst.URIHandler {
[CCode (has_construct_function = false)]
protected Sink ();
[Version (since = "1.12")]
public bool get_buffer_list_support ();
public Gst.Caps get_caps ();
public bool get_drop ();
public bool get_emit_signals ();
public uint get_max_buffers ();
public bool get_wait_on_eos ();
public bool is_eos ();
[Version (since = "1.12")]
public void set_buffer_list_support (bool enable_lists);
public void set_caps (Gst.Caps caps);
public void set_drop (bool drop);
public void set_emit_signals (bool emit);
public void set_max_buffers (uint max);
public void set_wait_on_eos (bool wait);
[NoAccessorMethod]
public bool buffer_list { get; set; }
public Gst.Caps caps { owned get; set; }
public bool drop { get; set; }
public bool emit_signals { get; set; }
[NoAccessorMethod]
public virtual bool eos { get; }
public uint max_buffers { get; set; }
public bool wait_on_eos { get; set; }
public virtual signal Gst.FlowReturn new_preroll ();
public virtual signal Gst.FlowReturn new_sample ();
[HasEmitter]
public virtual signal Gst.Sample pull_preroll ();
[HasEmitter]
public virtual signal Gst.Sample pull_sample ();
[HasEmitter]
[Version (since = "1.10")]
public virtual signal Gst.Sample try_pull_preroll (uint64 timeout);
[HasEmitter]
[Version (since = "1.10")]
public virtual signal Gst.Sample try_pull_sample (uint64 timeout);
}
[CCode (cheader_filename = "gst/app/app.h", type_id = "gst_app_src_get_type ()")]
[GIR (name = "AppSrc")]
public class Src : Gst.Base.Src, Gst.URIHandler {
[CCode (has_construct_function = false)]
protected Src ();
public Gst.Caps get_caps ();
[Version (since = "1.2")]
public uint64 get_current_level_bytes ();
[Version (since = "1.10")]
public Gst.ClockTime get_duration ();
public bool get_emit_signals ();
public void get_latency (out uint64 min, out uint64 max);
public uint64 get_max_bytes ();
public int64 get_size ();
public Gst.App.StreamType get_stream_type ();
public void set_caps (Gst.Caps caps);
[Version (since = "1.10")]
public void set_duration (Gst.ClockTime duration);
public void set_emit_signals (bool emit);
public void set_latency (uint64 min, uint64 max);
public void set_max_bytes (uint64 max);
public void set_size (int64 size);
public void set_stream_type (Gst.App.StreamType type);
[NoAccessorMethod]
public bool block { get; set; }
public Gst.Caps caps { owned get; set; }
public uint64 current_level_bytes { get; }
public uint64 duration { get; set; }
public bool emit_signals { get; set; }
[NoAccessorMethod]
public Gst.Format format { get; set; }
[NoAccessorMethod]
public bool is_live { get; set; }
public uint64 max_bytes { get; set; }
[NoAccessorMethod]
public int64 max_latency { get; set; }
[NoAccessorMethod]
public int64 min_latency { get; set; }
[NoAccessorMethod]
public uint min_percent { get; set; }
public int64 size { get; set; }
public Gst.App.StreamType stream_type { get; set; }
[HasEmitter]
public virtual signal Gst.FlowReturn end_of_stream ();
public virtual signal void enough_data ();
public virtual signal void need_data (uint length);
[HasEmitter]
public virtual signal Gst.FlowReturn push_buffer (Gst.Buffer buffer);
[HasEmitter]
[Version (since = "1.14")]
public virtual signal Gst.FlowReturn push_buffer_list (Gst.BufferList buffer_list);
[HasEmitter]
[Version (since = "1.6")]
public virtual signal Gst.FlowReturn push_sample (Gst.Sample sample);
public virtual signal bool seek_data (uint64 offset);
}
[CCode (cheader_filename = "gst/app/app.h", cprefix = "GST_APP_STREAM_TYPE_", type_id = "gst_app_stream_type_get_type ()")]
[GIR (name = "AppStreamType")]
public enum StreamType {
STREAM,
SEEKABLE,
RANDOM_ACCESS
}
}
}
|