2010-03-04 17:39:01 +00:00
|
|
|
/*
|
|
|
|
* gstvaapiimage.c - VA image abstraction
|
|
|
|
*
|
|
|
|
* gstreamer-vaapi (C) 2010 Splitted-Desktop Systems
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include <string.h>
|
|
|
|
#include "vaapi_utils.h"
|
|
|
|
#include "gstvaapiimage.h"
|
|
|
|
#include <va/va_backend.h>
|
|
|
|
|
|
|
|
#define DEBUG 1
|
|
|
|
#include "vaapi_debug.h"
|
|
|
|
|
|
|
|
G_DEFINE_TYPE(GstVaapiImage, gst_vaapi_image, G_TYPE_OBJECT);
|
|
|
|
|
|
|
|
#define GST_VAAPI_IMAGE_GET_PRIVATE(obj) \
|
|
|
|
(G_TYPE_INSTANCE_GET_PRIVATE((obj), \
|
|
|
|
GST_VAAPI_TYPE_IMAGE, \
|
|
|
|
GstVaapiImagePrivate))
|
|
|
|
|
|
|
|
struct _GstVaapiImagePrivate {
|
|
|
|
GstVaapiDisplay *display;
|
|
|
|
VAImage image;
|
|
|
|
guchar *image_data;
|
|
|
|
guint width;
|
|
|
|
guint height;
|
|
|
|
GstVaapiImageFormat format;
|
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
PROP_0,
|
|
|
|
|
|
|
|
PROP_DISPLAY,
|
|
|
|
PROP_IMAGE_ID,
|
|
|
|
PROP_WIDTH,
|
|
|
|
PROP_HEIGHT,
|
|
|
|
PROP_FORMAT
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_vaapi_image_destroy(GstVaapiImage *image)
|
|
|
|
{
|
|
|
|
GstVaapiImagePrivate * const priv = image->priv;
|
|
|
|
VADisplay dpy = gst_vaapi_display_get_display(priv->display);
|
|
|
|
VAStatus status;
|
|
|
|
|
|
|
|
gst_vaapi_image_unmap(image);
|
|
|
|
|
|
|
|
if (priv->image.image_id != VA_INVALID_ID) {
|
|
|
|
status = vaDestroyImage(dpy, priv->image.image_id);
|
|
|
|
if (!vaapi_check_status(status, "vaDestroyImage()"))
|
|
|
|
g_warning("failed to destroy image 0x%08x\n", priv->image.image_id);
|
|
|
|
priv->image.image_id = VA_INVALID_ID;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (priv->display) {
|
|
|
|
g_object_unref(priv->display);
|
|
|
|
priv->display = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_vaapi_image_create(GstVaapiImage *image)
|
|
|
|
{
|
|
|
|
GstVaapiImagePrivate * const priv = image->priv;
|
|
|
|
const VAImageFormat *format;
|
|
|
|
VAStatus status;
|
|
|
|
|
|
|
|
if (!gst_vaapi_display_has_image_format(priv->display, priv->format))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
format = gst_vaapi_image_format_get_va_format(priv->format);
|
|
|
|
|
|
|
|
g_return_val_if_fail(format, FALSE);
|
|
|
|
|
|
|
|
status = vaCreateImage(
|
|
|
|
gst_vaapi_display_get_display(priv->display),
|
|
|
|
(VAImageFormat *)format,
|
|
|
|
priv->width,
|
|
|
|
priv->height,
|
|
|
|
&priv->image
|
|
|
|
);
|
|
|
|
if (!vaapi_check_status(status, "vaCreateImage()"))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_vaapi_image_finalize(GObject *object)
|
|
|
|
{
|
|
|
|
gst_vaapi_image_destroy(GST_VAAPI_IMAGE(object));
|
|
|
|
|
|
|
|
G_OBJECT_CLASS(gst_vaapi_image_parent_class)->finalize(object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_vaapi_image_set_property(
|
|
|
|
GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec
|
|
|
|
)
|
|
|
|
{
|
|
|
|
GstVaapiImage * const image = GST_VAAPI_IMAGE(object);
|
|
|
|
GstVaapiImagePrivate * const priv = image->priv;
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case PROP_DISPLAY:
|
2010-03-11 12:30:12 +00:00
|
|
|
priv->display = g_object_ref(g_value_get_object(value));
|
2010-03-04 17:39:01 +00:00
|
|
|
break;
|
|
|
|
case PROP_WIDTH:
|
|
|
|
priv->width = g_value_get_uint(value);
|
|
|
|
break;
|
|
|
|
case PROP_HEIGHT:
|
|
|
|
priv->height = g_value_get_uint(value);
|
|
|
|
break;
|
|
|
|
case PROP_FORMAT:
|
|
|
|
priv->format = g_value_get_uint(value);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_vaapi_image_get_property(
|
|
|
|
GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec
|
|
|
|
)
|
|
|
|
{
|
2010-03-11 12:30:12 +00:00
|
|
|
GstVaapiImage * const image = GST_VAAPI_IMAGE(object);
|
2010-03-04 17:39:01 +00:00
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case PROP_DISPLAY:
|
2010-03-11 12:30:12 +00:00
|
|
|
g_value_set_pointer(value, gst_vaapi_image_get_display(image));
|
2010-03-04 17:39:01 +00:00
|
|
|
break;
|
|
|
|
case PROP_IMAGE_ID:
|
|
|
|
g_value_set_uint(value, gst_vaapi_image_get_id(image));
|
|
|
|
break;
|
|
|
|
case PROP_WIDTH:
|
|
|
|
g_value_set_uint(value, gst_vaapi_image_get_width(image));
|
|
|
|
break;
|
|
|
|
case PROP_HEIGHT:
|
|
|
|
g_value_set_uint(value, gst_vaapi_image_get_height(image));
|
|
|
|
break;
|
|
|
|
case PROP_FORMAT:
|
|
|
|
g_value_set_uint(value, gst_vaapi_image_get_format(image));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-03-10 13:10:59 +00:00
|
|
|
static void
|
|
|
|
gst_vaapi_image_constructed(GObject *object)
|
2010-03-04 17:39:01 +00:00
|
|
|
{
|
2010-03-10 13:10:59 +00:00
|
|
|
GstVaapiImage * const image = GST_VAAPI_IMAGE(object);
|
2010-03-04 17:39:01 +00:00
|
|
|
GObjectClass *parent_class;
|
|
|
|
|
2010-03-10 13:10:59 +00:00
|
|
|
gst_vaapi_image_create(image);
|
2010-03-04 17:39:01 +00:00
|
|
|
|
|
|
|
parent_class = G_OBJECT_CLASS(gst_vaapi_image_parent_class);
|
2010-03-10 13:10:59 +00:00
|
|
|
if (parent_class->constructed)
|
|
|
|
parent_class->constructed(object);
|
2010-03-04 17:39:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_vaapi_image_class_init(GstVaapiImageClass *klass)
|
|
|
|
{
|
|
|
|
GObjectClass * const object_class = G_OBJECT_CLASS(klass);
|
|
|
|
|
|
|
|
g_type_class_add_private(klass, sizeof(GstVaapiImagePrivate));
|
|
|
|
|
|
|
|
object_class->finalize = gst_vaapi_image_finalize;
|
|
|
|
object_class->set_property = gst_vaapi_image_set_property;
|
|
|
|
object_class->get_property = gst_vaapi_image_get_property;
|
2010-03-10 13:10:59 +00:00
|
|
|
object_class->constructed = gst_vaapi_image_constructed;
|
2010-03-04 17:39:01 +00:00
|
|
|
|
|
|
|
g_object_class_install_property
|
|
|
|
(object_class,
|
|
|
|
PROP_DISPLAY,
|
|
|
|
g_param_spec_object("display",
|
|
|
|
"display",
|
|
|
|
"GStreamer Va display",
|
|
|
|
GST_VAAPI_TYPE_DISPLAY,
|
|
|
|
G_PARAM_READWRITE|G_PARAM_CONSTRUCT_ONLY));
|
|
|
|
|
|
|
|
g_object_class_install_property
|
|
|
|
(object_class,
|
|
|
|
PROP_IMAGE_ID,
|
|
|
|
g_param_spec_uint("id",
|
|
|
|
"VA image id",
|
|
|
|
"VA image id",
|
|
|
|
0, G_MAXUINT32, VA_INVALID_ID,
|
|
|
|
G_PARAM_READABLE));
|
|
|
|
|
|
|
|
g_object_class_install_property
|
|
|
|
(object_class,
|
|
|
|
PROP_WIDTH,
|
|
|
|
g_param_spec_uint("width",
|
|
|
|
"width",
|
|
|
|
"Image width",
|
|
|
|
0, G_MAXUINT32, 0,
|
|
|
|
G_PARAM_READWRITE|G_PARAM_CONSTRUCT_ONLY));
|
|
|
|
|
|
|
|
g_object_class_install_property
|
|
|
|
(object_class,
|
|
|
|
PROP_HEIGHT,
|
|
|
|
g_param_spec_uint("height",
|
|
|
|
"height",
|
|
|
|
"Image height",
|
|
|
|
0, G_MAXUINT32, 0,
|
|
|
|
G_PARAM_READWRITE|G_PARAM_CONSTRUCT_ONLY));
|
|
|
|
|
|
|
|
g_object_class_install_property
|
|
|
|
(object_class,
|
|
|
|
PROP_FORMAT,
|
|
|
|
g_param_spec_uint("format",
|
|
|
|
"format",
|
|
|
|
"Image format",
|
|
|
|
0, G_MAXUINT32, 0,
|
|
|
|
G_PARAM_READWRITE|G_PARAM_CONSTRUCT_ONLY));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_vaapi_image_init(GstVaapiImage *image)
|
|
|
|
{
|
|
|
|
GstVaapiImagePrivate *priv = GST_VAAPI_IMAGE_GET_PRIVATE(image);
|
|
|
|
|
|
|
|
image->priv = priv;
|
|
|
|
priv->display = NULL;
|
|
|
|
priv->image_data = NULL;
|
|
|
|
priv->width = 0;
|
|
|
|
priv->height = 0;
|
|
|
|
priv->format = 0;
|
|
|
|
|
|
|
|
memset(&priv->image, 0, sizeof(priv->image));
|
|
|
|
priv->image.image_id = VA_INVALID_ID;
|
|
|
|
priv->image.buf = VA_INVALID_ID;
|
|
|
|
}
|
|
|
|
|
|
|
|
GstVaapiImage *
|
|
|
|
gst_vaapi_image_new(
|
|
|
|
GstVaapiDisplay *display,
|
|
|
|
guint width,
|
|
|
|
guint height,
|
|
|
|
GstVaapiImageFormat format
|
|
|
|
)
|
|
|
|
{
|
2010-03-10 13:13:51 +00:00
|
|
|
g_return_val_if_fail(GST_VAAPI_IS_DISPLAY(display), NULL);
|
|
|
|
g_return_val_if_fail(width > 0, NULL);
|
|
|
|
g_return_val_if_fail(height > 0, NULL);
|
|
|
|
|
|
|
|
GST_DEBUG("size %ux%u, format 0x%x", width, height, format);
|
2010-03-04 17:39:01 +00:00
|
|
|
|
|
|
|
return g_object_new(GST_VAAPI_TYPE_IMAGE,
|
|
|
|
"display", display,
|
|
|
|
"width", width,
|
|
|
|
"height", height,
|
|
|
|
"format", format,
|
|
|
|
NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
VAImageID
|
|
|
|
gst_vaapi_image_get_id(GstVaapiImage *image)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail(GST_VAAPI_IS_IMAGE(image), VA_INVALID_ID);
|
|
|
|
|
|
|
|
return image->priv->image.image_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
GstVaapiDisplay *
|
|
|
|
gst_vaapi_image_get_display(GstVaapiImage *image)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail(GST_VAAPI_IS_IMAGE(image), NULL);
|
|
|
|
|
2010-03-11 12:30:12 +00:00
|
|
|
return image->priv->display;
|
2010-03-04 17:39:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
guint
|
|
|
|
gst_vaapi_image_get_width(GstVaapiImage *image)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail(GST_VAAPI_IS_IMAGE(image), 0);
|
|
|
|
|
|
|
|
return image->priv->width;
|
|
|
|
}
|
|
|
|
|
|
|
|
guint
|
|
|
|
gst_vaapi_image_get_height(GstVaapiImage *image)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail(GST_VAAPI_IS_IMAGE(image), 0);
|
|
|
|
|
|
|
|
return image->priv->height;
|
|
|
|
}
|
|
|
|
|
|
|
|
guint
|
|
|
|
gst_vaapi_image_get_format(GstVaapiImage *image)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail(GST_VAAPI_IS_IMAGE(image), 0);
|
|
|
|
|
|
|
|
return image->priv->format;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline gboolean
|
|
|
|
_gst_vaapi_image_is_mapped(GstVaapiImage *image)
|
|
|
|
{
|
|
|
|
return image->priv->image_data != NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
gst_vaapi_image_is_mapped(GstVaapiImage *image)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail(GST_VAAPI_IS_IMAGE(image), FALSE);
|
|
|
|
|
|
|
|
return _gst_vaapi_image_is_mapped(image);
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
gst_vaapi_image_map(GstVaapiImage *image)
|
|
|
|
{
|
|
|
|
void *image_data;
|
|
|
|
VAStatus status;
|
|
|
|
|
|
|
|
g_return_val_if_fail(GST_VAAPI_IS_IMAGE(image), FALSE);
|
|
|
|
|
|
|
|
if (_gst_vaapi_image_is_mapped(image))
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
status = vaMapBuffer(
|
|
|
|
gst_vaapi_display_get_display(image->priv->display),
|
|
|
|
image->priv->image.buf,
|
|
|
|
&image_data
|
|
|
|
);
|
|
|
|
if (!vaapi_check_status(status, "vaMapBuffer()"))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
image->priv->image_data = image_data;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
gst_vaapi_image_unmap(GstVaapiImage *image)
|
|
|
|
{
|
|
|
|
VAStatus status;
|
|
|
|
|
|
|
|
g_return_val_if_fail(GST_VAAPI_IS_IMAGE(image), FALSE);
|
|
|
|
|
|
|
|
if (!_gst_vaapi_image_is_mapped(image))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
status = vaUnmapBuffer(
|
|
|
|
gst_vaapi_display_get_display(image->priv->display),
|
|
|
|
image->priv->image.buf
|
|
|
|
);
|
|
|
|
if (!vaapi_check_status(status, "vaUnmapBuffer()"))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
image->priv->image_data = NULL;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
guint
|
|
|
|
gst_vaapi_image_get_plane_count(GstVaapiImage *image)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail(GST_VAAPI_IS_IMAGE(image), 0);
|
|
|
|
g_return_val_if_fail(_gst_vaapi_image_is_mapped(image), 0);
|
|
|
|
|
|
|
|
return image->priv->image.num_planes;
|
|
|
|
}
|
|
|
|
|
|
|
|
guchar *
|
|
|
|
gst_vaapi_image_get_plane(GstVaapiImage *image, guint plane)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail(GST_VAAPI_IS_IMAGE(image), NULL);
|
|
|
|
g_return_val_if_fail(_gst_vaapi_image_is_mapped(image), NULL);
|
|
|
|
g_return_val_if_fail(plane < image->priv->image.num_planes, NULL);
|
|
|
|
|
|
|
|
return image->priv->image_data + image->priv->image.offsets[plane];
|
|
|
|
}
|
|
|
|
|
|
|
|
guint
|
|
|
|
gst_vaapi_image_get_pitch(GstVaapiImage *image, guint plane)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail(GST_VAAPI_IS_IMAGE(image), 0);
|
|
|
|
g_return_val_if_fail(_gst_vaapi_image_is_mapped(image), 0);
|
|
|
|
g_return_val_if_fail(plane < image->priv->image.num_planes, 0);
|
|
|
|
|
|
|
|
return image->priv->image.pitches[plane];
|
|
|
|
}
|