mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-22 14:06:23 +00:00
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:
parent
1e8610fc95
commit
9bdf43a843
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue