]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
gstreamer: Update from 1.15.2+ git master
authorRico Tzschichholz <ricotz@ubuntu.com>
Mon, 25 Mar 2019 09:19:31 +0000 (10:19 +0100)
committerRico Tzschichholz <ricotz@ubuntu.com>
Mon, 25 Mar 2019 09:19:31 +0000 (10:19 +0100)
vapi/gst-editing-services-1.0.vapi
vapi/gstreamer-audio-1.0.vapi
vapi/gstreamer-base-1.0.vapi
vapi/gstreamer-video-1.0.vapi

index 951ae391f2ef7ca5c3ba350bd039c8bf0796b9c5..596930d8e7113bd3ab8e78b6202f4ba0f53221f5 100644 (file)
@@ -456,6 +456,7 @@ namespace GES {
                public GLib.Value get_child_property_by_pspec (GLib.ParamSpec pspec);
                public Gst.ClockTime get_duration ();
                public Gst.ClockTime get_inpoint ();
+               public virtual uint32 get_layer_priority ();
                public Gst.ClockTime get_max_duration ();
                public string get_name ();
                public GES.TimelineElement? get_parent ();
@@ -819,7 +820,8 @@ namespace GES {
                [CCode (cname = "GES_EDGE_END")]
                EDGE_END,
                [CCode (cname = "GES_EDGE_NONE")]
-               EDGE_NONE
+               EDGE_NONE;
+               public unowned string name ();
        }
        [CCode (cheader_filename = "ges/ges.h", cprefix = "GES_EDIT_MODE_", type_id = "ges_edit_mode_get_type ()")]
        public enum EditMode {
@@ -1005,8 +1007,10 @@ namespace GES {
        [CCode (cheader_filename = "ges/ges.h", has_target = false)]
        public delegate bool FormatterCanLoadURIMethod (GES.Formatter dummy_instance, string uri) throws GLib.Error;
        [CCode (cheader_filename = "ges/ges.h", has_target = false)]
+       [Version (deprecated = true, deprecated_since = "1.16")]
        public delegate bool FormatterLoadFromURIMethod (GES.Formatter formatter, GES.Timeline timeline, string uri) throws GLib.Error;
        [CCode (cheader_filename = "ges/ges.h", has_target = false)]
+       [Version (deprecated = true, deprecated_since = "1.16")]
        public delegate bool FormatterSaveToURIMethod (GES.Formatter formatter, GES.Timeline timeline, string uri, bool overwrite) throws GLib.Error;
        [CCode (cheader_filename = "ges/ges.h", instance_pos = 3.9)]
        public delegate void MetaForeachFunc (GES.MetaContainer container, string key, GLib.Value value);
@@ -1034,6 +1038,8 @@ namespace GES {
        public const int PADDING;
        [CCode (cheader_filename = "ges/ges.h", cname = "GES_PADDING_LARGE")]
        public const int PADDING_LARGE;
+       [CCode (cheader_filename = "ges/ges.h", cname = "GES_TIMELINE_ELEMENT_NO_LAYER_PRIORITY")]
+       public const uint32 TIMELINE_ELEMENT_NO_LAYER_PRIORITY;
        [CCode (cheader_filename = "ges/ges.h", cname = "GES_VERSION_MAJOR")]
        public const int VERSION_MAJOR;
        [CCode (cheader_filename = "ges/ges.h", cname = "GES_VERSION_MICRO")]
index 2cd494b8f886e7476611920b515f3f2626af1027..8bb630390a9316d4fd91f94ca4c9e42aed04fc9f 100644 (file)
@@ -978,6 +978,9 @@ namespace Gst {
                public static unowned Gst.Audio.ClippingMeta? buffer_add_audio_clipping_meta (Gst.Buffer buffer, Gst.Format format, uint64 start, uint64 end);
                [CCode (cheader_filename = "gst/audio/audio.h", cname = "gst_buffer_add_audio_downmix_meta")]
                public static unowned Gst.Audio.DownmixMeta? buffer_add_audio_downmix_meta (Gst.Buffer buffer, [CCode (array_length_cname = "from_channels", array_length_pos = 2.5)] Gst.Audio.ChannelPosition[] from_position, [CCode (array_length_cname = "to_channels", array_length_pos = 3.5)] Gst.Audio.ChannelPosition[] to_position, float matrix);
+               [CCode (cheader_filename = "gst/audio/audio.h", cname = "gst_buffer_add_audio_meta")]
+               [Version (since = "1.16")]
+               public static unowned Gst.Audio.Meta? buffer_add_audio_meta (Gst.Buffer buffer, Gst.Audio.Info info, size_t samples, size_t? offsets);
                [CCode (cheader_filename = "gst/audio/audio.h", cname = "gst_buffer_get_audio_downmix_meta_for_channels")]
                public static unowned Gst.Audio.DownmixMeta? buffer_get_audio_downmix_meta_for_channels (Gst.Buffer buffer, [CCode (array_length_cname = "to_channels", array_length_pos = 2.1)] Gst.Audio.ChannelPosition[] to_position);
                [CCode (cheader_filename = "gst/audio/audio.h", cname = "gst_stream_volume_convert_volume")]
index cc40f6e6cd62babf380892e031b47aa10362e0f9..fa4c112e1220a679032c3cdb5319c880aaaffdaa 100644 (file)
@@ -833,12 +833,6 @@ namespace Gst {
                        public uint get_remaining ();
                        [CCode (cname = "gst_bit_writer_get_size")]
                        public uint get_size ();
-                       [CCode (cname = "gst_bit_writer_init")]
-                       public void init ();
-                       [CCode (cname = "gst_bit_writer_init_with_data")]
-                       public void init_with_data ([CCode (array_length_cname = "size", array_length_pos = 1.5, array_length_type = "guint")] uint8[] data, bool initialized);
-                       [CCode (cname = "gst_bit_writer_init_with_size")]
-                       public void init_with_size (uint32 size, bool fixed);
                        [CCode (cname = "gst_bit_writer_put_bits_uint16")]
                        public bool put_bits_uint16 (uint16 value, uint nbits);
                        [CCode (cname = "gst_bit_writer_put_bits_uint32")]
index e5c87101fbe862b00dbc73a77eee6d5908d1cca3..1a064dc5fea341368bdd1e32af67b05f8e8be681 100644 (file)
@@ -1049,7 +1049,8 @@ namespace Gst {
                        NV16_10LE32,
                        NV12_10LE40,
                        Y210,
-                       Y410
+                       Y410,
+                       VUYA
                }
                [CCode (cheader_filename = "gst/video/video.h", cprefix = "GST_VIDEO_FORMAT_FLAG_", type_id = "gst_video_format_flags_get_type ()")]
                [Flags]