mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
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: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/1860>
This commit is contained in:
parent
102c60f82c
commit
34683c36de
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ G_BEGIN_DECLS
|
|||
typedef struct _GstVaDecodePicture GstVaDecodePicture;
|
||||
struct _GstVaDecodePicture
|
||||
{
|
||||
VADisplay display;
|
||||
GstVaDisplay *display;
|
||||
GArray *buffers;
|
||||
GArray *slices;
|
||||
GstBuffer *gstbuffer;
|
||||
|
|
Loading…
Reference in a new issue