mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-23 23:58:17 +00:00
image: fix debug message with video format.
Fix debug message string with image format expressed with GstVideoFormat
instead of the obsolete format that turned out to be a fourcc.
This is a regression from git commit e61c5fc
.
This commit is contained in:
parent
cb92e7ca79
commit
d469b7274c
1 changed files with 4 additions and 4 deletions
|
@ -273,8 +273,8 @@ gst_vaapi_image_new(
|
||||||
g_return_val_if_fail(width > 0, NULL);
|
g_return_val_if_fail(width > 0, NULL);
|
||||||
g_return_val_if_fail(height > 0, NULL);
|
g_return_val_if_fail(height > 0, NULL);
|
||||||
|
|
||||||
GST_DEBUG("format %" GST_FOURCC_FORMAT ", size %ux%u",
|
GST_DEBUG("format %s, size %ux%u", gst_video_format_to_string(format),
|
||||||
GST_FOURCC_ARGS(format), width, height);
|
width, height);
|
||||||
|
|
||||||
image = gst_vaapi_object_new(gst_vaapi_image_class(), display);
|
image = gst_vaapi_object_new(gst_vaapi_image_class(), display);
|
||||||
if (!image)
|
if (!image)
|
||||||
|
@ -422,8 +422,8 @@ _gst_vaapi_image_set_image(GstVaapiImage *image, const VAImage *va_image)
|
||||||
image->image = alt_va_image;
|
image->image = alt_va_image;
|
||||||
image->format = format;
|
image->format = format;
|
||||||
image->is_linear = TRUE;
|
image->is_linear = TRUE;
|
||||||
GST_DEBUG("linearized image to %" GST_FOURCC_FORMAT " format",
|
GST_DEBUG("linearized image to %s format",
|
||||||
GST_FOURCC_ARGS(format));
|
gst_video_format_to_string(format));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue