2010-03-24 09:52:43 +00:00
|
|
|
/*
|
2010-03-24 13:37:38 +00:00
|
|
|
* gstvaapivalue.c - GValue implementations specific to VA-API
|
2010-03-24 09:52:43 +00:00
|
|
|
*
|
2012-01-16 09:41:10 +00:00
|
|
|
* Copyright (C) 2010-2011 Splitted-Desktop Systems
|
2010-03-24 09:52:43 +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-24 09:52:43 +00:00
|
|
|
*
|
2011-06-14 11:51:41 +00:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
2010-03-24 09:52:43 +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-24 09:52:43 +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-24 09:52:43 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2010-03-24 13:37:38 +00:00
|
|
|
* SECTION:gstvaapivalue
|
|
|
|
* @short_description: GValue implementations specific to VA-API
|
2010-03-24 09:52:43 +00:00
|
|
|
*/
|
|
|
|
|
2012-01-30 17:12:59 +00:00
|
|
|
#include "sysdeps.h"
|
2010-03-24 09:52:43 +00:00
|
|
|
#include <gobject/gvaluecollector.h>
|
2010-03-24 13:37:38 +00:00
|
|
|
#include "gstvaapivalue.h"
|
|
|
|
|
|
|
|
static GTypeInfo gst_vaapi_type_info = {
|
|
|
|
0,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
|
|
|
static GTypeFundamentalInfo gst_vaapi_type_finfo = {
|
|
|
|
0
|
|
|
|
};
|
|
|
|
|
|
|
|
#define GST_VAAPI_TYPE_DEFINE(type, name) \
|
|
|
|
GType gst_vaapi_ ## type ## _get_type(void) \
|
|
|
|
{ \
|
|
|
|
static GType gst_vaapi_ ## type ## _type = 0; \
|
|
|
|
\
|
|
|
|
if (G_UNLIKELY(gst_vaapi_ ## type ## _type == 0)) { \
|
|
|
|
gst_vaapi_type_info.value_table = \
|
|
|
|
&gst_vaapi_ ## type ## _value_table; \
|
|
|
|
gst_vaapi_ ## type ## _type = g_type_register_fundamental( \
|
|
|
|
g_type_fundamental_next(), \
|
|
|
|
name, \
|
|
|
|
&gst_vaapi_type_info, \
|
|
|
|
&gst_vaapi_type_finfo, \
|
|
|
|
0 \
|
|
|
|
); \
|
|
|
|
} \
|
|
|
|
return gst_vaapi_ ## type ## _type; \
|
|
|
|
}
|
|
|
|
|
|
|
|
/* --- GstVaapiID --- */
|
2010-03-24 09:52:43 +00:00
|
|
|
|
|
|
|
#if GST_VAAPI_TYPE_ID_SIZE == 4
|
|
|
|
# define GST_VAAPI_VALUE_ID_(cvalue) ((cvalue).v_int)
|
|
|
|
# define GST_VAAPI_VALUE_ID_CFORMAT "i"
|
|
|
|
#elif GST_VAAPI_TYPE_ID_SIZE == 8
|
|
|
|
# define GST_VAAPI_VALUE_ID_(cvalue) ((cvalue).v_int64)
|
|
|
|
# define GST_VAAPI_VALUE_ID_CFORMAT "q"
|
|
|
|
#else
|
|
|
|
# error "unsupported GstVaapiID size"
|
|
|
|
#endif
|
|
|
|
#define GST_VAAPI_VALUE_ID(value) GST_VAAPI_VALUE_ID_((value)->data[0])
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_vaapi_value_id_init(GValue *value)
|
|
|
|
{
|
|
|
|
GST_VAAPI_VALUE_ID(value) = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_vaapi_value_id_copy(const GValue *src_value, GValue *dst_value)
|
|
|
|
{
|
|
|
|
GST_VAAPI_VALUE_ID(dst_value) = GST_VAAPI_VALUE_ID(src_value);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gchar *
|
|
|
|
gst_vaapi_value_id_collect(
|
|
|
|
GValue *value,
|
|
|
|
guint n_collect_values,
|
|
|
|
GTypeCValue *collect_values,
|
|
|
|
guint collect_flags
|
|
|
|
)
|
|
|
|
{
|
|
|
|
GST_VAAPI_VALUE_ID(value) = GST_VAAPI_VALUE_ID_(collect_values[0]);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gchar *
|
|
|
|
gst_vaapi_value_id_lcopy(
|
|
|
|
const GValue *value,
|
|
|
|
guint n_collect_values,
|
|
|
|
GTypeCValue *collect_values,
|
|
|
|
guint collect_flags
|
|
|
|
)
|
|
|
|
{
|
|
|
|
GstVaapiID *id_p = collect_values[0].v_pointer;
|
|
|
|
|
|
|
|
if (!id_p)
|
|
|
|
return g_strdup_printf("value location for `%s' passed as NULL",
|
|
|
|
G_VALUE_TYPE_NAME(value));
|
|
|
|
|
|
|
|
*id_p = GST_VAAPI_VALUE_ID(value);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const GTypeValueTable gst_vaapi_id_value_table = {
|
|
|
|
gst_vaapi_value_id_init,
|
|
|
|
NULL,
|
|
|
|
gst_vaapi_value_id_copy,
|
|
|
|
NULL,
|
|
|
|
GST_VAAPI_VALUE_ID_CFORMAT,
|
|
|
|
gst_vaapi_value_id_collect,
|
|
|
|
"p",
|
|
|
|
gst_vaapi_value_id_lcopy
|
|
|
|
};
|
|
|
|
|
2012-09-07 14:14:11 +00:00
|
|
|
GST_VAAPI_TYPE_DEFINE(id, "GstVaapiID")
|
2010-03-24 09:52:43 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_vaapi_value_get_id:
|
|
|
|
* @value: a GValue initialized to #GstVaapiID
|
|
|
|
*
|
|
|
|
* Gets the integer contained in @value.
|
|
|
|
*
|
|
|
|
* Return value: the integer contained in @value
|
|
|
|
*/
|
|
|
|
GstVaapiID
|
|
|
|
gst_vaapi_value_get_id(const GValue *value)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail(GST_VAAPI_VALUE_HOLDS_ID(value), 0);
|
|
|
|
|
|
|
|
return GST_VAAPI_VALUE_ID(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_vaapi_value_set_id:
|
|
|
|
* @value: a GValue initialized to #GstVaapiID
|
|
|
|
* @id: a #GstVaapiID
|
|
|
|
*
|
|
|
|
* Sets the integer contained in @id to @value.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_vaapi_value_set_id(GValue *value, GstVaapiID id)
|
|
|
|
{
|
|
|
|
g_return_if_fail(GST_VAAPI_VALUE_HOLDS_ID(value));
|
|
|
|
|
|
|
|
GST_VAAPI_VALUE_ID(value) = id;
|
|
|
|
}
|
2012-08-27 15:11:37 +00:00
|
|
|
|
|
|
|
/* --- GstVaapiRenderMode --- */
|
|
|
|
|
|
|
|
GType
|
|
|
|
gst_vaapi_render_mode_get_type(void)
|
|
|
|
{
|
|
|
|
static GType render_mode_type = 0;
|
|
|
|
|
|
|
|
static const GEnumValue render_modes[] = {
|
|
|
|
{ GST_VAAPI_RENDER_MODE_OVERLAY,
|
|
|
|
"Overlay render mode", "overlay" },
|
|
|
|
{ GST_VAAPI_RENDER_MODE_TEXTURE,
|
|
|
|
"Textured-blit render mode", "texture" },
|
|
|
|
{ 0, NULL, NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
if (!render_mode_type) {
|
|
|
|
render_mode_type =
|
|
|
|
g_enum_register_static("GstVaapiRenderMode", render_modes);
|
|
|
|
}
|
|
|
|
return render_mode_type;
|
|
|
|
}
|
2012-08-22 06:18:11 +00:00
|
|
|
|
|
|
|
/* --- GstVaapiRotation --- */
|
|
|
|
|
|
|
|
GType
|
|
|
|
gst_vaapi_rotation_get_type(void)
|
|
|
|
{
|
|
|
|
static GType g_type = 0;
|
|
|
|
|
|
|
|
static const GEnumValue rotation_values[] = {
|
|
|
|
{ GST_VAAPI_ROTATION_0,
|
|
|
|
"Unrotated mode", "0" },
|
|
|
|
{ GST_VAAPI_ROTATION_90,
|
|
|
|
"Rotated by 90°, clockwise", "90" },
|
|
|
|
{ GST_VAAPI_ROTATION_180,
|
|
|
|
"Rotated by 180°, clockwise", "180" },
|
|
|
|
{ GST_VAAPI_ROTATION_270,
|
|
|
|
"Rotated by 270°, clockwise", "270" },
|
2012-08-30 14:27:56 +00:00
|
|
|
{ 0, NULL, NULL },
|
2012-08-22 06:18:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
if (!g_type)
|
|
|
|
g_type = g_enum_register_static("GstVaapiRotation", rotation_values);
|
|
|
|
return g_type;
|
|
|
|
}
|