From 34683c36dea7f89815f0b18f30e2d51f42cd6321 Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=ADctor=20Manuel=20J=C3=A1quez=20Leal?= Date: Sun, 6 Dec 2020 18:03:47 +0100 Subject: [PATCH] va: decode: fix display type Instead of a pointer to GstVaDisplay it was used a VADisplay type, which in certain platforms is the same, and the compiler didn't complain. Part-of: --- sys/va/gstvadecoder.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/va/gstvadecoder.h b/sys/va/gstvadecoder.h index ec0a912..d44771c 100644 --- a/sys/va/gstvadecoder.h +++ b/sys/va/gstvadecoder.h @@ -27,7 +27,7 @@ G_BEGIN_DECLS typedef struct _GstVaDecodePicture GstVaDecodePicture; struct _GstVaDecodePicture { - VADisplay display; + GstVaDisplay *display; GArray *buffers; GArray *slices; GstBuffer *gstbuffer; -- 2.7.4