From 9bdf43a84330f94e07f0911a9e0492497adc0032 Mon Sep 17 00:00:00 2001 From: Victor Jaquez Date: Mon, 22 Jun 2015 17:38:41 +0200 Subject: [PATCH] plugins: reduce the noise of warnings MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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 https://bugzilla.gnome.org/show_bug.cgi?id=744042 --- gst/vaapi/gstvaapipluginbase.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gst/vaapi/gstvaapipluginbase.c b/gst/vaapi/gstvaapipluginbase.c index 51a7a43..05b816c 100644 --- a/gst/vaapi/gstvaapipluginbase.c +++ b/gst/vaapi/gstvaapipluginbase.c @@ -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; } } -- 2.7.4