2012-11-20 13:28:55 +00:00
|
|
|
/*
|
|
|
|
* gstvaapiuploader.c - VA-API video upload helper
|
|
|
|
*
|
|
|
|
* 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:14:45 +00:00
|
|
|
* Copyright (C) 2011-2013 Intel Corporation
|
2013-11-22 04:57:18 +00:00
|
|
|
* Author: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
|
2012-11-20 13:28:55 +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.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2015-04-03 14:08:30 +00:00
|
|
|
#include "gstcompat.h"
|
2012-11-20 14:50:56 +00:00
|
|
|
#include <string.h>
|
2012-11-20 13:28:55 +00:00
|
|
|
#include <gst/video/video.h>
|
|
|
|
#include <gst/vaapi/gstvaapisurface.h>
|
|
|
|
#include <gst/vaapi/gstvaapiimagepool.h>
|
|
|
|
#include <gst/vaapi/gstvaapisurfacepool.h>
|
|
|
|
|
|
|
|
#include "gstvaapiuploader.h"
|
2013-12-21 09:41:22 +00:00
|
|
|
#include "gstvaapipluginutil.h"
|
2013-03-21 16:17:53 +00:00
|
|
|
#include "gstvaapivideobuffer.h"
|
2012-11-20 13:28:55 +00:00
|
|
|
|
|
|
|
#define GST_HELPER_NAME "vaapiupload"
|
|
|
|
#define GST_HELPER_DESC "VA-API video uploader"
|
|
|
|
|
2014-11-24 13:10:11 +00:00
|
|
|
GST_DEBUG_CATEGORY_STATIC (gst_debug_vaapi_uploader);
|
2012-11-20 13:28:55 +00:00
|
|
|
#define GST_CAT_DEFAULT gst_debug_vaapi_uploader
|
|
|
|
|
2014-11-24 13:10:11 +00:00
|
|
|
G_DEFINE_TYPE (GstVaapiUploader, gst_vaapi_uploader, G_TYPE_OBJECT);
|
2012-11-20 13:28:55 +00:00
|
|
|
|
|
|
|
#define GST_VAAPI_UPLOADER_CAST(obj) \
|
2014-11-24 13:10:11 +00:00
|
|
|
((GstVaapiUploader *)(obj))
|
|
|
|
#define GST_VAAPI_UPLOADER_GET_PRIVATE(obj) \
|
|
|
|
(G_TYPE_INSTANCE_GET_PRIVATE ((obj), GST_VAAPI_TYPE_UPLOADER, \
|
|
|
|
GstVaapiUploaderPrivate))
|
|
|
|
|
|
|
|
struct _GstVaapiUploaderPrivate
|
|
|
|
{
|
|
|
|
GstVaapiDisplay *display;
|
|
|
|
GstCaps *allowed_caps;
|
|
|
|
GstVaapiVideoPool *images;
|
|
|
|
GstVideoInfo image_info;
|
|
|
|
GstVaapiVideoPool *surfaces;
|
|
|
|
GstVideoInfo surface_info;
|
|
|
|
guint direct_rendering;
|
2012-11-20 13:28:55 +00:00
|
|
|
};
|
|
|
|
|
2014-11-24 13:10:11 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
2012-11-20 13:28:55 +00:00
|
|
|
|
2014-11-24 13:10:11 +00:00
|
|
|
PROP_DISPLAY,
|
2012-11-20 13:28:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
2014-11-24 13:10:11 +00:00
|
|
|
gst_vaapi_uploader_destroy (GstVaapiUploader * uploader)
|
2012-11-20 13:28:55 +00:00
|
|
|
{
|
2014-11-24 13:10:11 +00:00
|
|
|
GstVaapiUploaderPrivate *const priv = uploader->priv;
|
2012-11-20 13:28:55 +00:00
|
|
|
|
2014-11-24 13:10:11 +00:00
|
|
|
gst_caps_replace (&priv->allowed_caps, NULL);
|
|
|
|
gst_vaapi_video_pool_replace (&priv->images, NULL);
|
|
|
|
gst_vaapi_video_pool_replace (&priv->surfaces, NULL);
|
|
|
|
gst_vaapi_display_replace (&priv->display, NULL);
|
2012-11-20 13:28:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2014-11-24 13:10:11 +00:00
|
|
|
ensure_display (GstVaapiUploader * uploader, GstVaapiDisplay * display)
|
2012-11-20 13:28:55 +00:00
|
|
|
{
|
2014-11-24 13:10:11 +00:00
|
|
|
GstVaapiUploaderPrivate *const priv = uploader->priv;
|
2012-11-20 13:28:55 +00:00
|
|
|
|
2014-11-24 13:10:11 +00:00
|
|
|
gst_vaapi_display_replace (&priv->display, display);
|
|
|
|
return TRUE;
|
2012-11-20 13:28:55 +00:00
|
|
|
}
|
|
|
|
|
2012-11-20 14:50:56 +00:00
|
|
|
static gboolean
|
2014-11-24 13:10:11 +00:00
|
|
|
ensure_image (GstVaapiImage * image)
|
2012-11-20 14:50:56 +00:00
|
|
|
{
|
2014-11-24 13:10:11 +00:00
|
|
|
guint i, num_planes, width, height;
|
2012-11-20 14:50:56 +00:00
|
|
|
|
2014-11-24 13:10:11 +00:00
|
|
|
/* Make the image fully dirty */
|
|
|
|
if (!gst_vaapi_image_map (image))
|
|
|
|
return FALSE;
|
2012-11-20 14:50:56 +00:00
|
|
|
|
2014-11-24 13:10:11 +00:00
|
|
|
gst_vaapi_image_get_size (image, &width, &height);
|
2012-11-20 14:50:56 +00:00
|
|
|
|
2014-11-24 13:10:11 +00:00
|
|
|
num_planes = gst_vaapi_image_get_plane_count (image);
|
|
|
|
for (i = 0; i < num_planes; i++) {
|
|
|
|
guchar *const plane = gst_vaapi_image_get_plane (image, i);
|
|
|
|
if (plane)
|
|
|
|
memset (plane, 0, gst_vaapi_image_get_pitch (image, i));
|
|
|
|
}
|
2012-11-20 14:50:56 +00:00
|
|
|
|
2014-11-24 13:10:11 +00:00
|
|
|
if (!gst_vaapi_image_unmap (image))
|
|
|
|
gst_vaapi_image_unmap (image);
|
|
|
|
return TRUE;
|
2012-11-20 14:50:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2014-11-24 13:10:11 +00:00
|
|
|
ensure_allowed_caps (GstVaapiUploader * uploader)
|
2012-11-20 14:50:56 +00:00
|
|
|
{
|
2014-11-24 13:10:11 +00:00
|
|
|
GstVaapiUploaderPrivate *const priv = uploader->priv;
|
|
|
|
GstVaapiSurface *surface = NULL;
|
|
|
|
GArray *formats = NULL, *out_formats = NULL;
|
|
|
|
GstCaps *out_caps;
|
|
|
|
guint i;
|
|
|
|
gboolean success = FALSE;
|
2012-11-20 14:50:56 +00:00
|
|
|
|
2014-11-24 13:10:11 +00:00
|
|
|
enum
|
|
|
|
{ WIDTH = 64, HEIGHT = 64 };
|
2013-12-21 09:41:22 +00:00
|
|
|
|
2014-11-24 13:10:11 +00:00
|
|
|
if (priv->allowed_caps)
|
|
|
|
return TRUE;
|
2012-11-20 14:50:56 +00:00
|
|
|
|
2014-11-24 13:10:11 +00:00
|
|
|
formats = gst_vaapi_display_get_image_formats (priv->display);
|
|
|
|
if (!formats)
|
|
|
|
goto cleanup;
|
2012-11-20 14:50:56 +00:00
|
|
|
|
2014-11-24 13:10:11 +00:00
|
|
|
out_formats = g_array_sized_new (FALSE, FALSE, sizeof (GstVideoFormat),
|
|
|
|
formats->len);
|
|
|
|
if (!out_formats)
|
|
|
|
goto cleanup;
|
2012-11-20 13:28:55 +00:00
|
|
|
|
2014-11-24 13:10:11 +00:00
|
|
|
surface = gst_vaapi_surface_new (priv->display,
|
|
|
|
GST_VAAPI_CHROMA_TYPE_YUV420, WIDTH, HEIGHT);
|
|
|
|
if (!surface)
|
|
|
|
goto cleanup;
|
2013-07-10 11:07:37 +00:00
|
|
|
|
2014-11-24 13:10:11 +00:00
|
|
|
for (i = 0; i < formats->len; i++) {
|
|
|
|
const GstVideoFormat format = g_array_index (formats, GstVideoFormat, i);
|
|
|
|
GstVaapiImage *image;
|
2012-11-20 13:28:55 +00:00
|
|
|
|
2014-11-24 13:10:11 +00:00
|
|
|
if (format == GST_VIDEO_FORMAT_UNKNOWN)
|
|
|
|
continue;
|
|
|
|
image = gst_vaapi_image_new (priv->display, format, WIDTH, HEIGHT);
|
|
|
|
if (!image)
|
|
|
|
continue;
|
|
|
|
if (ensure_image (image) && gst_vaapi_surface_put_image (surface, image))
|
|
|
|
g_array_append_val (out_formats, format);
|
|
|
|
gst_vaapi_object_unref (image);
|
|
|
|
}
|
2013-07-10 13:03:43 +00:00
|
|
|
|
2014-11-24 13:10:11 +00:00
|
|
|
out_caps = gst_vaapi_video_format_new_template_caps_from_list (out_formats);
|
|
|
|
if (!out_caps)
|
|
|
|
goto cleanup;
|
2013-07-10 13:03:43 +00:00
|
|
|
|
2014-11-24 13:10:11 +00:00
|
|
|
gst_caps_replace (&priv->allowed_caps, out_caps);
|
|
|
|
gst_caps_unref (out_caps);
|
|
|
|
success = TRUE;
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
if (out_formats)
|
|
|
|
g_array_unref (out_formats);
|
|
|
|
if (formats)
|
|
|
|
g_array_unref (formats);
|
|
|
|
if (surface)
|
|
|
|
gst_vaapi_object_unref (surface);
|
|
|
|
return success;
|
2012-11-20 13:28:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2014-11-24 13:10:11 +00:00
|
|
|
ensure_image_pool (GstVaapiUploader * uploader, GstCaps * caps,
|
|
|
|
gboolean * caps_changed_ptr)
|
2012-11-20 13:28:55 +00:00
|
|
|
{
|
2014-11-24 13:10:11 +00:00
|
|
|
GstVaapiUploaderPrivate *const priv = uploader->priv;
|
|
|
|
GstVaapiVideoPool *pool;
|
|
|
|
GstVideoInfo vi;
|
|
|
|
GstVideoFormat format;
|
|
|
|
guint width, height;
|
|
|
|
|
|
|
|
if (!gst_video_info_from_caps (&vi, caps))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
format = GST_VIDEO_INFO_FORMAT (&vi);
|
|
|
|
width = GST_VIDEO_INFO_WIDTH (&vi);
|
|
|
|
height = GST_VIDEO_INFO_HEIGHT (&vi);
|
|
|
|
|
|
|
|
*caps_changed_ptr =
|
|
|
|
format != GST_VIDEO_INFO_FORMAT (&priv->image_info) ||
|
|
|
|
width != GST_VIDEO_INFO_WIDTH (&priv->image_info) ||
|
|
|
|
height != GST_VIDEO_INFO_HEIGHT (&priv->image_info);
|
|
|
|
if (!*caps_changed_ptr)
|
|
|
|
return TRUE;
|
2013-07-10 11:07:37 +00:00
|
|
|
|
2014-11-24 13:10:11 +00:00
|
|
|
pool = gst_vaapi_image_pool_new (priv->display, &vi);
|
|
|
|
if (!pool)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
gst_video_info_set_format (&priv->image_info, format, width, height);
|
|
|
|
gst_vaapi_video_pool_replace (&priv->images, pool);
|
|
|
|
gst_vaapi_video_pool_unref (pool);
|
|
|
|
return TRUE;
|
|
|
|
}
|
2012-11-20 13:28:55 +00:00
|
|
|
|
2014-11-24 13:10:11 +00:00
|
|
|
static gboolean
|
|
|
|
ensure_surface_pool (GstVaapiUploader * uploader, GstCaps * caps,
|
|
|
|
gboolean * caps_changed_ptr)
|
|
|
|
{
|
|
|
|
GstVaapiUploaderPrivate *const priv = uploader->priv;
|
|
|
|
GstVaapiVideoPool *pool;
|
|
|
|
GstVideoInfo vi;
|
|
|
|
GstVideoFormat format;
|
|
|
|
guint width, height;
|
|
|
|
|
|
|
|
if (!gst_video_info_from_caps (&vi, caps))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
format = GST_VIDEO_INFO_FORMAT (&vi);
|
|
|
|
width = GST_VIDEO_INFO_WIDTH (&vi);
|
|
|
|
height = GST_VIDEO_INFO_HEIGHT (&vi);
|
|
|
|
|
|
|
|
*caps_changed_ptr =
|
|
|
|
format != GST_VIDEO_INFO_FORMAT (&priv->surface_info) ||
|
|
|
|
width != GST_VIDEO_INFO_WIDTH (&priv->surface_info) ||
|
|
|
|
height != GST_VIDEO_INFO_HEIGHT (&priv->surface_info);
|
|
|
|
if (!*caps_changed_ptr)
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
/* Always try to downsample source buffers to YUV 4:2:0 format as
|
|
|
|
this saves memory bandwidth for further rendering */
|
|
|
|
/* XXX: this also means that visual quality is not preserved */
|
|
|
|
if (format != GST_VIDEO_FORMAT_ENCODED) {
|
|
|
|
const GstVaapiChromaType chroma_type =
|
|
|
|
gst_vaapi_video_format_get_chroma_type (format);
|
|
|
|
if (chroma_type != GST_VAAPI_CHROMA_TYPE_YUV420) {
|
|
|
|
const GstVideoFormat image_format =
|
|
|
|
GST_VIDEO_INFO_FORMAT (&priv->image_info);
|
|
|
|
GST_INFO ("use implicit conversion of %s buffers to NV12 surfaces",
|
|
|
|
gst_video_format_to_string (image_format));
|
|
|
|
gst_video_info_set_format (&vi, GST_VIDEO_FORMAT_NV12, width, height);
|
2013-07-12 13:15:07 +00:00
|
|
|
}
|
2014-11-24 13:10:11 +00:00
|
|
|
}
|
2013-07-12 13:15:07 +00:00
|
|
|
|
2015-01-27 10:44:12 +00:00
|
|
|
pool = gst_vaapi_surface_pool_new_full (priv->display, &vi, 0);
|
2014-11-24 13:10:11 +00:00
|
|
|
if (!pool)
|
|
|
|
return FALSE;
|
2013-07-10 13:03:43 +00:00
|
|
|
|
2014-11-24 13:10:11 +00:00
|
|
|
gst_video_info_set_format (&priv->surface_info, format, width, height);
|
|
|
|
gst_vaapi_video_pool_replace (&priv->surfaces, pool);
|
|
|
|
gst_vaapi_video_pool_unref (pool);
|
|
|
|
return TRUE;
|
2012-11-20 13:28:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2014-11-24 13:10:11 +00:00
|
|
|
gst_vaapi_uploader_finalize (GObject * object)
|
2012-11-20 13:28:55 +00:00
|
|
|
{
|
2014-11-24 13:10:11 +00:00
|
|
|
gst_vaapi_uploader_destroy (GST_VAAPI_UPLOADER_CAST (object));
|
2012-11-20 13:28:55 +00:00
|
|
|
|
2014-11-24 13:10:11 +00:00
|
|
|
G_OBJECT_CLASS (gst_vaapi_uploader_parent_class)->finalize (object);
|
2012-11-20 13:28:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2014-11-24 13:10:11 +00:00
|
|
|
gst_vaapi_uploader_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec)
|
2012-11-20 13:28:55 +00:00
|
|
|
{
|
2014-11-24 13:10:11 +00:00
|
|
|
GstVaapiUploader *const uploader = GST_VAAPI_UPLOADER_CAST (object);
|
2012-11-20 13:28:55 +00:00
|
|
|
|
2014-11-24 13:10:11 +00:00
|
|
|
switch (prop_id) {
|
2012-11-20 13:28:55 +00:00
|
|
|
case PROP_DISPLAY:
|
2014-11-24 13:10:11 +00:00
|
|
|
ensure_display (uploader, g_value_get_pointer (value));
|
|
|
|
break;
|
2012-11-20 13:28:55 +00:00
|
|
|
default:
|
2014-11-24 13:10:11 +00:00
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
2012-11-20 13:28:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2014-11-24 13:10:11 +00:00
|
|
|
gst_vaapi_uploader_get_property (GObject * object, guint prop_id,
|
|
|
|
GValue * value, GParamSpec * pspec)
|
2012-11-20 13:28:55 +00:00
|
|
|
{
|
2014-11-24 13:10:11 +00:00
|
|
|
GstVaapiUploader *const uploader = GST_VAAPI_UPLOADER_CAST (object);
|
2012-11-20 13:28:55 +00:00
|
|
|
|
2014-11-24 13:10:11 +00:00
|
|
|
switch (prop_id) {
|
2012-11-20 13:28:55 +00:00
|
|
|
case PROP_DISPLAY:
|
2014-11-24 13:10:11 +00:00
|
|
|
g_value_set_pointer (value, uploader->priv->display);
|
|
|
|
break;
|
2012-11-20 13:28:55 +00:00
|
|
|
default:
|
2014-11-24 13:10:11 +00:00
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
2012-11-20 13:28:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2014-11-24 13:10:11 +00:00
|
|
|
gst_vaapi_uploader_class_init (GstVaapiUploaderClass * klass)
|
2012-11-20 13:28:55 +00:00
|
|
|
{
|
2014-11-24 13:10:11 +00:00
|
|
|
GObjectClass *const object_class = G_OBJECT_CLASS (klass);
|
2012-11-20 13:28:55 +00:00
|
|
|
|
2014-11-24 13:10:11 +00:00
|
|
|
GST_DEBUG_CATEGORY_INIT (gst_debug_vaapi_uploader,
|
|
|
|
GST_HELPER_NAME, 0, GST_HELPER_DESC);
|
2012-11-20 13:28:55 +00:00
|
|
|
|
2014-11-24 13:10:11 +00:00
|
|
|
g_type_class_add_private (klass, sizeof (GstVaapiUploaderPrivate));
|
2012-11-20 13:28:55 +00:00
|
|
|
|
2014-11-24 13:10:11 +00:00
|
|
|
object_class->finalize = gst_vaapi_uploader_finalize;
|
|
|
|
object_class->set_property = gst_vaapi_uploader_set_property;
|
|
|
|
object_class->get_property = gst_vaapi_uploader_get_property;
|
2012-11-20 13:28:55 +00:00
|
|
|
|
2014-11-24 13:10:11 +00:00
|
|
|
g_object_class_install_property (object_class,
|
|
|
|
PROP_DISPLAY,
|
|
|
|
g_param_spec_pointer ("display",
|
|
|
|
"Display",
|
|
|
|
"The GstVaapiDisplay this object is bound to",
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2012-11-20 13:28:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2014-11-24 13:10:11 +00:00
|
|
|
gst_vaapi_uploader_init (GstVaapiUploader * uploader)
|
2012-11-20 13:28:55 +00:00
|
|
|
{
|
2014-11-24 13:10:11 +00:00
|
|
|
GstVaapiUploaderPrivate *priv;
|
2012-11-20 13:28:55 +00:00
|
|
|
|
2014-11-24 13:10:11 +00:00
|
|
|
priv = GST_VAAPI_UPLOADER_GET_PRIVATE (uploader);
|
|
|
|
uploader->priv = priv;
|
2013-07-10 13:03:43 +00:00
|
|
|
|
2014-11-24 13:10:11 +00:00
|
|
|
gst_video_info_init (&priv->image_info);
|
|
|
|
gst_video_info_init (&priv->surface_info);
|
2012-11-20 13:28:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GstVaapiUploader *
|
2014-11-24 13:10:11 +00:00
|
|
|
gst_vaapi_uploader_new (GstVaapiDisplay * display)
|
2012-11-20 13:28:55 +00:00
|
|
|
{
|
2014-11-24 13:10:11 +00:00
|
|
|
return g_object_new (GST_VAAPI_TYPE_UPLOADER, "display", display, NULL);
|
2012-11-20 13:28:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
2014-11-24 13:10:11 +00:00
|
|
|
gst_vaapi_uploader_ensure_display (GstVaapiUploader * uploader,
|
|
|
|
GstVaapiDisplay * display)
|
2012-11-20 13:28:55 +00:00
|
|
|
{
|
2014-11-24 13:10:11 +00:00
|
|
|
g_return_val_if_fail (GST_VAAPI_IS_UPLOADER (uploader), FALSE);
|
|
|
|
g_return_val_if_fail (display != NULL, FALSE);
|
2012-11-20 13:28:55 +00:00
|
|
|
|
2014-11-24 13:10:11 +00:00
|
|
|
return ensure_display (uploader, display);
|
2012-11-20 13:28:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
2014-11-24 13:10:11 +00:00
|
|
|
gst_vaapi_uploader_ensure_caps (GstVaapiUploader * uploader,
|
|
|
|
GstCaps * src_caps, GstCaps * out_caps)
|
2012-11-20 13:28:55 +00:00
|
|
|
{
|
2014-11-24 13:10:11 +00:00
|
|
|
GstVaapiUploaderPrivate *priv;
|
|
|
|
GstVaapiImage *image;
|
|
|
|
gboolean image_caps_changed, surface_caps_changed;
|
2012-11-20 13:28:55 +00:00
|
|
|
|
2014-11-24 13:10:11 +00:00
|
|
|
g_return_val_if_fail (GST_VAAPI_IS_UPLOADER (uploader), FALSE);
|
|
|
|
g_return_val_if_fail (src_caps != NULL, FALSE);
|
2013-07-10 13:03:43 +00:00
|
|
|
|
2014-11-24 13:10:11 +00:00
|
|
|
if (!out_caps)
|
|
|
|
out_caps = src_caps;
|
2013-07-10 13:15:11 +00:00
|
|
|
|
2014-11-24 13:10:11 +00:00
|
|
|
if (!ensure_image_pool (uploader, src_caps, &image_caps_changed))
|
|
|
|
return FALSE;
|
|
|
|
if (!ensure_surface_pool (uploader, out_caps, &surface_caps_changed))
|
|
|
|
return FALSE;
|
|
|
|
if (!image_caps_changed && !surface_caps_changed)
|
2012-11-20 13:28:55 +00:00
|
|
|
return TRUE;
|
2014-11-24 13:10:11 +00:00
|
|
|
|
|
|
|
priv = uploader->priv;
|
|
|
|
priv->direct_rendering = 0;
|
|
|
|
|
|
|
|
/* Check if we can alias source and output buffers (same data_size) */
|
|
|
|
image = gst_vaapi_video_pool_get_object (priv->images);
|
|
|
|
if (image) {
|
|
|
|
if ((gst_vaapi_image_get_format (image) ==
|
|
|
|
GST_VIDEO_INFO_FORMAT (&priv->image_info)) &&
|
|
|
|
gst_vaapi_image_is_linear (image) &&
|
|
|
|
(gst_vaapi_image_get_data_size (image) ==
|
|
|
|
GST_VIDEO_INFO_SIZE (&priv->image_info)))
|
|
|
|
priv->direct_rendering = 1;
|
|
|
|
gst_vaapi_video_pool_put_object (priv->images, image);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_INFO ("direct-rendering: level %u", priv->direct_rendering);
|
|
|
|
return TRUE;
|
2012-11-20 13:28:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
2014-11-24 13:10:11 +00:00
|
|
|
gst_vaapi_uploader_process (GstVaapiUploader * uploader,
|
|
|
|
GstBuffer * src_buffer, GstBuffer * out_buffer)
|
2012-11-20 13:28:55 +00:00
|
|
|
{
|
2014-11-24 13:10:11 +00:00
|
|
|
GstVaapiVideoMeta *src_meta, *out_meta;
|
|
|
|
GstVaapiSurface *surface;
|
|
|
|
GstVaapiImage *image;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GST_VAAPI_IS_UPLOADER (uploader), FALSE);
|
|
|
|
|
|
|
|
out_meta = gst_buffer_get_vaapi_video_meta (out_buffer);
|
|
|
|
if (!out_meta) {
|
|
|
|
GST_WARNING ("expected an output video buffer");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
surface = gst_vaapi_video_meta_get_surface (out_meta);
|
|
|
|
g_return_val_if_fail (surface != NULL, FALSE);
|
|
|
|
|
|
|
|
src_meta = gst_buffer_get_vaapi_video_meta (src_buffer);
|
|
|
|
if (src_meta) {
|
|
|
|
/* GstVaapiVideoBuffer with mapped VA image */
|
|
|
|
image = gst_vaapi_video_meta_get_image (src_meta);
|
|
|
|
if (!image || !gst_vaapi_image_unmap (image))
|
|
|
|
return FALSE;
|
|
|
|
} else {
|
|
|
|
/* Regular GstBuffer that needs to be uploaded to a VA image */
|
|
|
|
image = gst_vaapi_video_meta_get_image (out_meta);
|
|
|
|
if (!image) {
|
|
|
|
image = gst_vaapi_video_pool_get_object (uploader->priv->images);
|
|
|
|
if (!image)
|
2012-11-20 13:28:55 +00:00
|
|
|
return FALSE;
|
2014-11-24 13:10:11 +00:00
|
|
|
gst_vaapi_video_meta_set_image (out_meta, image);
|
2012-11-20 13:28:55 +00:00
|
|
|
}
|
2014-11-24 13:10:11 +00:00
|
|
|
if (!gst_vaapi_image_update_from_buffer (image, src_buffer, NULL))
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
g_return_val_if_fail (image != NULL, FALSE);
|
|
|
|
|
|
|
|
if (!gst_vaapi_surface_put_image (surface, image)) {
|
|
|
|
GST_WARNING ("failed to upload YUV buffer to VA surface");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Map again for next uploads */
|
|
|
|
if (!gst_vaapi_image_map (image))
|
|
|
|
return FALSE;
|
|
|
|
return TRUE;
|
2012-11-20 13:28:55 +00:00
|
|
|
}
|
|
|
|
|
2012-11-20 14:50:56 +00:00
|
|
|
GstCaps *
|
2014-11-24 13:10:11 +00:00
|
|
|
gst_vaapi_uploader_get_caps (GstVaapiUploader * uploader)
|
2012-11-20 14:50:56 +00:00
|
|
|
{
|
2014-11-24 13:10:11 +00:00
|
|
|
g_return_val_if_fail (GST_VAAPI_IS_UPLOADER (uploader), NULL);
|
2012-11-20 14:50:56 +00:00
|
|
|
|
2014-11-24 13:10:11 +00:00
|
|
|
if (!ensure_allowed_caps (uploader))
|
|
|
|
return NULL;
|
|
|
|
return uploader->priv->allowed_caps;
|
2012-11-20 14:50:56 +00:00
|
|
|
}
|
|
|
|
|
2012-11-20 13:28:55 +00:00
|
|
|
GstBuffer *
|
2014-11-24 13:10:11 +00:00
|
|
|
gst_vaapi_uploader_get_buffer (GstVaapiUploader * uploader)
|
2012-11-20 13:28:55 +00:00
|
|
|
{
|
2014-11-24 13:10:11 +00:00
|
|
|
GstVaapiUploaderPrivate *priv;
|
|
|
|
GstVaapiImage *image;
|
|
|
|
GstVaapiVideoMeta *meta;
|
|
|
|
GstVaapiSurfaceProxy *proxy;
|
|
|
|
GstBuffer *buffer;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GST_VAAPI_IS_UPLOADER (uploader), NULL);
|
|
|
|
|
|
|
|
priv = uploader->priv;
|
|
|
|
|
|
|
|
buffer = gst_vaapi_video_buffer_new_from_pool (priv->images);
|
|
|
|
if (!buffer) {
|
|
|
|
GST_WARNING ("failed to allocate video buffer");
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
proxy =
|
|
|
|
gst_vaapi_surface_proxy_new_from_pool (GST_VAAPI_SURFACE_POOL
|
|
|
|
(priv->surfaces));
|
|
|
|
if (!proxy) {
|
|
|
|
GST_WARNING ("failed to allocate VA surface");
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
meta = gst_buffer_get_vaapi_video_meta (buffer);
|
|
|
|
gst_vaapi_video_meta_set_surface_proxy (meta, proxy);
|
|
|
|
gst_vaapi_surface_proxy_unref (proxy);
|
|
|
|
|
|
|
|
image = gst_vaapi_video_meta_get_image (meta);
|
|
|
|
if (!gst_vaapi_image_map (image)) {
|
|
|
|
GST_WARNING ("failed to map VA image");
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
return buffer;
|
2012-11-20 13:28:55 +00:00
|
|
|
|
|
|
|
error:
|
2014-11-24 13:10:11 +00:00
|
|
|
gst_buffer_unref (buffer);
|
|
|
|
return buffer;
|
2012-11-20 13:28:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
2014-11-24 13:10:11 +00:00
|
|
|
gst_vaapi_uploader_has_direct_rendering (GstVaapiUploader * uploader)
|
2012-11-20 13:28:55 +00:00
|
|
|
{
|
2014-11-24 13:10:11 +00:00
|
|
|
g_return_val_if_fail (GST_VAAPI_IS_UPLOADER (uploader), FALSE);
|
2012-11-20 13:28:55 +00:00
|
|
|
|
2014-11-24 13:10:11 +00:00
|
|
|
return uploader->priv->direct_rendering;
|
2012-11-20 13:28:55 +00:00
|
|
|
}
|