2010-03-05 17:11:52 +00:00
|
|
|
/*
|
2012-11-20 13:32:40 +00:00
|
|
|
* gstvaapiupload.c - VA-API video upload element
|
2010-03-05 17:11:52 +00:00
|
|
|
*
|
2012-01-16 09:41:10 +00:00
|
|
|
* Copyright (C) 2010-2011 Splitted-Desktop Systems
|
2013-01-29 13:14:45 +00:00
|
|
|
* Copyright (C) 2011-2013 Intel Corporation
|
2010-03-05 17:11:52 +00:00
|
|
|
*
|
2011-10-18 07:06:52 +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-05 17:11:52 +00:00
|
|
|
*
|
2011-10-18 07:06:52 +00:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
2010-03-05 17:11:52 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2011-10-18 07:06:52 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2010-03-05 17:11:52 +00:00
|
|
|
*
|
2011-10-18 07:06:52 +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-05 17:11:52 +00:00
|
|
|
*/
|
|
|
|
|
2010-03-23 15:22:47 +00:00
|
|
|
/**
|
2012-01-03 13:34:09 +00:00
|
|
|
* SECTION:gstvaapiupload
|
|
|
|
* @short_description: A video to VA flow filter
|
2010-03-23 15:22:47 +00:00
|
|
|
*
|
2012-01-03 13:34:09 +00:00
|
|
|
* vaapiupload converts from raw YUV pixels to VA surfaces suitable
|
|
|
|
* for the vaapisink element, for example.
|
2010-03-23 15:22:47 +00:00
|
|
|
*/
|
|
|
|
|
2012-09-12 11:41:47 +00:00
|
|
|
#include "gst/vaapi/sysdeps.h"
|
2010-03-05 17:11:52 +00:00
|
|
|
#include <gst/gst.h>
|
2010-03-15 17:10:56 +00:00
|
|
|
#include <gst/video/video.h>
|
2011-11-04 20:50:15 +00:00
|
|
|
#include <gst/video/videocontext.h>
|
2013-01-05 16:55:47 +00:00
|
|
|
#include <gst/vaapi/gstvaapivideometa.h>
|
2011-11-04 20:50:15 +00:00
|
|
|
|
2012-01-03 13:34:09 +00:00
|
|
|
#include "gstvaapiupload.h"
|
2012-07-24 12:31:25 +00:00
|
|
|
#include "gstvaapipluginutil.h"
|
|
|
|
#include "gstvaapipluginbuffer.h"
|
2010-03-05 17:11:52 +00:00
|
|
|
|
2012-01-03 13:34:09 +00:00
|
|
|
#define GST_PLUGIN_NAME "vaapiupload"
|
|
|
|
#define GST_PLUGIN_DESC "A video to VA flow filter"
|
2010-03-15 17:10:56 +00:00
|
|
|
|
2012-01-03 13:34:09 +00:00
|
|
|
GST_DEBUG_CATEGORY_STATIC(gst_debug_vaapiupload);
|
|
|
|
#define GST_CAT_DEFAULT gst_debug_vaapiupload
|
2010-03-15 17:10:56 +00:00
|
|
|
|
2010-03-05 17:11:52 +00:00
|
|
|
/* ElementFactory information */
|
2012-01-03 13:34:09 +00:00
|
|
|
static const GstElementDetails gst_vaapiupload_details =
|
2010-03-05 17:11:52 +00:00
|
|
|
GST_ELEMENT_DETAILS(
|
2010-05-10 09:32:47 +00:00
|
|
|
"VA-API colorspace converter",
|
|
|
|
"Filter/Converter/Video",
|
|
|
|
GST_PLUGIN_DESC,
|
2011-10-19 12:43:56 +00:00
|
|
|
"Gwenole Beauchesne <gwenole.beauchesne@intel.com>");
|
2010-03-05 17:11:52 +00:00
|
|
|
|
|
|
|
/* Default templates */
|
2012-01-03 13:34:09 +00:00
|
|
|
static const char gst_vaapiupload_yuv_caps_str[] =
|
2010-03-15 17:10:56 +00:00
|
|
|
"video/x-raw-yuv, "
|
2010-05-12 09:34:37 +00:00
|
|
|
"width = (int) [ 1, MAX ], "
|
2010-03-15 17:10:56 +00:00
|
|
|
"height = (int) [ 1, MAX ]; ";
|
|
|
|
|
2012-01-03 13:34:09 +00:00
|
|
|
static const char gst_vaapiupload_vaapi_caps_str[] =
|
2010-05-07 06:35:31 +00:00
|
|
|
GST_VAAPI_SURFACE_CAPS;
|
2010-03-15 17:10:56 +00:00
|
|
|
|
2012-01-03 13:34:09 +00:00
|
|
|
static GstStaticPadTemplate gst_vaapiupload_sink_factory =
|
2010-03-05 17:11:52 +00:00
|
|
|
GST_STATIC_PAD_TEMPLATE(
|
|
|
|
"sink",
|
|
|
|
GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS,
|
2012-01-03 13:34:09 +00:00
|
|
|
GST_STATIC_CAPS(gst_vaapiupload_yuv_caps_str));
|
2010-03-05 17:11:52 +00:00
|
|
|
|
2012-01-03 13:34:09 +00:00
|
|
|
static GstStaticPadTemplate gst_vaapiupload_src_factory =
|
2010-03-05 17:11:52 +00:00
|
|
|
GST_STATIC_PAD_TEMPLATE(
|
|
|
|
"src",
|
|
|
|
GST_PAD_SRC,
|
|
|
|
GST_PAD_ALWAYS,
|
2012-01-03 13:34:09 +00:00
|
|
|
GST_STATIC_CAPS(gst_vaapiupload_vaapi_caps_str));
|
2010-03-05 17:11:52 +00:00
|
|
|
|
2012-07-19 09:43:03 +00:00
|
|
|
static void
|
|
|
|
gst_vaapiupload_implements_iface_init(GstImplementsInterfaceClass *iface);
|
|
|
|
|
2012-06-30 17:58:36 +00:00
|
|
|
static void
|
|
|
|
gst_video_context_interface_init(GstVideoContextInterface *iface);
|
|
|
|
|
2011-11-04 20:50:15 +00:00
|
|
|
#define GstVideoContextClass GstVideoContextInterface
|
2012-06-30 17:58:36 +00:00
|
|
|
G_DEFINE_TYPE_WITH_CODE(
|
2012-01-03 13:34:09 +00:00
|
|
|
GstVaapiUpload,
|
|
|
|
gst_vaapiupload,
|
2011-11-04 20:50:15 +00:00
|
|
|
GST_TYPE_BASE_TRANSFORM,
|
2012-07-19 09:43:03 +00:00
|
|
|
G_IMPLEMENT_INTERFACE(GST_TYPE_IMPLEMENTS_INTERFACE,
|
|
|
|
gst_vaapiupload_implements_iface_init);
|
2012-06-30 17:58:36 +00:00
|
|
|
G_IMPLEMENT_INTERFACE(GST_TYPE_VIDEO_CONTEXT,
|
2012-09-07 14:11:12 +00:00
|
|
|
gst_video_context_interface_init))
|
2010-03-05 17:11:52 +00:00
|
|
|
|
2010-05-12 09:34:37 +00:00
|
|
|
static gboolean
|
2012-01-03 13:34:09 +00:00
|
|
|
gst_vaapiupload_start(GstBaseTransform *trans);
|
2010-05-12 09:34:37 +00:00
|
|
|
|
|
|
|
static gboolean
|
2012-01-03 13:34:09 +00:00
|
|
|
gst_vaapiupload_stop(GstBaseTransform *trans);
|
2010-03-15 17:10:56 +00:00
|
|
|
|
2010-03-05 17:11:52 +00:00
|
|
|
static GstFlowReturn
|
2012-01-03 13:34:09 +00:00
|
|
|
gst_vaapiupload_transform(
|
2010-03-05 17:11:52 +00:00
|
|
|
GstBaseTransform *trans,
|
|
|
|
GstBuffer *inbuf,
|
|
|
|
GstBuffer *outbuf
|
|
|
|
);
|
|
|
|
|
2010-03-15 17:10:56 +00:00
|
|
|
static GstCaps *
|
2012-01-03 13:34:09 +00:00
|
|
|
gst_vaapiupload_transform_caps(
|
2010-03-15 17:10:56 +00:00
|
|
|
GstBaseTransform *trans,
|
|
|
|
GstPadDirection direction,
|
|
|
|
GstCaps *caps
|
|
|
|
);
|
|
|
|
|
|
|
|
static gboolean
|
2012-01-03 13:34:09 +00:00
|
|
|
gst_vaapiupload_set_caps(
|
2010-03-15 17:10:56 +00:00
|
|
|
GstBaseTransform *trans,
|
|
|
|
GstCaps *incaps,
|
|
|
|
GstCaps *outcaps
|
|
|
|
);
|
|
|
|
|
|
|
|
static gboolean
|
2012-01-03 13:34:09 +00:00
|
|
|
gst_vaapiupload_get_unit_size(
|
2010-03-15 17:10:56 +00:00
|
|
|
GstBaseTransform *trans,
|
|
|
|
GstCaps *caps,
|
|
|
|
guint *size
|
|
|
|
);
|
|
|
|
|
|
|
|
static GstFlowReturn
|
2012-01-03 13:34:09 +00:00
|
|
|
gst_vaapiupload_sinkpad_buffer_alloc(
|
2010-03-15 17:10:56 +00:00
|
|
|
GstPad *pad,
|
|
|
|
guint64 offset,
|
|
|
|
guint size,
|
|
|
|
GstCaps *caps,
|
|
|
|
GstBuffer **pbuf
|
|
|
|
);
|
|
|
|
|
|
|
|
static GstFlowReturn
|
2012-01-03 13:34:09 +00:00
|
|
|
gst_vaapiupload_prepare_output_buffer(
|
2010-03-15 17:10:56 +00:00
|
|
|
GstBaseTransform *trans,
|
|
|
|
GstBuffer *inbuf,
|
|
|
|
gint size,
|
|
|
|
GstCaps *caps,
|
|
|
|
GstBuffer **poutbuf
|
|
|
|
);
|
|
|
|
|
2011-11-04 20:50:15 +00:00
|
|
|
static gboolean
|
2012-01-03 13:34:09 +00:00
|
|
|
gst_vaapiupload_query(
|
2011-11-04 20:50:15 +00:00
|
|
|
GstPad *pad,
|
|
|
|
GstQuery *query
|
|
|
|
);
|
|
|
|
|
2012-07-19 09:43:03 +00:00
|
|
|
/* GstImplementsInterface interface */
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_vaapiupload_implements_interface_supported(
|
|
|
|
GstImplementsInterface *iface,
|
|
|
|
GType type
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return (type == GST_TYPE_VIDEO_CONTEXT);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_vaapiupload_implements_iface_init(GstImplementsInterfaceClass *iface)
|
|
|
|
{
|
|
|
|
iface->supported = gst_vaapiupload_implements_interface_supported;
|
|
|
|
}
|
|
|
|
|
2011-11-04 20:50:15 +00:00
|
|
|
/* GstVideoContext interface */
|
|
|
|
|
|
|
|
static void
|
2012-01-03 13:34:09 +00:00
|
|
|
gst_vaapiupload_set_video_context(GstVideoContext *context, const gchar *type,
|
2011-11-04 20:50:15 +00:00
|
|
|
const GValue *value)
|
|
|
|
{
|
2012-11-20 13:32:40 +00:00
|
|
|
GstVaapiUpload * const upload = GST_VAAPIUPLOAD(context);
|
|
|
|
|
|
|
|
gst_vaapi_set_display(type, value, &upload->display);
|
|
|
|
|
|
|
|
if (upload->uploader)
|
|
|
|
gst_vaapi_uploader_ensure_display(upload->uploader, upload->display);
|
2011-11-04 20:50:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_video_context_interface_init(GstVideoContextInterface *iface)
|
|
|
|
{
|
2012-01-03 13:34:09 +00:00
|
|
|
iface->set_context = gst_vaapiupload_set_video_context;
|
2011-11-04 20:50:15 +00:00
|
|
|
}
|
|
|
|
|
2010-03-15 17:10:56 +00:00
|
|
|
static void
|
2012-01-03 13:34:09 +00:00
|
|
|
gst_vaapiupload_destroy(GstVaapiUpload *upload)
|
2010-03-15 17:10:56 +00:00
|
|
|
{
|
2012-11-20 13:32:40 +00:00
|
|
|
g_clear_object(&upload->uploader);
|
2012-06-30 20:50:17 +00:00
|
|
|
g_clear_object(&upload->display);
|
2010-03-15 17:10:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-01-03 13:34:09 +00:00
|
|
|
gst_vaapiupload_finalize(GObject *object)
|
2010-03-15 17:10:56 +00:00
|
|
|
{
|
2012-01-03 13:34:09 +00:00
|
|
|
gst_vaapiupload_destroy(GST_VAAPIUPLOAD(object));
|
2010-03-15 17:10:56 +00:00
|
|
|
|
2012-06-30 17:58:36 +00:00
|
|
|
G_OBJECT_CLASS(gst_vaapiupload_parent_class)->finalize(object);
|
2010-03-15 17:10:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-01-03 13:34:09 +00:00
|
|
|
gst_vaapiupload_class_init(GstVaapiUploadClass *klass)
|
2010-03-05 17:11:52 +00:00
|
|
|
{
|
|
|
|
GObjectClass * const object_class = G_OBJECT_CLASS(klass);
|
2012-06-30 17:58:36 +00:00
|
|
|
GstElementClass * const element_class = GST_ELEMENT_CLASS(klass);
|
2010-03-05 17:11:52 +00:00
|
|
|
GstBaseTransformClass * const trans_class = GST_BASE_TRANSFORM_CLASS(klass);
|
2012-06-30 17:58:36 +00:00
|
|
|
GstPadTemplate *pad_template;
|
2010-03-05 17:11:52 +00:00
|
|
|
|
2012-01-03 13:34:09 +00:00
|
|
|
GST_DEBUG_CATEGORY_INIT(gst_debug_vaapiupload,
|
2011-09-14 19:12:41 +00:00
|
|
|
GST_PLUGIN_NAME, 0, GST_PLUGIN_DESC);
|
|
|
|
|
2012-01-03 13:34:09 +00:00
|
|
|
object_class->finalize = gst_vaapiupload_finalize;
|
2010-03-15 17:10:56 +00:00
|
|
|
|
2012-01-03 13:34:09 +00:00
|
|
|
trans_class->start = gst_vaapiupload_start;
|
|
|
|
trans_class->stop = gst_vaapiupload_stop;
|
|
|
|
trans_class->transform = gst_vaapiupload_transform;
|
|
|
|
trans_class->transform_caps = gst_vaapiupload_transform_caps;
|
|
|
|
trans_class->set_caps = gst_vaapiupload_set_caps;
|
|
|
|
trans_class->get_unit_size = gst_vaapiupload_get_unit_size;
|
|
|
|
trans_class->prepare_output_buffer = gst_vaapiupload_prepare_output_buffer;
|
2010-03-18 16:18:17 +00:00
|
|
|
|
2012-06-30 17:58:36 +00:00
|
|
|
gst_element_class_set_details_simple(
|
|
|
|
element_class,
|
|
|
|
gst_vaapiupload_details.longname,
|
|
|
|
gst_vaapiupload_details.klass,
|
|
|
|
gst_vaapiupload_details.description,
|
|
|
|
gst_vaapiupload_details.author
|
|
|
|
);
|
|
|
|
|
|
|
|
/* sink pad */
|
|
|
|
pad_template = gst_static_pad_template_get(&gst_vaapiupload_sink_factory);
|
|
|
|
gst_element_class_add_pad_template(element_class, pad_template);
|
|
|
|
gst_object_unref(pad_template);
|
|
|
|
|
|
|
|
/* src pad */
|
|
|
|
pad_template = gst_static_pad_template_get(&gst_vaapiupload_src_factory);
|
|
|
|
gst_element_class_add_pad_template(element_class, pad_template);
|
|
|
|
gst_object_unref(pad_template);
|
2010-03-05 17:11:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-06-30 17:58:36 +00:00
|
|
|
gst_vaapiupload_init(GstVaapiUpload *upload)
|
2010-03-05 17:11:52 +00:00
|
|
|
{
|
2011-11-04 20:50:15 +00:00
|
|
|
GstPad *sinkpad, *srcpad;
|
2010-03-15 17:10:56 +00:00
|
|
|
|
|
|
|
/* Override buffer allocator on sink pad */
|
2012-01-03 13:34:09 +00:00
|
|
|
sinkpad = gst_element_get_static_pad(GST_ELEMENT(upload), "sink");
|
2010-03-15 17:10:56 +00:00
|
|
|
gst_pad_set_bufferalloc_function(
|
|
|
|
sinkpad,
|
2012-01-03 13:34:09 +00:00
|
|
|
gst_vaapiupload_sinkpad_buffer_alloc
|
2010-03-15 17:10:56 +00:00
|
|
|
);
|
2012-01-03 13:34:09 +00:00
|
|
|
gst_pad_set_query_function(sinkpad, gst_vaapiupload_query);
|
2010-03-15 17:10:56 +00:00
|
|
|
g_object_unref(sinkpad);
|
2011-11-04 20:50:15 +00:00
|
|
|
|
|
|
|
/* Override query on src pad */
|
2012-01-03 13:34:09 +00:00
|
|
|
srcpad = gst_element_get_static_pad(GST_ELEMENT(upload), "src");
|
|
|
|
gst_pad_set_query_function(srcpad, gst_vaapiupload_query);
|
2012-01-03 17:16:35 +00:00
|
|
|
g_object_unref(srcpad);
|
2010-03-15 17:10:56 +00:00
|
|
|
}
|
|
|
|
|
2012-07-25 08:02:29 +00:00
|
|
|
static inline gboolean
|
|
|
|
gst_vaapiupload_ensure_display(GstVaapiUpload *upload)
|
|
|
|
{
|
|
|
|
return gst_vaapi_ensure_display(upload, GST_VAAPI_DISPLAY_TYPE_ANY,
|
|
|
|
&upload->display);
|
|
|
|
}
|
|
|
|
|
2012-11-20 13:32:40 +00:00
|
|
|
static gboolean
|
|
|
|
gst_vaapiupload_ensure_uploader(GstVaapiUpload *upload)
|
|
|
|
{
|
|
|
|
if (!gst_vaapiupload_ensure_display(upload))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (!upload->uploader) {
|
|
|
|
upload->uploader = gst_vaapi_uploader_new(upload->display);
|
|
|
|
if (!upload->uploader)
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if (!gst_vaapi_uploader_ensure_display(upload->uploader, upload->display))
|
|
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2010-05-12 09:34:37 +00:00
|
|
|
static gboolean
|
2012-01-03 13:34:09 +00:00
|
|
|
gst_vaapiupload_start(GstBaseTransform *trans)
|
2010-03-15 17:10:56 +00:00
|
|
|
{
|
2012-01-03 13:34:09 +00:00
|
|
|
GstVaapiUpload * const upload = GST_VAAPIUPLOAD(trans);
|
2010-03-15 17:10:56 +00:00
|
|
|
|
2012-11-20 13:32:40 +00:00
|
|
|
if (!gst_vaapiupload_ensure_uploader(upload))
|
2010-03-15 17:10:56 +00:00
|
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2010-05-12 09:34:37 +00:00
|
|
|
static gboolean
|
2012-01-03 13:34:09 +00:00
|
|
|
gst_vaapiupload_stop(GstBaseTransform *trans)
|
2010-03-15 17:10:56 +00:00
|
|
|
{
|
2012-01-03 13:34:09 +00:00
|
|
|
GstVaapiUpload * const upload = GST_VAAPIUPLOAD(trans);
|
2010-03-15 17:10:56 +00:00
|
|
|
|
2012-06-30 20:50:17 +00:00
|
|
|
g_clear_object(&upload->display);
|
|
|
|
|
2010-03-15 17:10:56 +00:00
|
|
|
return TRUE;
|
2010-03-05 17:11:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static GstFlowReturn
|
2012-01-03 13:34:09 +00:00
|
|
|
gst_vaapiupload_transform(
|
2010-03-05 17:11:52 +00:00
|
|
|
GstBaseTransform *trans,
|
|
|
|
GstBuffer *inbuf,
|
|
|
|
GstBuffer *outbuf
|
|
|
|
)
|
2010-03-15 17:10:56 +00:00
|
|
|
{
|
2012-01-03 13:34:09 +00:00
|
|
|
GstVaapiUpload * const upload = GST_VAAPIUPLOAD(trans);
|
2010-03-16 17:57:57 +00:00
|
|
|
|
2012-11-20 13:32:40 +00:00
|
|
|
if (!gst_vaapi_uploader_process(upload->uploader, inbuf, outbuf))
|
2010-03-16 17:57:57 +00:00
|
|
|
return GST_FLOW_UNEXPECTED;
|
2010-03-15 17:10:56 +00:00
|
|
|
return GST_FLOW_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstCaps *
|
2012-01-03 13:34:09 +00:00
|
|
|
gst_vaapiupload_transform_caps(
|
2010-03-15 17:10:56 +00:00
|
|
|
GstBaseTransform *trans,
|
|
|
|
GstPadDirection direction,
|
|
|
|
GstCaps *caps
|
|
|
|
)
|
|
|
|
{
|
2012-01-03 13:34:09 +00:00
|
|
|
GstVaapiUpload * const upload = GST_VAAPIUPLOAD(trans);
|
2010-03-15 17:10:56 +00:00
|
|
|
GstCaps *out_caps = NULL;
|
|
|
|
GstStructure *structure;
|
|
|
|
|
|
|
|
g_return_val_if_fail(GST_IS_CAPS(caps), NULL);
|
|
|
|
|
2012-01-05 10:01:56 +00:00
|
|
|
structure = gst_caps_get_structure(caps, 0);
|
2010-03-15 17:10:56 +00:00
|
|
|
|
|
|
|
if (direction == GST_PAD_SINK) {
|
|
|
|
if (!gst_structure_has_name(structure, "video/x-raw-yuv"))
|
|
|
|
return NULL;
|
2012-01-03 13:34:09 +00:00
|
|
|
out_caps = gst_caps_from_string(gst_vaapiupload_vaapi_caps_str);
|
2012-01-05 09:55:34 +00:00
|
|
|
|
|
|
|
structure = gst_caps_get_structure(out_caps, 0);
|
|
|
|
gst_structure_set(
|
|
|
|
structure,
|
|
|
|
"type", G_TYPE_STRING, "vaapi",
|
2012-07-23 14:15:38 +00:00
|
|
|
"opengl", G_TYPE_BOOLEAN, USE_GLX,
|
2012-01-05 09:55:34 +00:00
|
|
|
NULL
|
|
|
|
);
|
2010-03-15 17:10:56 +00:00
|
|
|
}
|
|
|
|
else {
|
2011-11-04 21:16:23 +00:00
|
|
|
if (!gst_structure_has_name(structure, GST_VAAPI_SURFACE_CAPS_NAME))
|
2010-03-15 17:10:56 +00:00
|
|
|
return NULL;
|
2012-01-03 13:34:09 +00:00
|
|
|
out_caps = gst_caps_from_string(gst_vaapiupload_yuv_caps_str);
|
2012-11-20 13:42:24 +00:00
|
|
|
if (gst_vaapiupload_ensure_uploader(upload)) {
|
2010-03-16 08:43:16 +00:00
|
|
|
GstCaps *allowed_caps, *inter_caps;
|
2012-11-20 13:42:24 +00:00
|
|
|
allowed_caps = gst_vaapi_uploader_get_caps(upload->uploader);
|
2010-03-15 17:10:56 +00:00
|
|
|
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(out_caps);
|
2010-03-16 08:43:16 +00:00
|
|
|
out_caps = inter_caps;
|
2010-03-15 17:10:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-05 10:01:56 +00:00
|
|
|
if (!gst_vaapi_append_surface_caps(out_caps, caps)) {
|
|
|
|
gst_caps_unref(out_caps);
|
|
|
|
return NULL;
|
|
|
|
}
|
2010-03-15 17:10:56 +00:00
|
|
|
return out_caps;
|
|
|
|
}
|
|
|
|
|
2010-03-18 08:16:59 +00:00
|
|
|
static gboolean
|
2012-01-03 13:34:09 +00:00
|
|
|
gst_vaapiupload_set_caps(
|
2010-03-18 08:16:59 +00:00
|
|
|
GstBaseTransform *trans,
|
|
|
|
GstCaps *incaps,
|
|
|
|
GstCaps *outcaps
|
|
|
|
)
|
|
|
|
{
|
2012-01-03 13:34:09 +00:00
|
|
|
GstVaapiUpload * const upload = GST_VAAPIUPLOAD(trans);
|
2010-03-18 08:16:59 +00:00
|
|
|
|
2012-11-20 13:32:40 +00:00
|
|
|
if (!gst_vaapi_uploader_ensure_caps(upload->uploader, incaps, outcaps))
|
2010-03-18 08:16:59 +00:00
|
|
|
return FALSE;
|
2010-03-16 17:57:57 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2010-03-15 17:10:56 +00:00
|
|
|
static gboolean
|
2012-01-03 13:34:09 +00:00
|
|
|
gst_vaapiupload_get_unit_size(
|
2010-03-15 17:10:56 +00:00
|
|
|
GstBaseTransform *trans,
|
|
|
|
GstCaps *caps,
|
|
|
|
guint *size
|
|
|
|
)
|
|
|
|
{
|
|
|
|
GstStructure * const structure = gst_caps_get_structure(caps, 0);
|
|
|
|
GstVideoFormat format;
|
|
|
|
gint width, height;
|
|
|
|
|
2011-11-04 21:16:23 +00:00
|
|
|
if (gst_structure_has_name(structure, GST_VAAPI_SURFACE_CAPS_NAME))
|
2010-03-15 17:10:56 +00:00
|
|
|
*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
|
2012-01-03 13:34:09 +00:00
|
|
|
gst_vaapiupload_buffer_alloc(
|
2010-03-15 17:10:56 +00:00
|
|
|
GstBaseTransform *trans,
|
|
|
|
guint size,
|
|
|
|
GstCaps *caps,
|
|
|
|
GstBuffer **pbuf
|
|
|
|
)
|
2010-03-05 17:11:52 +00:00
|
|
|
{
|
2012-01-03 13:34:09 +00:00
|
|
|
GstVaapiUpload * const upload = GST_VAAPIUPLOAD(trans);
|
2010-03-16 17:57:57 +00:00
|
|
|
|
2012-11-20 13:32:40 +00:00
|
|
|
*pbuf = NULL;
|
2011-09-05 14:20:20 +00:00
|
|
|
|
2012-11-20 13:32:40 +00:00
|
|
|
if (!gst_vaapi_uploader_ensure_display(upload->uploader, upload->display))
|
|
|
|
return GST_FLOW_NOT_SUPPORTED;
|
|
|
|
if (!gst_vaapi_uploader_ensure_caps(upload->uploader, caps, NULL))
|
|
|
|
return GST_FLOW_NOT_SUPPORTED;
|
2011-09-05 14:20:20 +00:00
|
|
|
|
2012-11-20 13:32:40 +00:00
|
|
|
/* Allocate a regular GstBuffer if direct rendering is not supported */
|
|
|
|
if (!gst_vaapi_uploader_has_direct_rendering(upload->uploader))
|
|
|
|
return GST_FLOW_OK;
|
2010-03-16 17:57:57 +00:00
|
|
|
|
2012-11-20 13:32:40 +00:00
|
|
|
*pbuf = gst_vaapi_uploader_get_buffer(upload->uploader);
|
2010-03-05 17:11:52 +00:00
|
|
|
return GST_FLOW_OK;
|
|
|
|
}
|
|
|
|
|
2010-03-15 17:10:56 +00:00
|
|
|
static GstFlowReturn
|
2012-01-03 13:34:09 +00:00
|
|
|
gst_vaapiupload_sinkpad_buffer_alloc(
|
2010-03-15 17:10:56 +00:00
|
|
|
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;
|
|
|
|
|
2012-01-03 13:34:09 +00:00
|
|
|
ret = gst_vaapiupload_buffer_alloc(trans, size, caps, pbuf);
|
2010-03-15 17:10:56 +00:00
|
|
|
g_object_unref(trans);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstFlowReturn
|
2012-01-03 13:34:09 +00:00
|
|
|
gst_vaapiupload_prepare_output_buffer(
|
2010-03-15 17:10:56 +00:00
|
|
|
GstBaseTransform *trans,
|
|
|
|
GstBuffer *inbuf,
|
|
|
|
gint size,
|
|
|
|
GstCaps *caps,
|
|
|
|
GstBuffer **poutbuf
|
|
|
|
)
|
|
|
|
{
|
2012-01-03 13:34:09 +00:00
|
|
|
GstVaapiUpload * const upload = GST_VAAPIUPLOAD(trans);
|
2012-11-20 13:32:40 +00:00
|
|
|
GstBuffer *buffer;
|
2010-03-15 17:10:56 +00:00
|
|
|
|
2012-11-20 13:32:40 +00:00
|
|
|
*poutbuf = NULL;
|
2011-09-05 14:20:20 +00:00
|
|
|
|
2012-11-20 13:32:40 +00:00
|
|
|
if (!gst_vaapi_uploader_has_direct_rendering(upload->uploader))
|
|
|
|
buffer = gst_vaapi_uploader_get_buffer(upload->uploader);
|
|
|
|
else
|
2013-01-05 16:55:47 +00:00
|
|
|
buffer = gst_vaapi_video_buffer_new_from_buffer(inbuf);
|
2012-11-20 13:32:40 +00:00
|
|
|
if (!buffer)
|
|
|
|
return GST_FLOW_UNEXPECTED;
|
|
|
|
|
|
|
|
gst_buffer_set_caps(buffer, caps);
|
|
|
|
GST_BUFFER_DATA(buffer) = NULL;
|
|
|
|
GST_BUFFER_SIZE(buffer) = 0;
|
2010-03-15 17:10:56 +00:00
|
|
|
|
|
|
|
*poutbuf = buffer;
|
|
|
|
return GST_FLOW_OK;
|
|
|
|
}
|
2011-11-04 20:50:15 +00:00
|
|
|
|
|
|
|
static gboolean
|
2012-01-03 13:34:09 +00:00
|
|
|
gst_vaapiupload_query(GstPad *pad, GstQuery *query)
|
2011-11-04 20:50:15 +00:00
|
|
|
{
|
2012-01-03 13:34:09 +00:00
|
|
|
GstVaapiUpload *upload = GST_VAAPIUPLOAD (gst_pad_get_parent_element (pad));
|
2011-11-04 20:50:15 +00:00
|
|
|
gboolean res;
|
|
|
|
|
2012-01-03 13:34:09 +00:00
|
|
|
GST_DEBUG ("sharing display %p", upload->display);
|
2011-11-04 20:50:15 +00:00
|
|
|
|
2012-01-03 13:34:09 +00:00
|
|
|
if (gst_vaapi_reply_to_query (query, upload->display))
|
2011-11-04 20:50:15 +00:00
|
|
|
res = TRUE;
|
|
|
|
else
|
|
|
|
res = gst_pad_query_default (pad, query);
|
|
|
|
|
2012-01-03 13:34:09 +00:00
|
|
|
g_object_unref (upload);
|
2011-11-04 20:50:15 +00:00
|
|
|
return res;
|
|
|
|
}
|