vaapisink: use GST_ERROR to print error messages.

This commit is contained in:
Gwenole Beauchesne 2011-12-08 14:57:36 +01:00
parent f3d89f8bc0
commit 2df43791d4

View file

@ -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;
} }
} }