mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 17:51:16 +00:00
video-format: Workaround MSVC build error
../gst-libs/gst/video/video-format.c(6779): error C2219: syntax error: type qualifier must be after '*' Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2719>
This commit is contained in:
parent
855dabb578
commit
11e4eb5490
1 changed files with 3 additions and 3 deletions
|
@ -6776,7 +6776,7 @@ static void
|
|||
get_tile_NV12_10BE (const gint bit_depth,
|
||||
gint ts, gint ws, gint hs, gint ty, gint y, gint x,
|
||||
const gpointer data, const gint stride,
|
||||
gpointer restrict pdata[2], gint bits[2], guint16 mask[2])
|
||||
void *restrict pdata[2], gint bits[2], guint16 mask[2])
|
||||
{
|
||||
gint bit_index = bit_depth * x;
|
||||
gint line_size = GST_VIDEO_TILE_X_TILES (stride) << ts;
|
||||
|
@ -6814,7 +6814,7 @@ unpack_NV12_10BE_8L128 (const GstVideoFormatInfo * info,
|
|||
gint ws, hs, ts;
|
||||
gint ty, uv_ty, uv_y;
|
||||
guint16 Y = 0, U = 0, V = 0;
|
||||
gpointer restrict pdata[2];
|
||||
void *restrict pdata[2];
|
||||
gint bits[2];
|
||||
guint16 mask[2];
|
||||
int i;
|
||||
|
@ -6869,7 +6869,7 @@ pack_NV12_10BE_8L128 (const GstVideoFormatInfo * info, GstVideoPackFlags flags,
|
|||
gint ws, hs, ts;
|
||||
gint ty, uv_ty, uv_y;
|
||||
guint16 Y, U, V;
|
||||
gpointer restrict pdata[2];
|
||||
void *restrict pdata[2];
|
||||
gint bits[2];
|
||||
guint16 mask[2];
|
||||
int i;
|
||||
|
|
Loading…
Reference in a new issue