2010-03-05 17:11:52 +00:00
|
|
|
/*
|
|
|
|
* gstvaapiconvert.c - VA-API video converter
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2010-03-23 15:22:47 +00:00
|
|
|
/**
|
|
|
|
* SECTION:gstvaapiconvert
|
|
|
|
* @short_description: A VA-API based video pixels format converter
|
|
|
|
*
|
|
|
|
* vaapiconvert converts from raw YUV pixels to surfaces suitable for
|
|
|
|
* the vaapisink element.
|
|
|
|
*/
|
|
|
|
|
2010-03-05 17:11:52 +00:00
|
|
|
#include "config.h"
|
|
|
|
#include <gst/gst.h>
|
2010-03-15 17:10:56 +00:00
|
|
|
#include <gst/video/video.h>
|
2010-03-16 09:03:10 +00:00
|
|
|
#include <gst/vaapi/gstvaapivideosink.h>
|
2010-03-05 17:11:52 +00:00
|
|
|
#include "gstvaapiconvert.h"
|
|
|
|
|
2010-03-15 17:10:56 +00:00
|
|
|
#define GST_PLUGIN_NAME "vaapiconvert"
|
|
|
|
#define GST_PLUGIN_DESC "A VA-API based video pixels format converter"
|
|
|
|
|
|
|
|
GST_DEBUG_CATEGORY_STATIC(gst_debug_vaapiconvert);
|
|
|
|
#define GST_CAT_DEFAULT gst_debug_vaapiconvert
|
|
|
|
|
2010-03-05 17:11:52 +00:00
|
|
|
/* ElementFactory information */
|
|
|
|
static const GstElementDetails gst_vaapiconvert_details =
|
|
|
|
GST_ELEMENT_DETAILS(
|
2010-05-10 09:32:47 +00:00
|
|
|
"VA-API colorspace converter",
|
|
|
|
"Filter/Converter/Video",
|
|
|
|
GST_PLUGIN_DESC,
|
2010-03-05 17:11:52 +00:00
|
|
|
"Gwenole Beauchesne <gbeauchesne@splitted-desktop.com>");
|
|
|
|
|
|
|
|
/* Default templates */
|
2010-03-15 17:10:56 +00:00
|
|
|
static const char gst_vaapiconvert_yuv_caps_str[] =
|
|
|
|
"video/x-raw-yuv, "
|
|
|
|
"width = (int) [ 1, MAX ], "
|
|
|
|
"height = (int) [ 1, MAX ]; ";
|
|
|
|
|
|
|
|
static const char gst_vaapiconvert_vaapi_caps_str[] =
|
2010-05-07 06:35:31 +00:00
|
|
|
GST_VAAPI_SURFACE_CAPS;
|
2010-03-15 17:10:56 +00:00
|
|
|
|
2010-03-05 17:11:52 +00:00
|
|
|
static GstStaticPadTemplate gst_vaapiconvert_sink_factory =
|
|
|
|
GST_STATIC_PAD_TEMPLATE(
|
|
|
|
"sink",
|
|
|
|
GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS,
|
2010-03-15 17:10:56 +00:00
|
|
|
GST_STATIC_CAPS(gst_vaapiconvert_yuv_caps_str));
|
2010-03-05 17:11:52 +00:00
|
|
|
|
|
|
|
static GstStaticPadTemplate gst_vaapiconvert_src_factory =
|
|
|
|
GST_STATIC_PAD_TEMPLATE(
|
|
|
|
"src",
|
|
|
|
GST_PAD_SRC,
|
|
|
|
GST_PAD_ALWAYS,
|
2010-03-15 17:10:56 +00:00
|
|
|
GST_STATIC_CAPS(gst_vaapiconvert_vaapi_caps_str));
|
2010-03-05 17:11:52 +00:00
|
|
|
|
|
|
|
GST_BOILERPLATE(
|
|
|
|
GstVaapiConvert,
|
|
|
|
gst_vaapiconvert,
|
|
|
|
GstBaseTransform,
|
|
|
|
GST_TYPE_BASE_TRANSFORM);
|
|
|
|
|
2010-03-19 08:42:51 +00:00
|
|
|
#define DIRECT_RENDERING_DEFAULT 2
|
|
|
|
|
2010-03-18 16:18:17 +00:00
|
|
|
enum {
|
|
|
|
PROP_0,
|
|
|
|
|
2010-03-19 08:42:51 +00:00
|
|
|
PROP_DIRECT_RENDERING,
|
2010-03-18 16:18:17 +00:00
|
|
|
};
|
|
|
|
|
2010-03-15 17:10:56 +00:00
|
|
|
static gboolean gst_vaapiconvert_start(GstBaseTransform *trans);
|
|
|
|
static gboolean gst_vaapiconvert_stop(GstBaseTransform *trans);
|
|
|
|
|
2010-03-05 17:11:52 +00:00
|
|
|
static GstFlowReturn
|
|
|
|
gst_vaapiconvert_transform(
|
|
|
|
GstBaseTransform *trans,
|
|
|
|
GstBuffer *inbuf,
|
|
|
|
GstBuffer *outbuf
|
|
|
|
);
|
|
|
|
|
2010-03-15 17:10:56 +00:00
|
|
|
static GstCaps *
|
|
|
|
gst_vaapiconvert_transform_caps(
|
|
|
|
GstBaseTransform *trans,
|
|
|
|
GstPadDirection direction,
|
|
|
|
GstCaps *caps
|
|
|
|
);
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_vaapiconvert_set_caps(
|
|
|
|
GstBaseTransform *trans,
|
|
|
|
GstCaps *incaps,
|
|
|
|
GstCaps *outcaps
|
|
|
|
);
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_vaapiconvert_get_unit_size(
|
|
|
|
GstBaseTransform *trans,
|
|
|
|
GstCaps *caps,
|
|
|
|
guint *size
|
|
|
|
);
|
|
|
|
|
|
|
|
static GstFlowReturn
|
|
|
|
gst_vaapiconvert_sinkpad_buffer_alloc(
|
|
|
|
GstPad *pad,
|
|
|
|
guint64 offset,
|
|
|
|
guint size,
|
|
|
|
GstCaps *caps,
|
|
|
|
GstBuffer **pbuf
|
|
|
|
);
|
|
|
|
|
|
|
|
static GstFlowReturn
|
|
|
|
gst_vaapiconvert_prepare_output_buffer(
|
|
|
|
GstBaseTransform *trans,
|
|
|
|
GstBuffer *inbuf,
|
|
|
|
gint size,
|
|
|
|
GstCaps *caps,
|
|
|
|
GstBuffer **poutbuf
|
|
|
|
);
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_vaapiconvert_destroy(GstVaapiConvert *convert)
|
|
|
|
{
|
|
|
|
if (convert->images) {
|
|
|
|
g_object_unref(convert->images);
|
|
|
|
convert->images = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (convert->surfaces) {
|
|
|
|
g_object_unref(convert->surfaces);
|
|
|
|
convert->surfaces = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (convert->display) {
|
|
|
|
g_object_unref(convert->display);
|
|
|
|
convert->display = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-03-05 17:11:52 +00:00
|
|
|
static void gst_vaapiconvert_base_init(gpointer klass)
|
|
|
|
{
|
|
|
|
GstElementClass * const element_class = GST_ELEMENT_CLASS(klass);
|
|
|
|
|
|
|
|
gst_element_class_set_details(element_class, &gst_vaapiconvert_details);
|
|
|
|
|
2010-03-15 17:10:56 +00:00
|
|
|
/* sink pad */
|
2010-03-05 17:11:52 +00:00
|
|
|
gst_element_class_add_pad_template(
|
|
|
|
element_class,
|
|
|
|
gst_static_pad_template_get(&gst_vaapiconvert_sink_factory)
|
|
|
|
);
|
2010-03-15 17:10:56 +00:00
|
|
|
|
|
|
|
/* src pad */
|
2010-03-05 17:11:52 +00:00
|
|
|
gst_element_class_add_pad_template(
|
|
|
|
element_class,
|
|
|
|
gst_static_pad_template_get(&gst_vaapiconvert_src_factory)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2010-03-15 17:10:56 +00:00
|
|
|
static void
|
|
|
|
gst_vaapiconvert_finalize(GObject *object)
|
|
|
|
{
|
|
|
|
gst_vaapiconvert_destroy(GST_VAAPICONVERT(object));
|
|
|
|
|
|
|
|
G_OBJECT_CLASS(parent_class)->finalize(object);
|
|
|
|
}
|
|
|
|
|
2010-03-18 16:18:17 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
gst_vaapiconvert_set_property(
|
|
|
|
GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec
|
|
|
|
)
|
|
|
|
{
|
|
|
|
GstVaapiConvert * const convert = GST_VAAPICONVERT(object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
2010-03-19 08:42:51 +00:00
|
|
|
case PROP_DIRECT_RENDERING:
|
|
|
|
convert->direct_rendering = g_value_get_uint(value);
|
2010-03-18 16:18:17 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_vaapiconvert_get_property(
|
|
|
|
GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec
|
|
|
|
)
|
|
|
|
{
|
|
|
|
GstVaapiConvert * const convert = GST_VAAPICONVERT(object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
2010-03-19 08:42:51 +00:00
|
|
|
case PROP_DIRECT_RENDERING:
|
|
|
|
g_value_set_uint(value, convert->direct_rendering);
|
2010-03-18 16:18:17 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-03-15 17:10:56 +00:00
|
|
|
static void
|
|
|
|
gst_vaapiconvert_class_init(GstVaapiConvertClass *klass)
|
2010-03-05 17:11:52 +00:00
|
|
|
{
|
|
|
|
GObjectClass * const object_class = G_OBJECT_CLASS(klass);
|
|
|
|
GstBaseTransformClass * const trans_class = GST_BASE_TRANSFORM_CLASS(klass);
|
|
|
|
|
2010-03-15 17:10:56 +00:00
|
|
|
object_class->finalize = gst_vaapiconvert_finalize;
|
2010-03-18 16:18:17 +00:00
|
|
|
object_class->set_property = gst_vaapiconvert_set_property;
|
|
|
|
object_class->get_property = gst_vaapiconvert_get_property;
|
2010-03-15 17:10:56 +00:00
|
|
|
|
|
|
|
trans_class->start = gst_vaapiconvert_start;
|
|
|
|
trans_class->stop = gst_vaapiconvert_stop;
|
|
|
|
trans_class->transform = gst_vaapiconvert_transform;
|
|
|
|
trans_class->transform_caps = gst_vaapiconvert_transform_caps;
|
|
|
|
trans_class->set_caps = gst_vaapiconvert_set_caps;
|
|
|
|
trans_class->get_unit_size = gst_vaapiconvert_get_unit_size;
|
|
|
|
trans_class->prepare_output_buffer = gst_vaapiconvert_prepare_output_buffer;
|
2010-03-18 16:18:17 +00:00
|
|
|
|
2010-03-23 15:22:47 +00:00
|
|
|
/**
|
|
|
|
* GstVaapiConvert:direct-rendering:
|
|
|
|
*
|
|
|
|
* Selects the direct rendering level.
|
|
|
|
* <orderedlist>
|
|
|
|
* <listitem override="0">
|
|
|
|
* Disables direct rendering.
|
|
|
|
* </listitem>
|
|
|
|
* <listitem>
|
|
|
|
* Enables direct rendering to the output buffer. i.e. this
|
|
|
|
* tries to use a single buffer for both sink and src pads.
|
|
|
|
* </listitem>
|
|
|
|
* <listitem>
|
|
|
|
* Enables direct rendering to the underlying surface. i.e. with
|
|
|
|
* drivers supporting vaDeriveImage(), the output surface pixels
|
|
|
|
* will be modified directly.
|
|
|
|
* </listitem>
|
|
|
|
* </orderedlist>
|
|
|
|
*/
|
2010-03-18 16:18:17 +00:00
|
|
|
g_object_class_install_property
|
|
|
|
(object_class,
|
2010-03-19 08:42:51 +00:00
|
|
|
PROP_DIRECT_RENDERING,
|
|
|
|
g_param_spec_uint("direct-rendering",
|
|
|
|
"Direct rendering",
|
|
|
|
"Direct rendering level",
|
|
|
|
0, 2,
|
|
|
|
DIRECT_RENDERING_DEFAULT,
|
|
|
|
G_PARAM_READWRITE));
|
2010-03-05 17:11:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_vaapiconvert_init(GstVaapiConvert *convert, GstVaapiConvertClass *klass)
|
|
|
|
{
|
2010-03-15 17:10:56 +00:00
|
|
|
GstPad *sinkpad;
|
|
|
|
|
2010-03-18 08:16:59 +00:00
|
|
|
convert->display = NULL;
|
|
|
|
convert->images = NULL;
|
|
|
|
convert->image_width = 0;
|
|
|
|
convert->image_height = 0;
|
|
|
|
convert->surfaces = NULL;
|
|
|
|
convert->surface_width = 0;
|
|
|
|
convert->surface_height = 0;
|
2010-03-19 08:42:51 +00:00
|
|
|
convert->direct_rendering_caps = 0;
|
|
|
|
convert->direct_rendering = G_MAXUINT32;
|
2010-03-15 17:10:56 +00:00
|
|
|
|
|
|
|
/* Override buffer allocator on sink pad */
|
|
|
|
sinkpad = gst_element_get_static_pad(GST_ELEMENT(convert), "sink");
|
|
|
|
gst_pad_set_bufferalloc_function(
|
|
|
|
sinkpad,
|
|
|
|
gst_vaapiconvert_sinkpad_buffer_alloc
|
|
|
|
);
|
|
|
|
g_object_unref(sinkpad);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean gst_vaapiconvert_start(GstBaseTransform *trans)
|
|
|
|
{
|
|
|
|
GstVaapiConvert * const convert = GST_VAAPICONVERT(trans);
|
2010-03-16 09:03:10 +00:00
|
|
|
GstVaapiVideoSink *sink;
|
2010-03-15 17:10:56 +00:00
|
|
|
GstVaapiDisplay *display;
|
|
|
|
|
|
|
|
/* Look for a downstream vaapisink */
|
2010-03-16 09:03:10 +00:00
|
|
|
sink = gst_vaapi_video_sink_lookup(GST_ELEMENT(trans));
|
2010-03-15 17:10:56 +00:00
|
|
|
if (!sink)
|
|
|
|
return FALSE;
|
|
|
|
|
2010-03-16 09:03:10 +00:00
|
|
|
display = gst_vaapi_video_sink_get_display(sink);
|
2010-03-15 17:10:56 +00:00
|
|
|
if (!display)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
convert->display = g_object_ref(display);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean gst_vaapiconvert_stop(GstBaseTransform *trans)
|
|
|
|
{
|
|
|
|
GstVaapiConvert * const convert = GST_VAAPICONVERT(trans);
|
|
|
|
|
|
|
|
if (convert->display) {
|
|
|
|
g_object_unref(convert->display);
|
|
|
|
convert->display = NULL;
|
|
|
|
}
|
|
|
|
return TRUE;
|
2010-03-05 17:11:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static GstFlowReturn
|
|
|
|
gst_vaapiconvert_transform(
|
|
|
|
GstBaseTransform *trans,
|
|
|
|
GstBuffer *inbuf,
|
|
|
|
GstBuffer *outbuf
|
|
|
|
)
|
2010-03-15 17:10:56 +00:00
|
|
|
{
|
|
|
|
GstVaapiConvert * const convert = GST_VAAPICONVERT(trans);
|
|
|
|
GstVaapiVideoBuffer * const vbuffer = GST_VAAPI_VIDEO_BUFFER(outbuf);
|
|
|
|
GstVaapiSurface *surface;
|
|
|
|
GstVaapiImage *image;
|
|
|
|
|
|
|
|
surface = gst_vaapi_video_buffer_get_surface(vbuffer);
|
|
|
|
if (!surface)
|
|
|
|
return GST_FLOW_UNEXPECTED;
|
|
|
|
|
2010-03-19 08:42:51 +00:00
|
|
|
if (convert->direct_rendering) {
|
2010-03-16 17:57:57 +00:00
|
|
|
if (!GST_VAAPI_IS_VIDEO_BUFFER(inbuf)) {
|
|
|
|
GST_DEBUG("GstVaapiVideoBuffer was expected");
|
|
|
|
return GST_FLOW_UNEXPECTED;
|
|
|
|
}
|
|
|
|
if (inbuf != outbuf) {
|
|
|
|
GST_DEBUG("same GstVaapiVideoBuffer was expected on both pads");
|
|
|
|
return GST_FLOW_UNEXPECTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
image = gst_vaapi_video_buffer_get_image(vbuffer);
|
|
|
|
if (!image)
|
|
|
|
return GST_FLOW_UNEXPECTED;
|
|
|
|
if (!gst_vaapi_image_unmap(image))
|
|
|
|
return GST_FLOW_UNEXPECTED;
|
|
|
|
|
2010-03-19 08:42:51 +00:00
|
|
|
if (convert->direct_rendering < 2)
|
2010-03-18 15:53:50 +00:00
|
|
|
gst_vaapi_surface_put_image(surface, image);
|
2010-03-16 17:57:57 +00:00
|
|
|
return GST_FLOW_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
image = gst_vaapi_video_pool_get_object(convert->images);
|
|
|
|
if (!image)
|
|
|
|
return GST_FLOW_UNEXPECTED;
|
|
|
|
|
2010-03-15 17:10:56 +00:00
|
|
|
gst_vaapi_image_update_from_buffer(image, inbuf);
|
|
|
|
gst_vaapi_surface_put_image(surface, image);
|
|
|
|
gst_vaapi_video_pool_put_object(convert->images, image);
|
|
|
|
return GST_FLOW_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstCaps *
|
|
|
|
gst_vaapiconvert_transform_caps(
|
|
|
|
GstBaseTransform *trans,
|
|
|
|
GstPadDirection direction,
|
|
|
|
GstCaps *caps
|
|
|
|
)
|
|
|
|
{
|
|
|
|
GstVaapiConvert * const convert = GST_VAAPICONVERT(trans);
|
|
|
|
GstCaps *out_caps = NULL;
|
|
|
|
GstStructure *structure;
|
|
|
|
const GValue *v_width, *v_height, *v_framerate, *v_par;
|
|
|
|
|
|
|
|
g_return_val_if_fail(GST_IS_CAPS(caps), NULL);
|
|
|
|
|
|
|
|
structure = gst_caps_get_structure(caps, 0);
|
|
|
|
v_width = gst_structure_get_value(structure, "width");
|
|
|
|
v_height = gst_structure_get_value(structure, "height");
|
|
|
|
v_framerate = gst_structure_get_value(structure, "framerate");
|
|
|
|
v_par = gst_structure_get_value(structure, "pixel-aspect-ratio");
|
|
|
|
|
|
|
|
if (!v_width || !v_height)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (direction == GST_PAD_SINK) {
|
|
|
|
if (!gst_structure_has_name(structure, "video/x-raw-yuv"))
|
|
|
|
return NULL;
|
|
|
|
out_caps = gst_caps_from_string(gst_vaapiconvert_vaapi_caps_str);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (!gst_structure_has_name(structure, "video/x-vaapi-surface"))
|
|
|
|
return NULL;
|
|
|
|
out_caps = gst_caps_from_string(gst_vaapiconvert_yuv_caps_str);
|
|
|
|
if (convert->display) {
|
2010-03-16 08:43:16 +00:00
|
|
|
GstCaps *allowed_caps, *inter_caps;
|
2010-03-15 17:10:56 +00:00
|
|
|
allowed_caps = gst_vaapi_display_get_image_caps(convert->display);
|
|
|
|
if (!allowed_caps)
|
|
|
|
return NULL;
|
2010-03-16 08:43:16 +00:00
|
|
|
inter_caps = gst_caps_intersect(out_caps, allowed_caps);
|
2010-03-15 17:10:56 +00:00
|
|
|
gst_caps_unref(allowed_caps);
|
|
|
|
gst_caps_unref(out_caps);
|
2010-03-16 08:43:16 +00:00
|
|
|
out_caps = inter_caps;
|
2010-03-15 17:10:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
structure = gst_caps_get_structure(out_caps, 0);
|
|
|
|
gst_structure_set_value(structure, "width", v_width);
|
|
|
|
gst_structure_set_value(structure, "height", v_height);
|
|
|
|
if (v_framerate)
|
|
|
|
gst_structure_set_value(structure, "framerate", v_framerate);
|
|
|
|
if (v_par)
|
|
|
|
gst_structure_set_value(structure, "pixel-aspect-ratio", v_par);
|
|
|
|
return out_caps;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2010-03-16 17:57:57 +00:00
|
|
|
gst_vaapiconvert_ensure_image_pool(GstVaapiConvert *convert, GstCaps *caps)
|
2010-03-15 17:10:56 +00:00
|
|
|
{
|
2010-03-16 17:57:57 +00:00
|
|
|
GstStructure * const structure = gst_caps_get_structure(caps, 0);
|
|
|
|
GstVideoFormat vformat;
|
|
|
|
GstVaapiImage *image;
|
2010-03-15 17:10:56 +00:00
|
|
|
gint width, height;
|
|
|
|
|
|
|
|
gst_structure_get_int(structure, "width", &width);
|
|
|
|
gst_structure_get_int(structure, "height", &height);
|
|
|
|
|
|
|
|
if (width != convert->image_width || height != convert->image_height) {
|
2010-03-16 14:37:47 +00:00
|
|
|
convert->image_width = width;
|
|
|
|
convert->image_height = height;
|
2010-03-15 17:10:56 +00:00
|
|
|
if (convert->images)
|
|
|
|
g_object_unref(convert->images);
|
2010-03-16 17:57:57 +00:00
|
|
|
convert->images = gst_vaapi_image_pool_new(convert->display, caps);
|
2010-03-15 17:10:56 +00:00
|
|
|
if (!convert->images)
|
|
|
|
return FALSE;
|
2010-03-16 17:57:57 +00:00
|
|
|
|
|
|
|
/* Check if we can alias sink & output buffers (same data_size) */
|
|
|
|
if (gst_video_format_parse_caps(caps, &vformat, NULL, NULL)) {
|
|
|
|
image = gst_vaapi_video_pool_get_object(convert->images);
|
|
|
|
if (image) {
|
2010-03-19 08:42:51 +00:00
|
|
|
if (convert->direct_rendering_caps == 0 &&
|
2010-03-16 17:57:57 +00:00
|
|
|
(gst_vaapi_image_is_linear(image) &&
|
|
|
|
(gst_vaapi_image_get_data_size(image) ==
|
2010-03-19 08:42:51 +00:00
|
|
|
gst_video_format_get_size(vformat, width, height))))
|
|
|
|
convert->direct_rendering_caps = 1;
|
2010-03-16 17:57:57 +00:00
|
|
|
gst_vaapi_video_pool_put_object(convert->images, image);
|
|
|
|
}
|
|
|
|
}
|
2010-03-15 17:10:56 +00:00
|
|
|
}
|
2010-03-16 17:57:57 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_vaapiconvert_ensure_surface_pool(GstVaapiConvert *convert, GstCaps *caps)
|
|
|
|
{
|
|
|
|
GstStructure * const structure = gst_caps_get_structure(caps, 0);
|
2010-03-18 15:53:50 +00:00
|
|
|
GstVaapiSurface *surface;
|
|
|
|
GstVaapiImage *image;
|
2010-03-16 17:57:57 +00:00
|
|
|
gint width, height;
|
2010-03-15 17:10:56 +00:00
|
|
|
|
|
|
|
gst_structure_get_int(structure, "width", &width);
|
|
|
|
gst_structure_get_int(structure, "height", &height);
|
|
|
|
|
|
|
|
if (width != convert->surface_width || height != convert->surface_height) {
|
2010-03-16 14:37:47 +00:00
|
|
|
convert->surface_width = width;
|
|
|
|
convert->surface_height = height;
|
2010-03-15 17:10:56 +00:00
|
|
|
if (convert->surfaces)
|
|
|
|
g_object_unref(convert->surfaces);
|
2010-03-16 17:57:57 +00:00
|
|
|
convert->surfaces = gst_vaapi_surface_pool_new(convert->display, caps);
|
2010-03-15 17:10:56 +00:00
|
|
|
if (!convert->surfaces)
|
|
|
|
return FALSE;
|
2010-03-18 15:53:50 +00:00
|
|
|
|
|
|
|
/* Check if we can access to the surface pixels directly */
|
|
|
|
surface = gst_vaapi_video_pool_get_object(convert->surfaces);
|
|
|
|
if (surface) {
|
|
|
|
image = gst_vaapi_surface_derive_image(surface);
|
|
|
|
if (image) {
|
|
|
|
if (gst_vaapi_image_map(image)) {
|
2010-03-19 08:42:51 +00:00
|
|
|
if (convert->direct_rendering_caps == 1)
|
|
|
|
convert->direct_rendering_caps = 2;
|
2010-03-18 15:53:50 +00:00
|
|
|
gst_vaapi_image_unmap(image);
|
|
|
|
}
|
|
|
|
g_object_unref(image);
|
|
|
|
}
|
|
|
|
gst_vaapi_video_pool_put_object(convert->surfaces, surface);
|
|
|
|
}
|
2010-03-15 17:10:56 +00:00
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2010-03-16 17:57:57 +00:00
|
|
|
static gboolean
|
2010-03-18 08:16:59 +00:00
|
|
|
gst_vaapiconvert_negotiate_buffers(
|
|
|
|
GstVaapiConvert *convert,
|
2010-03-16 17:57:57 +00:00
|
|
|
GstCaps *incaps,
|
|
|
|
GstCaps *outcaps
|
|
|
|
)
|
|
|
|
{
|
2010-03-19 08:42:51 +00:00
|
|
|
guint dr;
|
2010-03-18 15:58:28 +00:00
|
|
|
|
2010-03-16 17:57:57 +00:00
|
|
|
if (!gst_vaapiconvert_ensure_image_pool(convert, incaps))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (!gst_vaapiconvert_ensure_surface_pool(convert, outcaps))
|
|
|
|
return FALSE;
|
|
|
|
|
2010-03-19 08:42:51 +00:00
|
|
|
dr = MIN(convert->direct_rendering, convert->direct_rendering_caps);
|
|
|
|
if (convert->direct_rendering != dr) {
|
|
|
|
convert->direct_rendering = dr;
|
|
|
|
GST_DEBUG("direct-rendering level: %d", dr);
|
2010-03-18 15:58:28 +00:00
|
|
|
}
|
2010-03-18 08:16:59 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_vaapiconvert_set_caps(
|
|
|
|
GstBaseTransform *trans,
|
|
|
|
GstCaps *incaps,
|
|
|
|
GstCaps *outcaps
|
|
|
|
)
|
|
|
|
{
|
|
|
|
GstVaapiConvert * const convert = GST_VAAPICONVERT(trans);
|
|
|
|
|
|
|
|
if (!gst_vaapiconvert_negotiate_buffers(convert, incaps, outcaps))
|
|
|
|
return FALSE;
|
|
|
|
|
2010-03-16 17:57:57 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2010-03-15 17:10:56 +00:00
|
|
|
static gboolean
|
|
|
|
gst_vaapiconvert_get_unit_size(
|
|
|
|
GstBaseTransform *trans,
|
|
|
|
GstCaps *caps,
|
|
|
|
guint *size
|
|
|
|
)
|
|
|
|
{
|
|
|
|
GstStructure * const structure = gst_caps_get_structure(caps, 0);
|
|
|
|
GstVideoFormat format;
|
|
|
|
gint width, height;
|
|
|
|
|
|
|
|
if (gst_structure_has_name(structure, "video/x-vaapi-surface"))
|
|
|
|
*size = 0;
|
|
|
|
else {
|
|
|
|
if (!gst_video_format_parse_caps(caps, &format, &width, &height))
|
|
|
|
return FALSE;
|
|
|
|
*size = gst_video_format_get_size(format, width, height);
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstFlowReturn
|
|
|
|
gst_vaapiconvert_buffer_alloc(
|
|
|
|
GstBaseTransform *trans,
|
|
|
|
guint size,
|
|
|
|
GstCaps *caps,
|
|
|
|
GstBuffer **pbuf
|
|
|
|
)
|
2010-03-05 17:11:52 +00:00
|
|
|
{
|
2010-03-16 17:57:57 +00:00
|
|
|
GstVaapiConvert * const convert = GST_VAAPICONVERT(trans);
|
|
|
|
GstBuffer *buffer = NULL;
|
2010-03-18 15:53:50 +00:00
|
|
|
GstVaapiImage *image = NULL;
|
2010-03-16 17:57:57 +00:00
|
|
|
|
2010-03-19 08:42:51 +00:00
|
|
|
/* Check if we can use direct-rendering */
|
2010-03-18 08:16:59 +00:00
|
|
|
if (!gst_vaapiconvert_negotiate_buffers(convert, caps, caps))
|
2010-03-16 17:57:57 +00:00
|
|
|
goto error;
|
2010-03-19 08:42:51 +00:00
|
|
|
if (!convert->direct_rendering)
|
2010-03-16 17:57:57 +00:00
|
|
|
return GST_FLOW_OK;
|
|
|
|
|
|
|
|
buffer = gst_vaapi_video_buffer_new_from_pool(convert->surfaces);
|
|
|
|
if (!buffer)
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
GstVaapiVideoBuffer * const vbuffer = GST_VAAPI_VIDEO_BUFFER(buffer);
|
2010-03-19 08:42:51 +00:00
|
|
|
GstVaapiSurface *surface;
|
|
|
|
switch (convert->direct_rendering) {
|
|
|
|
case 2:
|
|
|
|
surface = gst_vaapi_video_buffer_get_surface(vbuffer);
|
|
|
|
image = gst_vaapi_surface_derive_image(surface);
|
|
|
|
if (image) {
|
2010-03-18 15:53:50 +00:00
|
|
|
gst_vaapi_video_buffer_set_image(vbuffer, image);
|
2010-03-19 08:42:51 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* We can't use the derive-image optimization. Disable it. */
|
|
|
|
convert->direct_rendering = 1;
|
|
|
|
case 1:
|
2010-03-18 15:53:50 +00:00
|
|
|
if (!gst_vaapi_video_buffer_set_image_from_pool(vbuffer, convert->images))
|
|
|
|
goto error;
|
|
|
|
image = gst_vaapi_video_buffer_get_image(vbuffer);
|
2010-03-19 08:42:51 +00:00
|
|
|
break;
|
2010-03-18 15:53:50 +00:00
|
|
|
}
|
2010-03-16 17:57:57 +00:00
|
|
|
g_assert(image);
|
|
|
|
|
|
|
|
if (!gst_vaapi_image_map(image))
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
GST_BUFFER_DATA(buffer) = gst_vaapi_image_get_plane(image, 0);
|
|
|
|
GST_BUFFER_SIZE(buffer) = gst_vaapi_image_get_data_size(image);
|
|
|
|
|
|
|
|
gst_buffer_set_caps(buffer, caps);
|
|
|
|
*pbuf = buffer;
|
|
|
|
return GST_FLOW_OK;
|
|
|
|
|
|
|
|
error:
|
|
|
|
/* We can't use the inout-buffers optimization. Disable it. */
|
|
|
|
if (buffer)
|
|
|
|
gst_buffer_unref(buffer);
|
2010-03-19 08:42:51 +00:00
|
|
|
convert->direct_rendering = 0;
|
2010-03-05 17:11:52 +00:00
|
|
|
return GST_FLOW_OK;
|
|
|
|
}
|
|
|
|
|
2010-03-15 17:10:56 +00:00
|
|
|
static GstFlowReturn
|
|
|
|
gst_vaapiconvert_sinkpad_buffer_alloc(
|
|
|
|
GstPad *pad,
|
|
|
|
guint64 offset,
|
|
|
|
guint size,
|
|
|
|
GstCaps *caps,
|
|
|
|
GstBuffer **pbuf
|
|
|
|
)
|
|
|
|
{
|
|
|
|
GstBaseTransform *trans;
|
|
|
|
GstFlowReturn ret;
|
|
|
|
|
|
|
|
trans = GST_BASE_TRANSFORM(gst_pad_get_parent_element(pad));
|
|
|
|
if (!trans)
|
|
|
|
return GST_FLOW_UNEXPECTED;
|
|
|
|
|
|
|
|
ret = gst_vaapiconvert_buffer_alloc(trans, size, caps, pbuf);
|
|
|
|
g_object_unref(trans);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstFlowReturn
|
|
|
|
gst_vaapiconvert_prepare_output_buffer(
|
|
|
|
GstBaseTransform *trans,
|
|
|
|
GstBuffer *inbuf,
|
|
|
|
gint size,
|
|
|
|
GstCaps *caps,
|
|
|
|
GstBuffer **poutbuf
|
|
|
|
)
|
|
|
|
{
|
|
|
|
GstVaapiConvert * const convert = GST_VAAPICONVERT(trans);
|
|
|
|
GstBuffer *buffer;
|
|
|
|
|
2010-03-18 08:45:57 +00:00
|
|
|
if (GST_VAAPI_IS_VIDEO_BUFFER(inbuf))
|
2010-03-16 17:57:57 +00:00
|
|
|
buffer = gst_buffer_ref(inbuf);
|
|
|
|
else {
|
2010-03-19 08:42:51 +00:00
|
|
|
if (convert->direct_rendering) {
|
2010-03-18 08:45:57 +00:00
|
|
|
GST_DEBUG("upstream element destroyed our inout buffer");
|
2010-03-19 08:42:51 +00:00
|
|
|
convert->direct_rendering = 0;
|
2010-03-18 08:45:57 +00:00
|
|
|
}
|
2010-03-16 17:57:57 +00:00
|
|
|
buffer = gst_vaapi_video_buffer_new_from_pool(convert->surfaces);
|
|
|
|
if (!buffer)
|
|
|
|
return GST_FLOW_UNEXPECTED;
|
|
|
|
}
|
2010-03-15 17:10:56 +00:00
|
|
|
|
|
|
|
gst_buffer_set_caps(buffer, caps);
|
|
|
|
*poutbuf = buffer;
|
|
|
|
return GST_FLOW_OK;
|
|
|
|
}
|
|
|
|
|
2010-03-05 17:11:52 +00:00
|
|
|
static gboolean plugin_init(GstPlugin *plugin)
|
|
|
|
{
|
2010-03-15 17:10:56 +00:00
|
|
|
GST_DEBUG_CATEGORY_INIT(gst_debug_vaapiconvert,
|
|
|
|
GST_PLUGIN_NAME, 0, GST_PLUGIN_DESC);
|
|
|
|
|
2010-03-05 17:11:52 +00:00
|
|
|
return gst_element_register(plugin,
|
2010-03-15 17:10:56 +00:00
|
|
|
GST_PLUGIN_NAME,
|
2010-05-05 06:06:02 +00:00
|
|
|
GST_RANK_NONE,
|
2010-03-05 17:11:52 +00:00
|
|
|
GST_TYPE_VAAPICONVERT);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_PLUGIN_DEFINE(
|
|
|
|
GST_VERSION_MAJOR, GST_VERSION_MINOR,
|
2010-03-15 17:10:56 +00:00
|
|
|
GST_PLUGIN_NAME,
|
|
|
|
GST_PLUGIN_DESC,
|
2010-03-05 17:11:52 +00:00
|
|
|
plugin_init,
|
|
|
|
PACKAGE_VERSION,
|
|
|
|
"GPL",
|
|
|
|
PACKAGE,
|
|
|
|
PACKAGE_BUGREPORT);
|