$OpenBSD: patch-src_classes_action_movie_vala,v 1.4 2021/05/13 07:50:43 jasper Exp $

Fix build after Gstreamer VAPI change with vala 0.52

Index: src/classes/action/movie.vala
--- src/classes/action/movie.vala.orig
+++ src/classes/action/movie.vala
@@ -548,7 +548,7 @@ namespace pdfpc {
          */
         public void on_prepare(Gst.Element overlay, Gst.Caps caps) {
             var info = new Gst.Video.Info();
-            info.from_caps(caps);
+            Gst.Video.info_from_caps(out info, caps);
             this.video_w = info.width;
             this.video_h = info.height;
             this.scalex = (double) this.video_w/rect.width;
