mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-06 08:09:56 +00:00
vaapivideomemory: use GST_VIDEO_INFO_FORMAT_STRING()
Use the existing local macro GST_VIDEO_INFO_FORMAT_STRING() to get the video format string.
This commit is contained in:
parent
7ced30dbac
commit
d3d489a855
1 changed files with 3 additions and 4 deletions
|
@ -799,8 +799,7 @@ bail:
|
|||
/* ERRORS */
|
||||
error_invalid_format:
|
||||
{
|
||||
GST_ERROR ("Cannot handle format %s",
|
||||
gst_video_format_to_string (GST_VIDEO_INFO_FORMAT (vinfo)));
|
||||
GST_ERROR ("Cannot handle format %s", GST_VIDEO_INFO_FORMAT_STRING (vinfo));
|
||||
return FALSE;
|
||||
}
|
||||
error_no_surface:
|
||||
|
@ -997,8 +996,8 @@ gst_vaapi_dmabuf_memory_new (GstAllocator * base_allocator,
|
|||
error_create_surface:
|
||||
{
|
||||
GST_ERROR ("failed to create VA surface (format:%s size:%ux%u)",
|
||||
gst_video_format_to_string (GST_VIDEO_INFO_FORMAT (vip)),
|
||||
GST_VIDEO_INFO_WIDTH (vip), GST_VIDEO_INFO_HEIGHT (vip));
|
||||
GST_VIDEO_INFO_FORMAT_STRING (vip), GST_VIDEO_INFO_WIDTH (vip),
|
||||
GST_VIDEO_INFO_HEIGHT (vip));
|
||||
return NULL;
|
||||
}
|
||||
error_create_surface_proxy:
|
||||
|
|
Loading…
Reference in a new issue