diff --git a/gst-libs/gst/video/gstvideodecoder.h b/gst-libs/gst/video/gstvideodecoder.h index b7b54b24c8..877cdb8784 100644 --- a/gst-libs/gst/video/gstvideodecoder.h +++ b/gst-libs/gst/video/gstvideodecoder.h @@ -190,7 +190,7 @@ struct _GstVideoDecoder GstVideoDecoderPrivate *priv; /*< private >*/ - void *padding[GST_PADDING_LARGE]; + gpointer padding[GST_PADDING_LARGE]; }; /** @@ -338,7 +338,7 @@ struct _GstVideoDecoderClass GstMeta * meta); /*< private >*/ - void *padding[GST_PADDING_LARGE-6]; + gpointer padding[GST_PADDING_LARGE-6]; }; GST_EXPORT diff --git a/gst-libs/gst/video/gstvideoencoder.h b/gst-libs/gst/video/gstvideoencoder.h index 18b1ba52ff..49a017e1e9 100644 --- a/gst-libs/gst/video/gstvideoencoder.h +++ b/gst-libs/gst/video/gstvideoencoder.h @@ -153,7 +153,7 @@ struct _GstVideoEncoder /*< private >*/ GstVideoEncoderPrivate *priv; - void *padding[GST_PADDING_LARGE]; + gpointer padding[GST_PADDING_LARGE]; }; /** diff --git a/gst-libs/gst/video/gstvideoutils.h b/gst-libs/gst/video/gstvideoutils.h index 94d64078c4..620fc18a9d 100644 --- a/gst-libs/gst/video/gstvideoutils.h +++ b/gst-libs/gst/video/gstvideoutils.h @@ -72,7 +72,7 @@ struct _GstVideoCodecState GstCaps *allocation_caps; /*< private >*/ - void *padding[GST_PADDING_LARGE - 1]; + gpointer padding[GST_PADDING_LARGE - 1]; }; /** @@ -259,7 +259,7 @@ struct _GstVideoCodecFrame GstClockTime ts; GstClockTime ts2; } ABI; - void *padding[GST_PADDING_LARGE]; + gpointer padding[GST_PADDING_LARGE]; } abidata; };