mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
vaapisink: use GST_ERROR to print error messages.
This commit is contained in:
parent
f3d89f8bc0
commit
2df43791d4
1 changed files with 2 additions and 2 deletions
|
@ -530,12 +530,12 @@ gst_vaapisink_buffer_alloc(
|
|||
/* ERRORS */
|
||||
error_invalid_caps:
|
||||
{
|
||||
GST_DEBUG("failed to validate input caps");
|
||||
GST_ERROR("failed to validate input caps");
|
||||
return GST_FLOW_UNEXPECTED;
|
||||
}
|
||||
error_create_buffer:
|
||||
{
|
||||
GST_DEBUG("failed to create video buffer");
|
||||
GST_ERROR("failed to create video buffer");
|
||||
return GST_FLOW_UNEXPECTED;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue