diff options
author | Rico Tzschichholz <ricotz@ubuntu.com> | 2018-08-05 12:43:16 +0200 |
---|---|---|
committer | Rico Tzschichholz <ricotz@ubuntu.com> | 2018-08-05 12:43:16 +0200 |
commit | eac5c5685517f1b22e23a5d73b25cc3798f24567 (patch) | |
tree | 669d7283620e8ec578ac051ea386039b8a93627c /vapi/gstreamer-base-1.0.vapi | |
parent | a64e29c44a50748c7934ea846dc9875a13a9eaf9 (diff) | |
download | vala-eac5c5685517f1b22e23a5d73b25cc3798f24567.tar.gz |
gstreamer: Update from 1.15+ git master
Diffstat (limited to 'vapi/gstreamer-base-1.0.vapi')
-rw-r--r-- | vapi/gstreamer-base-1.0.vapi | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/vapi/gstreamer-base-1.0.vapi b/vapi/gstreamer-base-1.0.vapi index 21d37e7af..3d2218c79 100644 --- a/vapi/gstreamer-base-1.0.vapi +++ b/vapi/gstreamer-base-1.0.vapi @@ -98,7 +98,7 @@ namespace Gst { [NoWrapper] public virtual bool stop (); [NoWrapper] - public virtual Gst.FlowReturn update_src_caps (Gst.Caps caps, Gst.Caps ret); + public virtual Gst.FlowReturn update_src_caps (Gst.Caps caps, out Gst.Caps ret); [NoAccessorMethod] public uint64 latency { get; set; } [NoAccessorMethod] @@ -928,11 +928,20 @@ namespace Gst { public static Gst.Caps? type_find_helper (Gst.Pad src, uint64 size); [CCode (cheader_filename = "gst/base/base.h", cname = "gst_type_find_helper_for_buffer")] public static Gst.Caps? type_find_helper_for_buffer (Gst.Object? obj, Gst.Buffer buf, out Gst.TypeFindProbability prob); + [CCode (cheader_filename = "gst/base/base.h", cname = "gst_type_find_helper_for_buffer_with_extension")] + [Version (since = "1.16")] + public static Gst.Caps? type_find_helper_for_buffer_with_extension (Gst.Object? obj, Gst.Buffer buf, string? extension, out Gst.TypeFindProbability prob); [CCode (cheader_filename = "gst/base/base.h", cname = "gst_type_find_helper_for_data")] public static Gst.Caps? type_find_helper_for_data (Gst.Object? obj, [CCode (array_length_cname = "size", array_length_pos = 2.5, array_length_type = "gsize")] uint8[] data, out Gst.TypeFindProbability prob); + [CCode (cheader_filename = "gst/base/base.h", cname = "gst_type_find_helper_for_data_with_extension")] + [Version (since = "1.16")] + public static Gst.Caps? type_find_helper_for_data_with_extension (Gst.Object? obj, [CCode (array_length_cname = "size", array_length_pos = 2.5, array_length_type = "gsize")] uint8[] data, string? extension, out Gst.TypeFindProbability prob); [CCode (cheader_filename = "gst/base/base.h", cname = "gst_type_find_helper_for_extension")] public static Gst.Caps? type_find_helper_for_extension (Gst.Object? obj, string extension); [CCode (cheader_filename = "gst/base/base.h", cname = "gst_type_find_helper_get_range")] - public static Gst.Caps? type_find_helper_get_range (Gst.Object obj, Gst.Object? parent, Gst.Base.TypeFindHelperGetRangeFunction func, uint64 size, string extension, out Gst.TypeFindProbability prob); + public static Gst.Caps? type_find_helper_get_range (Gst.Object obj, Gst.Object? parent, Gst.Base.TypeFindHelperGetRangeFunction func, uint64 size, string? extension, out Gst.TypeFindProbability prob); + [CCode (cheader_filename = "gst/base/base.h", cname = "gst_type_find_helper_get_range_full")] + [Version (since = "1.14.3")] + public static Gst.FlowReturn type_find_helper_get_range_full (Gst.Object obj, Gst.Object? parent, Gst.Base.TypeFindHelperGetRangeFunction func, uint64 size, string? extension, out Gst.Caps caps, out Gst.TypeFindProbability prob); } } |