/usr/share/vala-0.14/vapi/gstreamer-app-0.10.vapi is in valac-0.14 0.14.2-2ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /* gstreamer-app-0.10.vapi generated by vapigen, do not modify. */
[CCode (cprefix = "Gst", lower_case_cprefix = "gst_")]
namespace Gst {
[CCode (cheader_filename = "gst/app/gstappsink.h")]
public class AppSink : Gst.BaseSink, Gst.URIHandler {
[CCode (has_construct_function = false)]
protected AppSink ();
public bool is_eos ();
public Gst.Buffer pull_buffer ();
public Gst.BufferList pull_buffer_list ();
public Gst.Buffer pull_preroll ();
public void set_callbacks (Gst.AppSinkCallbacks callbacks, GLib.DestroyNotify notify);
public Gst.Caps caps { get; set; }
public bool drop { get; set; }
public bool emit_signals { get; set; }
public uint max_buffers { get; set; }
public virtual signal void eos ();
public virtual signal void new_buffer ();
public virtual signal void new_buffer_list ();
public virtual signal void new_preroll ();
}
[CCode (cheader_filename = "gst/app/gstappsink.h")]
[Compact]
public class AppSinkCallbacks {
public weak GLib.Callback eos;
public weak GLib.Callback new_buffer;
public weak GLib.Callback new_buffer_list;
public weak GLib.Callback new_preroll;
}
[CCode (cheader_filename = "gst/app/gstappsrc.h")]
public class AppSrc : Gst.BaseSrc, Gst.URIHandler {
[CCode (has_construct_function = false)]
protected AppSrc ();
public Gst.FlowReturn end_of_stream ();
public Gst.FlowReturn push_buffer (owned Gst.Buffer buffer);
public void set_callbacks (Gst.AppSrcCallbacks callbacks, GLib.DestroyNotify notify);
[NoAccessorMethod]
public bool block { get; set; }
public Gst.Caps caps { 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.AppStreamType stream_type { get; set; }
public virtual signal void enough_data ();
public virtual signal void need_data (uint length);
public virtual signal bool seek_data (uint64 offset);
}
[CCode (cheader_filename = "gst/app/gstappsrc.h")]
[Compact]
public class AppSrcCallbacks {
public weak GLib.Callback enough_data;
public weak GLib.Callback need_data;
public weak GLib.Callback seek_data;
}
[CCode (cheader_filename = "gst/app/gstappsrc.h", cprefix = "GST_APP_STREAM_TYPE_")]
public enum AppStreamType {
STREAM,
SEEKABLE,
RANDOM_ACCESS
}
}
|