From 1c4765281443e2a184157f319825c9b68665f9f5 Mon Sep 17 00:00:00 2001 From: Marvin W Date: Thu, 23 Dec 2021 06:39:18 +0100 Subject: Fix build with older Vala compilers - Older versions seem to assume a wrong type for Nice messages - Older versions have broken bindings for Gst.Value.set_fraction --- plugins/rtp/src/video_widget.vala | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'plugins/rtp') diff --git a/plugins/rtp/src/video_widget.vala b/plugins/rtp/src/video_widget.vala index 3daf5284..76e4dcca 100644 --- a/plugins/rtp/src/video_widget.vala +++ b/plugins/rtp/src/video_widget.vala @@ -1,3 +1,8 @@ +#if !VALA_0_52 +[CCode (cheader_filename = "gst/gst.h")] +private static extern void gst_value_set_fraction(ref GLib.Value value, int numerator, int denominator); +#endif + public class Dino.Plugins.Rtp.VideoWidget : Gtk.Bin, Dino.Plugins.VideoCallWidget { private static uint last_id = 0; @@ -50,7 +55,11 @@ public class Dino.Plugins.Rtp.VideoWidget : Gtk.Bin, Dino.Plugins.VideoCallWidge Gst.Element crop = ((Gst.Bin)prepare).get_by_name(@"video_widget_$(id)_crop"); if (crop != null) { Value ratio = new Value(typeof(Gst.Fraction)); +#if VALA_0_52 Gst.Value.set_fraction(ref ratio, allocation.width, allocation.height); +#else + gst_value_set_fraction(ref ratio, allocation.width, allocation.height); +#endif crop.set_property("aspect-ratio", ratio); } } -- cgit v1.2.3-54-g00ecf