From: Víctor Manuel Jáquez Leal Date: Sun, 6 Dec 2020 17:03:47 +0000 (+0100) Subject: va: decode: fix display type X-Git-Tag: 1.19.3~507^2~978 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=34683c36dea7f89815f0b18f30e2d51f42cd6321;p=platform%2Fupstream%2Fgstreamer.git 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: --- 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;