plugins: reduce the noise of warnings

Those messagse should be attached to the object, also the lack of
caps is not an error, in particular in the case of JPEG encoding.

Signed-off-by: Víctor Manuel Jáquez Leal <victorx.jaquez@intel.com>

https://bugzilla.gnome.org/show_bug.cgi?id=744042
This commit is contained in:
Victor Jaquez 2015-06-22 17:38:41 +02:00 committed by Víctor Manuel Jáquez Leal
parent 1e8610fc95
commit 9bdf43a843

View file

@ -547,12 +547,12 @@ gst_vaapi_plugin_base_propose_allocation (GstVaapiPluginBase * plugin,
/* ERRORS */
error_no_caps:
{
GST_ERROR ("no caps specified");
GST_INFO_OBJECT (plugin, "no caps specified");
return FALSE;
}
error_pool_config:
{
GST_ERROR ("failed to reset buffer pool config");
GST_ERROR_OBJECT (plugin, "failed to reset buffer pool config");
return FALSE;
}
}