mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +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 */
|
/* ERRORS */
|
||||||
error_invalid_caps:
|
error_invalid_caps:
|
||||||
{
|
{
|
||||||
GST_DEBUG("failed to validate input caps");
|
GST_ERROR("failed to validate input caps");
|
||||||
return GST_FLOW_UNEXPECTED;
|
return GST_FLOW_UNEXPECTED;
|
||||||
}
|
}
|
||||||
error_create_buffer:
|
error_create_buffer:
|
||||||
{
|
{
|
||||||
GST_DEBUG("failed to create video buffer");
|
GST_ERROR("failed to create video buffer");
|
||||||
return GST_FLOW_UNEXPECTED;
|
return GST_FLOW_UNEXPECTED;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue