plugins: more specific log message

Be more specific in the log message about the reason of creating a new pool.
This commit is contained in:
Víctor Manuel Jáquez Leal 2015-04-29 12:24:52 +02:00
parent b8268b1f3e
commit 100d5971b5

View file

@ -688,8 +688,8 @@ gst_vaapi_plugin_base_decide_allocation (GstVaapiPluginBase * plugin,
/* GstVaapiVideoMeta is mandatory, and this implies VA surface memory */ /* GstVaapiVideoMeta is mandatory, and this implies VA surface memory */
if (!pool || !gst_buffer_pool_has_option (pool, if (!pool || !gst_buffer_pool_has_option (pool,
GST_BUFFER_POOL_OPTION_VAAPI_VIDEO_META)) { GST_BUFFER_POOL_OPTION_VAAPI_VIDEO_META)) {
GST_INFO_OBJECT (plugin, "no pool or doesn't support GstVaapiVideoMeta, " GST_INFO_OBJECT (plugin, "%s. Making a new pool", pool == NULL ? "No pool" :
"making new pool"); "Pool hasn't GstVaapiVideoMeta");
if (pool) if (pool)
gst_object_unref (pool); gst_object_unref (pool);
pool = gst_vaapi_video_buffer_pool_new (plugin->display); pool = gst_vaapi_video_buffer_pool_new (plugin->display);