2010-03-12 17:45:18 +00:00
|
|
|
/*
|
|
|
|
* gstvaapisurfacepool.c - Gst VA surface pool
|
|
|
|
*
|
2012-01-16 09:41:10 +00:00
|
|
|
* Copyright (C) 2010-2011 Splitted-Desktop Systems
|
2013-11-22 04:57:18 +00:00
|
|
|
* Author: Gwenole Beauchesne <gwenole.beauchesne@splitted-desktop.com>
|
2013-01-29 13:00:04 +00:00
|
|
|
* Copyright (C) 2012 Intel Corporation
|
2013-11-22 04:57:18 +00:00
|
|
|
* Author: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
|
2010-03-12 17:45:18 +00:00
|
|
|
*
|
2011-06-14 11:51:41 +00:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2.1
|
|
|
|
* of the License, or (at your option) any later version.
|
2010-03-12 17:45:18 +00:00
|
|
|
*
|
2011-06-14 11:51:41 +00:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
2010-03-12 17:45:18 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2011-06-14 11:51:41 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2010-03-12 17:45:18 +00:00
|
|
|
*
|
2011-06-14 11:51:41 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free
|
|
|
|
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301 USA
|
2010-03-12 17:45:18 +00:00
|
|
|
*/
|
|
|
|
|
2010-03-19 16:08:48 +00:00
|
|
|
/**
|
2010-03-24 08:16:32 +00:00
|
|
|
* SECTION:gstvaapisurfacepool
|
|
|
|
* @short_description: VA surface pool
|
2010-03-19 16:08:48 +00:00
|
|
|
*/
|
|
|
|
|
2012-01-30 17:12:59 +00:00
|
|
|
#include "sysdeps.h"
|
2010-03-12 17:45:18 +00:00
|
|
|
#include "gstvaapisurfacepool.h"
|
2013-05-03 09:01:12 +00:00
|
|
|
#include "gstvaapivideopool_priv.h"
|
2010-03-12 17:45:18 +00:00
|
|
|
|
|
|
|
#define DEBUG 1
|
2010-03-16 09:17:41 +00:00
|
|
|
#include "gstvaapidebug.h"
|
2010-03-12 17:45:18 +00:00
|
|
|
|
2013-05-03 09:01:12 +00:00
|
|
|
/**
|
|
|
|
* GstVaapiSurfacePool:
|
|
|
|
*
|
|
|
|
* A pool of lazily allocated #GstVaapiSurface objects.
|
|
|
|
*/
|
|
|
|
struct _GstVaapiSurfacePool {
|
|
|
|
/*< private >*/
|
|
|
|
GstVaapiVideoPool parent_instance;
|
2010-03-12 17:45:18 +00:00
|
|
|
|
|
|
|
GstVaapiChromaType chroma_type;
|
2013-07-10 12:20:30 +00:00
|
|
|
GstVideoFormat format;
|
2010-03-12 17:45:18 +00:00
|
|
|
guint width;
|
|
|
|
guint height;
|
|
|
|
};
|
|
|
|
|
2013-05-03 09:01:12 +00:00
|
|
|
static gboolean
|
2013-07-10 11:07:37 +00:00
|
|
|
surface_pool_init(GstVaapiSurfacePool *pool, const GstVideoInfo *vip)
|
2010-03-12 17:45:18 +00:00
|
|
|
{
|
2013-07-10 12:20:30 +00:00
|
|
|
pool->format = GST_VIDEO_INFO_FORMAT(vip);
|
|
|
|
pool->width = GST_VIDEO_INFO_WIDTH(vip);
|
|
|
|
pool->height = GST_VIDEO_INFO_HEIGHT(vip);
|
|
|
|
|
|
|
|
if (pool->format == GST_VIDEO_FORMAT_UNKNOWN)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (pool->format == GST_VIDEO_FORMAT_ENCODED)
|
|
|
|
pool->chroma_type = GST_VAAPI_CHROMA_TYPE_YUV420;
|
|
|
|
else
|
2013-07-15 12:42:33 +00:00
|
|
|
pool->chroma_type = gst_vaapi_video_format_get_chroma_type(pool->format);
|
2013-07-10 12:20:30 +00:00
|
|
|
if (!pool->chroma_type)
|
|
|
|
return FALSE;
|
2013-05-03 09:01:12 +00:00
|
|
|
return TRUE;
|
2010-03-12 17:45:18 +00:00
|
|
|
}
|
|
|
|
|
2013-05-03 09:01:12 +00:00
|
|
|
static gpointer
|
|
|
|
gst_vaapi_surface_pool_alloc_object(GstVaapiVideoPool *base_pool)
|
2010-03-12 17:45:18 +00:00
|
|
|
{
|
2013-05-03 09:01:12 +00:00
|
|
|
GstVaapiSurfacePool * const pool = GST_VAAPI_SURFACE_POOL(base_pool);
|
2010-03-12 17:45:18 +00:00
|
|
|
|
2013-07-10 12:20:30 +00:00
|
|
|
/* Try to allocate a surface with an explicit pixel format first */
|
|
|
|
if (pool->format != GST_VIDEO_FORMAT_ENCODED) {
|
|
|
|
GstVaapiSurface * const surface = gst_vaapi_surface_new_with_format(
|
|
|
|
base_pool->display, pool->format, pool->width, pool->height);
|
|
|
|
if (surface)
|
|
|
|
return surface;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Otherwise, fallback to the original interface, based on chroma format */
|
2013-05-03 09:01:12 +00:00
|
|
|
return gst_vaapi_surface_new(base_pool->display,
|
|
|
|
pool->chroma_type, pool->width, pool->height);
|
2010-03-12 17:45:18 +00:00
|
|
|
}
|
|
|
|
|
2013-05-03 09:01:12 +00:00
|
|
|
static inline const GstVaapiMiniObjectClass *
|
|
|
|
gst_vaapi_surface_pool_class(void)
|
2010-03-12 17:45:18 +00:00
|
|
|
{
|
2013-05-03 09:01:12 +00:00
|
|
|
static const GstVaapiVideoPoolClass GstVaapiSurfacePoolClass = {
|
|
|
|
{ sizeof(GstVaapiSurfacePool),
|
|
|
|
(GDestroyNotify)gst_vaapi_video_pool_finalize },
|
2010-03-12 17:45:18 +00:00
|
|
|
|
2013-05-03 09:01:12 +00:00
|
|
|
.alloc_object = gst_vaapi_surface_pool_alloc_object
|
|
|
|
};
|
|
|
|
return GST_VAAPI_MINI_OBJECT_CLASS(&GstVaapiSurfacePoolClass);
|
2010-03-12 17:45:18 +00:00
|
|
|
}
|
|
|
|
|
2010-03-19 16:08:48 +00:00
|
|
|
/**
|
|
|
|
* gst_vaapi_surface_pool_new:
|
|
|
|
* @display: a #GstVaapiDisplay
|
2013-07-10 11:07:37 +00:00
|
|
|
* @vip: a #GstVideoInfo
|
2010-03-19 16:08:48 +00:00
|
|
|
*
|
|
|
|
* Creates a new #GstVaapiVideoPool of #GstVaapiSurface with the
|
2013-07-10 11:07:37 +00:00
|
|
|
* specified format and dimensions in @vip.
|
2010-03-19 16:08:48 +00:00
|
|
|
*
|
|
|
|
* Return value: the newly allocated #GstVaapiVideoPool
|
|
|
|
*/
|
2010-03-12 23:47:47 +00:00
|
|
|
GstVaapiVideoPool *
|
2013-07-10 11:07:37 +00:00
|
|
|
gst_vaapi_surface_pool_new(GstVaapiDisplay *display, const GstVideoInfo *vip)
|
2010-03-12 17:45:18 +00:00
|
|
|
{
|
2013-05-03 09:01:12 +00:00
|
|
|
GstVaapiVideoPool *pool;
|
|
|
|
|
2013-05-23 16:15:48 +00:00
|
|
|
g_return_val_if_fail(display != NULL, NULL);
|
2013-07-10 11:07:37 +00:00
|
|
|
g_return_val_if_fail(vip != NULL, NULL);
|
2013-05-03 09:01:12 +00:00
|
|
|
|
|
|
|
pool = (GstVaapiVideoPool *)
|
|
|
|
gst_vaapi_mini_object_new(gst_vaapi_surface_pool_class());
|
|
|
|
if (!pool)
|
|
|
|
return NULL;
|
|
|
|
|
2013-05-23 16:45:23 +00:00
|
|
|
gst_vaapi_video_pool_init(pool, display,
|
|
|
|
GST_VAAPI_VIDEO_POOL_OBJECT_TYPE_SURFACE);
|
2013-07-10 11:07:37 +00:00
|
|
|
if (!surface_pool_init(GST_VAAPI_SURFACE_POOL(pool), vip))
|
2013-05-03 09:01:12 +00:00
|
|
|
goto error;
|
|
|
|
return pool;
|
|
|
|
|
|
|
|
error:
|
|
|
|
gst_vaapi_mini_object_unref(GST_VAAPI_MINI_OBJECT(pool));
|
|
|
|
return NULL;
|
2010-03-12 17:45:18 +00:00
|
|
|
}
|