2010-01-25 16:15:01 +00:00
|
|
|
/*
|
|
|
|
* gstvaapidisplay.c - VA display abstraction
|
|
|
|
*
|
2012-01-16 09:41:10 +00:00
|
|
|
* 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>
|
2010-01-25 16:15:01 +00:00
|
|
|
*
|
2010-05-03 07:07:27 +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-01-25 16:15:01 +00:00
|
|
|
*
|
2010-05-03 07:07:27 +00:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
2010-01-25 16:15:01 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2010-05-03 07:07:27 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2010-01-25 16:15:01 +00:00
|
|
|
*
|
2010-05-03 07:07:27 +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-01-25 16:15:01 +00:00
|
|
|
*/
|
|
|
|
|
2010-03-19 15:45:21 +00:00
|
|
|
/**
|
2010-03-24 08:16:32 +00:00
|
|
|
* SECTION:gstvaapidisplay
|
|
|
|
* @short_description: VA display abstraction
|
2010-03-19 15:45:21 +00:00
|
|
|
*/
|
|
|
|
|
2012-01-30 17:12:59 +00:00
|
|
|
#include "sysdeps.h"
|
2012-01-12 14:03:04 +00:00
|
|
|
#include <string.h>
|
2010-03-16 09:15:48 +00:00
|
|
|
#include "gstvaapiutils.h"
|
2012-08-28 08:55:59 +00:00
|
|
|
#include "gstvaapivalue.h"
|
2010-01-25 16:15:01 +00:00
|
|
|
#include "gstvaapidisplay.h"
|
2010-04-01 09:47:59 +00:00
|
|
|
#include "gstvaapidisplay_priv.h"
|
2012-01-18 09:22:58 +00:00
|
|
|
#include "gstvaapiworkarounds.h"
|
2013-01-18 13:17:34 +00:00
|
|
|
#include "gstvaapiversion.h"
|
2010-01-25 16:15:01 +00:00
|
|
|
|
|
|
|
#define DEBUG 1
|
2010-03-16 09:17:41 +00:00
|
|
|
#include "gstvaapidebug.h"
|
2010-01-25 16:15:01 +00:00
|
|
|
|
2010-03-10 13:13:51 +00:00
|
|
|
GST_DEBUG_CATEGORY(gst_debug_vaapi);
|
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
/* Ensure those symbols are actually defined in the resulting libraries */
|
|
|
|
#undef gst_vaapi_display_ref
|
|
|
|
#undef gst_vaapi_display_unref
|
|
|
|
#undef gst_vaapi_display_replace
|
2010-01-25 16:15:01 +00:00
|
|
|
|
2010-04-30 09:52:29 +00:00
|
|
|
typedef struct _GstVaapiConfig GstVaapiConfig;
|
|
|
|
struct _GstVaapiConfig {
|
|
|
|
GstVaapiProfile profile;
|
|
|
|
GstVaapiEntrypoint entrypoint;
|
|
|
|
};
|
|
|
|
|
2012-08-27 14:02:49 +00:00
|
|
|
typedef struct _GstVaapiProperty GstVaapiProperty;
|
|
|
|
struct _GstVaapiProperty {
|
|
|
|
const gchar *name;
|
|
|
|
VADisplayAttribute attribute;
|
2012-08-28 12:05:16 +00:00
|
|
|
gint old_value;
|
2012-08-27 14:02:49 +00:00
|
|
|
};
|
|
|
|
|
2013-01-03 17:02:49 +00:00
|
|
|
typedef struct _GstVaapiFormatInfo GstVaapiFormatInfo;
|
|
|
|
struct _GstVaapiFormatInfo {
|
2013-07-09 12:03:01 +00:00
|
|
|
GstVideoFormat format;
|
2013-01-03 17:02:49 +00:00
|
|
|
guint flags;
|
|
|
|
};
|
|
|
|
|
2012-08-28 08:55:59 +00:00
|
|
|
#define DEFAULT_RENDER_MODE GST_VAAPI_RENDER_MODE_TEXTURE
|
|
|
|
#define DEFAULT_ROTATION GST_VAAPI_ROTATION_0
|
2012-08-27 17:00:37 +00:00
|
|
|
|
2010-01-25 16:15:01 +00:00
|
|
|
enum {
|
|
|
|
PROP_0,
|
|
|
|
|
2012-08-28 08:55:59 +00:00
|
|
|
PROP_RENDER_MODE,
|
|
|
|
PROP_ROTATION,
|
2012-08-28 11:59:50 +00:00
|
|
|
PROP_HUE,
|
|
|
|
PROP_SATURATION,
|
|
|
|
PROP_BRIGHTNESS,
|
|
|
|
PROP_CONTRAST,
|
2012-08-28 14:24:15 +00:00
|
|
|
|
|
|
|
N_PROPERTIES
|
2010-01-25 16:15:01 +00:00
|
|
|
};
|
|
|
|
|
2012-01-12 14:30:04 +00:00
|
|
|
static GstVaapiDisplayCache *g_display_cache = NULL;
|
|
|
|
|
2012-08-28 14:24:15 +00:00
|
|
|
static GParamSpec *g_properties[N_PROPERTIES] = { NULL, };
|
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
static void
|
|
|
|
gst_vaapi_display_properties_init(void);
|
|
|
|
|
2012-08-28 12:05:16 +00:00
|
|
|
static gboolean
|
|
|
|
get_attribute(GstVaapiDisplay *display, VADisplayAttribType type, gint *value);
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
set_attribute(GstVaapiDisplay *display, VADisplayAttribType type, gint value);
|
|
|
|
|
2012-08-28 11:59:50 +00:00
|
|
|
static gboolean
|
|
|
|
get_color_balance(GstVaapiDisplay *display, guint prop_id, gfloat *v);
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
set_color_balance(GstVaapiDisplay *display, guint prop_id, gfloat v);
|
|
|
|
|
2013-01-18 13:17:34 +00:00
|
|
|
static void
|
2013-01-18 13:46:23 +00:00
|
|
|
libgstvaapi_init_once(void)
|
2013-01-18 13:17:34 +00:00
|
|
|
{
|
|
|
|
static gsize g_once = FALSE;
|
|
|
|
|
|
|
|
if (!g_once_init_enter(&g_once))
|
|
|
|
return;
|
|
|
|
|
2013-01-18 13:46:23 +00:00
|
|
|
GST_DEBUG_CATEGORY_INIT(gst_debug_vaapi, "vaapi", 0, "VA-API helper");
|
|
|
|
|
2013-01-18 13:17:34 +00:00
|
|
|
/* Dump gstreamer-vaapi version for debugging purposes */
|
|
|
|
GST_INFO("gstreamer-vaapi version %s", GST_VAAPI_VERSION_ID);
|
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
gst_vaapi_display_properties_init();
|
|
|
|
|
2013-01-18 13:17:34 +00:00
|
|
|
g_once_init_leave(&g_once, TRUE);
|
|
|
|
}
|
|
|
|
|
2012-01-12 14:03:04 +00:00
|
|
|
static inline GstVaapiDisplayCache *
|
|
|
|
get_display_cache(void)
|
|
|
|
{
|
|
|
|
if (!g_display_cache)
|
|
|
|
g_display_cache = gst_vaapi_display_cache_new();
|
|
|
|
return g_display_cache;
|
|
|
|
}
|
|
|
|
|
|
|
|
GstVaapiDisplayCache *
|
|
|
|
gst_vaapi_display_get_cache(void)
|
|
|
|
{
|
|
|
|
return get_display_cache();
|
|
|
|
}
|
|
|
|
|
2012-01-12 14:30:04 +00:00
|
|
|
static void
|
|
|
|
free_display_cache(void)
|
|
|
|
{
|
|
|
|
if (!g_display_cache)
|
|
|
|
return;
|
|
|
|
if (gst_vaapi_display_cache_get_size(g_display_cache) > 0)
|
|
|
|
return;
|
|
|
|
gst_vaapi_display_cache_free(g_display_cache);
|
|
|
|
g_display_cache = NULL;
|
|
|
|
}
|
|
|
|
|
2012-07-25 07:16:02 +00:00
|
|
|
/* GstVaapiDisplayType enumerations */
|
|
|
|
GType
|
|
|
|
gst_vaapi_display_type_get_type(void)
|
|
|
|
{
|
|
|
|
static GType g_type = 0;
|
|
|
|
|
|
|
|
static const GEnumValue display_types[] = {
|
|
|
|
{ GST_VAAPI_DISPLAY_TYPE_ANY,
|
|
|
|
"Auto detection", "any" },
|
2012-07-24 13:07:48 +00:00
|
|
|
#if USE_X11
|
2012-07-25 07:16:02 +00:00
|
|
|
{ GST_VAAPI_DISPLAY_TYPE_X11,
|
|
|
|
"VA/X11 display", "x11" },
|
2012-07-24 13:07:48 +00:00
|
|
|
#endif
|
2012-07-25 07:16:02 +00:00
|
|
|
#if USE_GLX
|
|
|
|
{ GST_VAAPI_DISPLAY_TYPE_GLX,
|
|
|
|
"VA/GLX display", "glx" },
|
2012-07-24 07:45:25 +00:00
|
|
|
#endif
|
|
|
|
#if USE_WAYLAND
|
|
|
|
{ GST_VAAPI_DISPLAY_TYPE_WAYLAND,
|
|
|
|
"VA/Wayland display", "wayland" },
|
2012-08-01 13:44:02 +00:00
|
|
|
#endif
|
|
|
|
#if USE_DRM
|
|
|
|
{ GST_VAAPI_DISPLAY_TYPE_DRM,
|
|
|
|
"VA/DRM display", "drm" },
|
2012-07-25 07:16:02 +00:00
|
|
|
#endif
|
|
|
|
{ 0, NULL, NULL },
|
|
|
|
};
|
|
|
|
|
|
|
|
if (!g_type)
|
|
|
|
g_type = g_enum_register_static("GstVaapiDisplayType", display_types);
|
|
|
|
return g_type;
|
|
|
|
}
|
|
|
|
|
2013-07-09 12:03:01 +00:00
|
|
|
/* Append GstVideoFormat to formats array */
|
2010-03-19 10:42:11 +00:00
|
|
|
static inline void
|
2013-07-09 12:03:01 +00:00
|
|
|
append_format(GArray *formats, GstVideoFormat format, guint flags)
|
2010-03-19 10:42:11 +00:00
|
|
|
{
|
2013-01-03 17:02:49 +00:00
|
|
|
GstVaapiFormatInfo fi;
|
|
|
|
|
|
|
|
fi.format = format;
|
|
|
|
fi.flags = flags;
|
|
|
|
g_array_append_val(formats, fi);
|
2010-03-19 10:42:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Append VAImageFormats to formats array */
|
2010-03-11 12:11:36 +00:00
|
|
|
static void
|
2013-01-03 17:02:49 +00:00
|
|
|
append_formats(GArray *formats, const VAImageFormat *va_formats,
|
|
|
|
guint *flags, guint n)
|
2010-03-11 12:11:36 +00:00
|
|
|
{
|
2013-07-09 12:03:01 +00:00
|
|
|
GstVideoFormat format;
|
2013-01-03 17:02:49 +00:00
|
|
|
const GstVaapiFormatInfo *YV12_fip = NULL;
|
|
|
|
const GstVaapiFormatInfo *I420_fip = NULL;
|
2010-03-19 10:38:45 +00:00
|
|
|
guint i;
|
|
|
|
|
|
|
|
for (i = 0; i < n; i++) {
|
|
|
|
const VAImageFormat * const va_format = &va_formats[i];
|
2013-01-03 17:02:49 +00:00
|
|
|
const GstVaapiFormatInfo **fipp;
|
2010-03-11 12:11:36 +00:00
|
|
|
|
2013-07-15 12:42:33 +00:00
|
|
|
format = gst_vaapi_video_format_from_va_format(va_format);
|
2013-07-09 12:03:01 +00:00
|
|
|
if (format == GST_VIDEO_FORMAT_UNKNOWN) {
|
2010-03-19 10:38:45 +00:00
|
|
|
GST_DEBUG("unsupported format %" GST_FOURCC_FORMAT,
|
|
|
|
GST_FOURCC_ARGS(va_format->fourcc));
|
|
|
|
continue;
|
2010-03-16 08:43:16 +00:00
|
|
|
}
|
2013-01-03 17:02:49 +00:00
|
|
|
append_format(formats, format, flags ? flags[i] : 0);
|
2010-03-19 10:38:45 +00:00
|
|
|
|
|
|
|
switch (format) {
|
2013-07-09 12:03:01 +00:00
|
|
|
case GST_VIDEO_FORMAT_YV12:
|
2013-01-03 17:02:49 +00:00
|
|
|
fipp = &YV12_fip;
|
2010-03-19 10:38:45 +00:00
|
|
|
break;
|
2013-07-09 12:03:01 +00:00
|
|
|
case GST_VIDEO_FORMAT_I420:
|
2013-01-03 17:02:49 +00:00
|
|
|
fipp = &I420_fip;
|
2010-03-19 10:38:45 +00:00
|
|
|
break;
|
|
|
|
default:
|
2013-01-03 17:02:49 +00:00
|
|
|
fipp = NULL;
|
2010-03-19 10:38:45 +00:00
|
|
|
break;
|
2010-03-11 12:11:36 +00:00
|
|
|
}
|
2013-01-03 17:02:49 +00:00
|
|
|
if (fipp)
|
|
|
|
*fipp = &g_array_index(formats, GstVaapiFormatInfo,
|
|
|
|
formats->len - 1);
|
2010-03-11 12:11:36 +00:00
|
|
|
}
|
2010-03-16 08:43:16 +00:00
|
|
|
|
|
|
|
/* Append I420 (resp. YV12) format if YV12 (resp. I420) is not
|
|
|
|
supported by the underlying driver */
|
2013-01-03 17:02:49 +00:00
|
|
|
if (YV12_fip && !I420_fip)
|
2013-07-09 12:03:01 +00:00
|
|
|
append_format(formats, GST_VIDEO_FORMAT_I420, YV12_fip->flags);
|
2013-01-03 17:02:49 +00:00
|
|
|
else if (I420_fip && !YV12_fip)
|
2013-07-09 12:03:01 +00:00
|
|
|
append_format(formats, GST_VIDEO_FORMAT_YV12, I420_fip->flags);
|
2010-03-11 12:11:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Sort image formats. Prefer YUV formats first */
|
2010-03-19 10:38:45 +00:00
|
|
|
static gint
|
|
|
|
compare_yuv_formats(gconstpointer a, gconstpointer b)
|
2010-03-11 12:11:36 +00:00
|
|
|
{
|
2013-07-09 12:03:01 +00:00
|
|
|
const GstVideoFormat fmt1 = ((GstVaapiFormatInfo *)a)->format;
|
|
|
|
const GstVideoFormat fmt2 = ((GstVaapiFormatInfo *)b)->format;
|
2010-03-11 12:11:36 +00:00
|
|
|
|
2013-07-15 12:42:33 +00:00
|
|
|
const gboolean is_fmt1_yuv = gst_vaapi_video_format_is_yuv(fmt1);
|
|
|
|
const gboolean is_fmt2_yuv = gst_vaapi_video_format_is_yuv(fmt2);
|
2010-03-11 12:11:36 +00:00
|
|
|
|
|
|
|
if (is_fmt1_yuv != is_fmt2_yuv)
|
|
|
|
return is_fmt1_yuv ? -1 : 1;
|
|
|
|
|
2013-07-15 12:42:33 +00:00
|
|
|
return ((gint)gst_vaapi_video_format_get_score(fmt1) -
|
|
|
|
(gint)gst_vaapi_video_format_get_score(fmt2));
|
2010-03-11 12:11:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Sort subpicture formats. Prefer RGB formats first */
|
2010-03-19 10:38:45 +00:00
|
|
|
static gint
|
|
|
|
compare_rgb_formats(gconstpointer a, gconstpointer b)
|
2010-03-11 12:11:36 +00:00
|
|
|
{
|
2013-07-09 12:03:01 +00:00
|
|
|
const GstVideoFormat fmt1 = ((GstVaapiFormatInfo *)a)->format;
|
|
|
|
const GstVideoFormat fmt2 = ((GstVaapiFormatInfo *)b)->format;
|
2010-03-11 12:11:36 +00:00
|
|
|
|
2013-07-15 12:42:33 +00:00
|
|
|
const gboolean is_fmt1_rgb = gst_vaapi_video_format_is_rgb(fmt1);
|
|
|
|
const gboolean is_fmt2_rgb = gst_vaapi_video_format_is_rgb(fmt2);
|
2010-03-11 12:11:36 +00:00
|
|
|
|
|
|
|
if (is_fmt1_rgb != is_fmt2_rgb)
|
|
|
|
return is_fmt1_rgb ? -1 : 1;
|
|
|
|
|
2013-07-15 12:42:33 +00:00
|
|
|
return ((gint)gst_vaapi_video_format_get_score(fmt1) -
|
|
|
|
(gint)gst_vaapi_video_format_get_score(fmt2));
|
2010-03-19 10:38:45 +00:00
|
|
|
}
|
|
|
|
|
2010-04-30 09:52:29 +00:00
|
|
|
/* Check if configs array contains profile at entrypoint */
|
2010-03-19 10:38:45 +00:00
|
|
|
static inline gboolean
|
2010-04-30 09:52:29 +00:00
|
|
|
find_config(
|
|
|
|
GArray *configs,
|
|
|
|
GstVaapiProfile profile,
|
|
|
|
GstVaapiEntrypoint entrypoint
|
|
|
|
)
|
2010-03-19 10:38:45 +00:00
|
|
|
{
|
2010-04-30 09:52:29 +00:00
|
|
|
GstVaapiConfig *config;
|
2010-03-19 10:38:45 +00:00
|
|
|
guint i;
|
|
|
|
|
2011-10-13 21:07:35 +00:00
|
|
|
if (!configs)
|
|
|
|
return FALSE;
|
|
|
|
|
2010-04-30 09:52:29 +00:00
|
|
|
for (i = 0; i < configs->len; i++) {
|
|
|
|
config = &g_array_index(configs, GstVaapiConfig, i);
|
|
|
|
if (config->profile == profile && config->entrypoint == entrypoint)
|
2010-03-19 10:38:45 +00:00
|
|
|
return TRUE;
|
2010-04-30 09:52:29 +00:00
|
|
|
}
|
2010-03-19 10:38:45 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2012-01-18 09:22:58 +00:00
|
|
|
/* HACK: append H.263 Baseline profile if MPEG-4:2 Simple profile is supported */
|
|
|
|
static void
|
|
|
|
append_h263_config(GArray *configs)
|
|
|
|
{
|
|
|
|
GstVaapiConfig *config, tmp_config;
|
|
|
|
GstVaapiConfig *mpeg4_simple_config = NULL;
|
|
|
|
GstVaapiConfig *h263_baseline_config = NULL;
|
|
|
|
guint i;
|
|
|
|
|
|
|
|
if (!WORKAROUND_H263_BASELINE_DECODE_PROFILE)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!configs)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (i = 0; i < configs->len; i++) {
|
|
|
|
config = &g_array_index(configs, GstVaapiConfig, i);
|
|
|
|
if (config->profile == GST_VAAPI_PROFILE_MPEG4_SIMPLE)
|
|
|
|
mpeg4_simple_config = config;
|
|
|
|
else if (config->profile == GST_VAAPI_PROFILE_H263_BASELINE)
|
|
|
|
h263_baseline_config = config;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mpeg4_simple_config && !h263_baseline_config) {
|
|
|
|
tmp_config = *mpeg4_simple_config;
|
|
|
|
tmp_config.profile = GST_VAAPI_PROFILE_H263_BASELINE;
|
|
|
|
g_array_append_val(configs, tmp_config);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-04-30 09:52:29 +00:00
|
|
|
/* Convert configs array to profiles as GstCaps */
|
2010-04-20 13:36:04 +00:00
|
|
|
static GstCaps *
|
2010-04-30 09:52:29 +00:00
|
|
|
get_profile_caps(GArray *configs)
|
2010-04-20 13:36:04 +00:00
|
|
|
{
|
2010-04-30 09:52:29 +00:00
|
|
|
GstVaapiConfig *config;
|
2010-04-20 13:36:04 +00:00
|
|
|
GstCaps *out_caps, *caps;
|
|
|
|
guint i;
|
|
|
|
|
2011-10-13 21:07:35 +00:00
|
|
|
if (!configs)
|
|
|
|
return NULL;
|
|
|
|
|
2010-04-20 13:36:04 +00:00
|
|
|
out_caps = gst_caps_new_empty();
|
|
|
|
if (!out_caps)
|
|
|
|
return NULL;
|
|
|
|
|
2010-04-30 09:52:29 +00:00
|
|
|
for (i = 0; i < configs->len; i++) {
|
|
|
|
config = &g_array_index(configs, GstVaapiConfig, i);
|
|
|
|
caps = gst_vaapi_profile_get_caps(config->profile);
|
2010-04-20 13:36:04 +00:00
|
|
|
if (caps)
|
2012-09-04 12:12:18 +00:00
|
|
|
out_caps = gst_caps_merge(out_caps, caps);
|
2010-04-20 13:36:04 +00:00
|
|
|
}
|
|
|
|
return out_caps;
|
|
|
|
}
|
|
|
|
|
2013-01-03 17:02:49 +00:00
|
|
|
/* Find format info */
|
|
|
|
static const GstVaapiFormatInfo *
|
2013-07-09 12:03:01 +00:00
|
|
|
find_format_info(GArray *formats, GstVideoFormat format)
|
2013-01-03 17:02:49 +00:00
|
|
|
{
|
|
|
|
const GstVaapiFormatInfo *fip;
|
|
|
|
guint i;
|
|
|
|
|
|
|
|
for (i = 0; i < formats->len; i++) {
|
|
|
|
fip = &g_array_index(formats, GstVaapiFormatInfo, i);
|
|
|
|
if (fip->format == format)
|
|
|
|
return fip;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-03-19 10:38:45 +00:00
|
|
|
/* Check if formats array contains format */
|
|
|
|
static inline gboolean
|
2013-07-09 12:03:01 +00:00
|
|
|
find_format(GArray *formats, GstVideoFormat format)
|
2010-03-19 10:38:45 +00:00
|
|
|
{
|
2013-01-03 17:02:49 +00:00
|
|
|
return find_format_info(formats, format) != NULL;
|
2010-03-19 10:38:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Convert formats array to GstCaps */
|
|
|
|
static GstCaps *
|
2010-04-20 13:36:04 +00:00
|
|
|
get_format_caps(GArray *formats)
|
2010-03-19 10:38:45 +00:00
|
|
|
{
|
2013-01-03 17:02:49 +00:00
|
|
|
const GstVaapiFormatInfo *fip;
|
2010-03-19 10:38:45 +00:00
|
|
|
GstCaps *out_caps, *caps;
|
|
|
|
guint i;
|
|
|
|
|
|
|
|
out_caps = gst_caps_new_empty();
|
|
|
|
if (!out_caps)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
for (i = 0; i < formats->len; i++) {
|
2013-01-03 17:02:49 +00:00
|
|
|
fip = &g_array_index(formats, GstVaapiFormatInfo, i);
|
2013-07-15 12:42:33 +00:00
|
|
|
caps = gst_vaapi_video_format_to_caps(fip->format);
|
2010-03-19 10:38:45 +00:00
|
|
|
if (caps)
|
|
|
|
gst_caps_append(out_caps, caps);
|
|
|
|
}
|
|
|
|
return out_caps;
|
2010-03-11 12:11:36 +00:00
|
|
|
}
|
|
|
|
|
2012-08-27 14:02:49 +00:00
|
|
|
/* Find display attribute */
|
|
|
|
static const GstVaapiProperty *
|
|
|
|
find_property(GArray *properties, const gchar *name)
|
|
|
|
{
|
|
|
|
GstVaapiProperty *prop;
|
|
|
|
guint i;
|
|
|
|
|
|
|
|
if (!name)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
for (i = 0; i < properties->len; i++) {
|
|
|
|
prop = &g_array_index(properties, GstVaapiProperty, i);
|
|
|
|
if (strcmp(prop->name, name) == 0)
|
|
|
|
return prop;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
static const GstVaapiProperty *
|
|
|
|
find_property_by_type(GArray *properties, VADisplayAttribType type)
|
|
|
|
{
|
|
|
|
GstVaapiProperty *prop;
|
|
|
|
guint i;
|
|
|
|
|
|
|
|
for (i = 0; i < properties->len; i++) {
|
|
|
|
prop = &g_array_index(properties, GstVaapiProperty, i);
|
|
|
|
if (prop->attribute.type == type)
|
|
|
|
return prop;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-08-28 11:59:50 +00:00
|
|
|
static inline const GstVaapiProperty *
|
|
|
|
find_property_by_pspec(GstVaapiDisplay *display, GParamSpec *pspec)
|
|
|
|
{
|
2013-05-07 09:39:34 +00:00
|
|
|
GstVaapiDisplayPrivate * const priv =
|
|
|
|
GST_VAAPI_DISPLAY_GET_PRIVATE(display);
|
|
|
|
|
|
|
|
return find_property(priv->properties, pspec->name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static guint
|
|
|
|
find_property_id(const gchar *name)
|
|
|
|
{
|
|
|
|
typedef struct {
|
|
|
|
const gchar *name;
|
|
|
|
guint id;
|
|
|
|
} property_map;
|
|
|
|
|
|
|
|
static const property_map g_property_map[] = {
|
|
|
|
{ GST_VAAPI_DISPLAY_PROP_RENDER_MODE, PROP_RENDER_MODE },
|
|
|
|
{ GST_VAAPI_DISPLAY_PROP_ROTATION, PROP_ROTATION },
|
|
|
|
{ GST_VAAPI_DISPLAY_PROP_HUE, PROP_HUE },
|
|
|
|
{ GST_VAAPI_DISPLAY_PROP_SATURATION, PROP_SATURATION },
|
|
|
|
{ GST_VAAPI_DISPLAY_PROP_BRIGHTNESS, PROP_BRIGHTNESS },
|
|
|
|
{ GST_VAAPI_DISPLAY_PROP_CONTRAST, PROP_CONTRAST },
|
|
|
|
{ NULL, }
|
|
|
|
};
|
|
|
|
|
|
|
|
const property_map *m;
|
|
|
|
for (m = g_property_map; m->name != NULL; m++) {
|
|
|
|
if (strcmp(m->name, name) == 0)
|
|
|
|
return m->id;
|
|
|
|
}
|
|
|
|
return 0;
|
2012-08-28 11:59:50 +00:00
|
|
|
}
|
|
|
|
|
2010-03-22 09:32:01 +00:00
|
|
|
static void
|
|
|
|
gst_vaapi_display_calculate_pixel_aspect_ratio(GstVaapiDisplay *display)
|
|
|
|
{
|
2013-05-07 09:39:34 +00:00
|
|
|
GstVaapiDisplayPrivate * const priv =
|
|
|
|
GST_VAAPI_DISPLAY_GET_PRIVATE(display);
|
2010-03-22 09:32:01 +00:00
|
|
|
gdouble ratio, delta;
|
2012-09-06 09:51:41 +00:00
|
|
|
gint i, j, index, windex;
|
2010-03-22 09:32:01 +00:00
|
|
|
|
|
|
|
static const gint par[][2] = {
|
|
|
|
{1, 1}, /* regular screen */
|
|
|
|
{16, 15}, /* PAL TV */
|
|
|
|
{11, 10}, /* 525 line Rec.601 video */
|
|
|
|
{54, 59}, /* 625 line Rec.601 video */
|
|
|
|
{64, 45}, /* 1280x1024 on 16:9 display */
|
|
|
|
{5, 3}, /* 1280x1024 on 4:3 display */
|
|
|
|
{4, 3} /* 800x600 on 16:9 display */
|
|
|
|
};
|
|
|
|
|
|
|
|
/* First, calculate the "real" ratio based on the X values;
|
|
|
|
* which is the "physical" w/h divided by the w/h in pixels of the
|
|
|
|
* display */
|
|
|
|
if (!priv->width || !priv->height || !priv->width_mm || !priv->height_mm)
|
|
|
|
ratio = 1.0;
|
|
|
|
else
|
|
|
|
ratio = (gdouble)(priv->width_mm * priv->height) /
|
|
|
|
(priv->height_mm * priv->width);
|
|
|
|
GST_DEBUG("calculated pixel aspect ratio: %f", ratio);
|
|
|
|
|
|
|
|
/* Now, find the one from par[][2] with the lowest delta to the real one */
|
2012-09-06 09:51:41 +00:00
|
|
|
#define DELTA(idx, w) (ABS(ratio - ((gdouble)par[idx][w] / par[idx][!(w)])))
|
|
|
|
delta = DELTA(0, 0);
|
|
|
|
index = 0;
|
|
|
|
windex = 0;
|
2010-03-22 09:32:01 +00:00
|
|
|
|
|
|
|
for (i = 1; i < G_N_ELEMENTS(par); i++) {
|
2012-09-06 09:51:41 +00:00
|
|
|
for (j = 0; j < 2; j++) {
|
|
|
|
const gdouble this_delta = DELTA(i, j);
|
|
|
|
if (this_delta < delta) {
|
|
|
|
index = i;
|
|
|
|
windex = j;
|
|
|
|
delta = this_delta;
|
|
|
|
}
|
2010-03-22 09:32:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#undef DELTA
|
|
|
|
|
2012-09-06 09:51:41 +00:00
|
|
|
priv->par_n = par[index][windex];
|
|
|
|
priv->par_d = par[index][windex ^ 1];
|
2010-03-22 09:32:01 +00:00
|
|
|
}
|
|
|
|
|
2010-03-10 12:25:19 +00:00
|
|
|
static void
|
|
|
|
gst_vaapi_display_destroy(GstVaapiDisplay *display)
|
|
|
|
{
|
2013-05-07 09:39:34 +00:00
|
|
|
GstVaapiDisplayPrivate * const priv =
|
|
|
|
GST_VAAPI_DISPLAY_GET_PRIVATE(display);
|
2010-03-10 12:25:19 +00:00
|
|
|
|
2010-04-20 13:36:04 +00:00
|
|
|
if (priv->decoders) {
|
|
|
|
g_array_free(priv->decoders, TRUE);
|
|
|
|
priv->decoders = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (priv->encoders) {
|
|
|
|
g_array_free(priv->encoders, TRUE);
|
|
|
|
priv->encoders = NULL;
|
2010-03-10 12:25:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (priv->image_formats) {
|
2010-03-19 10:38:45 +00:00
|
|
|
g_array_free(priv->image_formats, TRUE);
|
2010-03-10 12:25:19 +00:00
|
|
|
priv->image_formats = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (priv->subpicture_formats) {
|
2010-03-19 10:38:45 +00:00
|
|
|
g_array_free(priv->subpicture_formats, TRUE);
|
2010-03-10 12:25:19 +00:00
|
|
|
priv->subpicture_formats = NULL;
|
|
|
|
}
|
|
|
|
|
2012-08-27 14:02:49 +00:00
|
|
|
if (priv->properties) {
|
|
|
|
g_array_free(priv->properties, TRUE);
|
|
|
|
priv->properties = NULL;
|
|
|
|
}
|
|
|
|
|
2010-03-10 12:25:19 +00:00
|
|
|
if (priv->display) {
|
2012-01-12 14:03:04 +00:00
|
|
|
if (!priv->parent)
|
|
|
|
vaTerminate(priv->display);
|
2010-03-10 12:25:19 +00:00
|
|
|
priv->display = NULL;
|
|
|
|
}
|
2010-03-11 15:01:00 +00:00
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
if (!priv->use_foreign_display) {
|
2010-03-11 15:01:00 +00:00
|
|
|
GstVaapiDisplayClass *klass = GST_VAAPI_DISPLAY_GET_CLASS(display);
|
|
|
|
if (klass->close_display)
|
|
|
|
klass->close_display(display);
|
|
|
|
}
|
2012-01-12 14:03:04 +00:00
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
gst_vaapi_display_replace_internal(&priv->parent, NULL);
|
2012-01-12 14:03:04 +00:00
|
|
|
|
2012-01-12 14:30:04 +00:00
|
|
|
if (g_display_cache) {
|
|
|
|
gst_vaapi_display_cache_remove(get_display_cache(), display);
|
|
|
|
free_display_cache();
|
|
|
|
}
|
2010-03-10 12:25:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2013-05-07 09:39:34 +00:00
|
|
|
gst_vaapi_display_create(GstVaapiDisplay *display,
|
|
|
|
GstVaapiDisplayInitType init_type, gpointer init_value)
|
2010-03-10 12:25:19 +00:00
|
|
|
{
|
2013-05-07 09:39:34 +00:00
|
|
|
GstVaapiDisplayPrivate * const priv =
|
|
|
|
GST_VAAPI_DISPLAY_GET_PRIVATE(display);
|
|
|
|
const GstVaapiDisplayClass * const klass =
|
|
|
|
GST_VAAPI_DISPLAY_GET_CLASS(display);
|
2012-01-12 14:03:04 +00:00
|
|
|
GstVaapiDisplayCache *cache;
|
2010-03-19 10:38:45 +00:00
|
|
|
gboolean has_errors = TRUE;
|
2012-07-31 10:24:14 +00:00
|
|
|
VADisplayAttribute *display_attrs = NULL;
|
2010-03-19 10:38:45 +00:00
|
|
|
VAProfile *profiles = NULL;
|
2010-04-20 13:36:04 +00:00
|
|
|
VAEntrypoint *entrypoints = NULL;
|
2010-03-19 10:38:45 +00:00
|
|
|
VAImageFormat *formats = NULL;
|
|
|
|
unsigned int *flags = NULL;
|
2010-04-20 13:36:04 +00:00
|
|
|
gint i, j, n, num_entrypoints, major_version, minor_version;
|
2010-03-19 10:38:45 +00:00
|
|
|
VAStatus status;
|
2012-01-12 14:03:04 +00:00
|
|
|
GstVaapiDisplayInfo info;
|
|
|
|
const GstVaapiDisplayInfo *cached_info = NULL;
|
|
|
|
|
|
|
|
memset(&info, 0, sizeof(info));
|
|
|
|
info.display = display;
|
2012-07-25 07:16:02 +00:00
|
|
|
info.display_type = priv->display_type;
|
2010-03-10 12:25:19 +00:00
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
switch (init_type) {
|
|
|
|
case GST_VAAPI_DISPLAY_INIT_FROM_VA_DISPLAY:
|
|
|
|
info.va_display = init_value;
|
|
|
|
priv->display = init_value;
|
|
|
|
priv->use_foreign_display = TRUE;
|
|
|
|
break;
|
|
|
|
case GST_VAAPI_DISPLAY_INIT_FROM_DISPLAY_NAME:
|
|
|
|
if (klass->open_display && !klass->open_display(display, init_value))
|
|
|
|
return FALSE;
|
|
|
|
goto create_display;
|
|
|
|
case GST_VAAPI_DISPLAY_INIT_FROM_NATIVE_DISPLAY:
|
|
|
|
if (klass->bind_display && !klass->bind_display(display, init_value))
|
2010-03-11 15:01:00 +00:00
|
|
|
return FALSE;
|
2013-05-07 09:39:34 +00:00
|
|
|
// fall-through
|
|
|
|
create_display:
|
2012-01-12 14:03:04 +00:00
|
|
|
if (!klass->get_display || !klass->get_display(display, &info))
|
|
|
|
return FALSE;
|
|
|
|
priv->display = info.va_display;
|
2012-07-25 07:16:02 +00:00
|
|
|
priv->display_type = info.display_type;
|
2010-03-22 08:44:38 +00:00
|
|
|
if (klass->get_size)
|
|
|
|
klass->get_size(display, &priv->width, &priv->height);
|
2010-03-22 09:32:01 +00:00
|
|
|
if (klass->get_size_mm)
|
|
|
|
klass->get_size_mm(display, &priv->width_mm, &priv->height_mm);
|
|
|
|
gst_vaapi_display_calculate_pixel_aspect_ratio(display);
|
2013-05-07 09:39:34 +00:00
|
|
|
break;
|
2010-03-11 15:01:00 +00:00
|
|
|
}
|
|
|
|
if (!priv->display)
|
|
|
|
return FALSE;
|
|
|
|
|
2012-01-12 14:03:04 +00:00
|
|
|
cache = get_display_cache();
|
|
|
|
if (!cache)
|
|
|
|
return FALSE;
|
2013-05-07 09:39:34 +00:00
|
|
|
cached_info = gst_vaapi_display_cache_lookup_by_va_display(cache,
|
|
|
|
info.va_display);
|
2012-01-12 14:03:04 +00:00
|
|
|
if (cached_info) {
|
2013-05-07 09:39:34 +00:00
|
|
|
gst_vaapi_display_replace_internal(&priv->parent,
|
|
|
|
cached_info->display);
|
2012-07-25 07:16:02 +00:00
|
|
|
priv->display_type = cached_info->display_type;
|
2012-01-12 14:03:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!priv->parent) {
|
|
|
|
status = vaInitialize(priv->display, &major_version, &minor_version);
|
|
|
|
if (!vaapi_check_status(status, "vaInitialize()"))
|
|
|
|
goto end;
|
|
|
|
GST_DEBUG("VA-API version %d.%d", major_version, minor_version);
|
|
|
|
}
|
2010-03-10 12:25:19 +00:00
|
|
|
|
|
|
|
/* VA profiles */
|
2010-03-19 10:38:45 +00:00
|
|
|
profiles = g_new(VAProfile, vaMaxNumProfiles(priv->display));
|
|
|
|
if (!profiles)
|
|
|
|
goto end;
|
2010-04-20 13:36:04 +00:00
|
|
|
entrypoints = g_new(VAEntrypoint, vaMaxNumEntrypoints(priv->display));
|
|
|
|
if (!entrypoints)
|
|
|
|
goto end;
|
2010-03-19 10:38:45 +00:00
|
|
|
status = vaQueryConfigProfiles(priv->display, profiles, &n);
|
2010-03-10 12:25:19 +00:00
|
|
|
if (!vaapi_check_status(status, "vaQueryConfigProfiles()"))
|
2010-03-19 10:38:45 +00:00
|
|
|
goto end;
|
2010-03-10 12:25:19 +00:00
|
|
|
|
2010-03-19 10:38:45 +00:00
|
|
|
GST_DEBUG("%d profiles", n);
|
2012-08-01 16:30:27 +00:00
|
|
|
for (i = 0; i < n; i++) {
|
|
|
|
#if VA_CHECK_VERSION(0,34,0)
|
|
|
|
/* Introduced in VA/VPP API */
|
|
|
|
if (profiles[i] == VAProfileNone)
|
|
|
|
continue;
|
|
|
|
#endif
|
2010-03-19 10:38:45 +00:00
|
|
|
GST_DEBUG(" %s", string_of_VAProfile(profiles[i]));
|
2012-08-01 16:30:27 +00:00
|
|
|
}
|
2010-03-19 10:38:45 +00:00
|
|
|
|
2010-04-30 09:52:29 +00:00
|
|
|
priv->decoders = g_array_new(FALSE, FALSE, sizeof(GstVaapiConfig));
|
2010-04-20 13:36:04 +00:00
|
|
|
if (!priv->decoders)
|
|
|
|
goto end;
|
2010-04-30 09:52:29 +00:00
|
|
|
priv->encoders = g_array_new(FALSE, FALSE, sizeof(GstVaapiConfig));
|
2010-04-20 13:36:04 +00:00
|
|
|
if (!priv->encoders)
|
2010-03-19 10:38:45 +00:00
|
|
|
goto end;
|
2010-04-20 13:36:04 +00:00
|
|
|
|
|
|
|
for (i = 0; i < n; i++) {
|
2010-04-30 09:52:29 +00:00
|
|
|
GstVaapiConfig config;
|
2010-04-20 13:36:04 +00:00
|
|
|
|
2010-04-30 09:52:29 +00:00
|
|
|
config.profile = gst_vaapi_profile(profiles[i]);
|
|
|
|
if (!config.profile)
|
2010-04-20 13:36:04 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
status = vaQueryConfigEntrypoints(
|
|
|
|
priv->display,
|
|
|
|
profiles[i],
|
|
|
|
entrypoints, &num_entrypoints
|
|
|
|
);
|
|
|
|
if (!vaapi_check_status(status, "vaQueryConfigEntrypoints()"))
|
2012-01-31 08:38:58 +00:00
|
|
|
continue;
|
2010-04-20 13:36:04 +00:00
|
|
|
|
|
|
|
for (j = 0; j < num_entrypoints; j++) {
|
2010-04-30 09:52:29 +00:00
|
|
|
config.entrypoint = gst_vaapi_entrypoint(entrypoints[j]);
|
|
|
|
switch (config.entrypoint) {
|
|
|
|
case GST_VAAPI_ENTRYPOINT_VLD:
|
|
|
|
case GST_VAAPI_ENTRYPOINT_IDCT:
|
|
|
|
case GST_VAAPI_ENTRYPOINT_MOCO:
|
|
|
|
g_array_append_val(priv->decoders, config);
|
2010-04-20 13:36:04 +00:00
|
|
|
break;
|
2010-04-30 09:52:29 +00:00
|
|
|
case GST_VAAPI_ENTRYPOINT_SLICE_ENCODE:
|
|
|
|
g_array_append_val(priv->encoders, config);
|
2010-04-20 13:36:04 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-01-18 09:22:58 +00:00
|
|
|
append_h263_config(priv->decoders);
|
2010-03-10 12:25:19 +00:00
|
|
|
|
2013-07-23 13:52:45 +00:00
|
|
|
/* Video processing API */
|
|
|
|
#if USE_VA_VPP
|
|
|
|
status = vaQueryConfigEntrypoints(priv->display, VAProfileNone,
|
|
|
|
entrypoints, &num_entrypoints);
|
|
|
|
if (vaapi_check_status(status, "vaQueryEntrypoints() [VAProfileNone]")) {
|
|
|
|
for (j = 0; j < num_entrypoints; j++) {
|
|
|
|
if (entrypoints[j] == VAEntrypointVideoProc)
|
|
|
|
priv->has_vpp = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-07-31 10:24:14 +00:00
|
|
|
/* VA display attributes */
|
|
|
|
display_attrs =
|
|
|
|
g_new(VADisplayAttribute, vaMaxNumDisplayAttributes(priv->display));
|
|
|
|
if (!display_attrs)
|
|
|
|
goto end;
|
|
|
|
|
|
|
|
n = 0; /* XXX: workaround old GMA500 bug */
|
|
|
|
status = vaQueryDisplayAttributes(priv->display, display_attrs, &n);
|
|
|
|
if (!vaapi_check_status(status, "vaQueryDisplayAttributes()"))
|
|
|
|
goto end;
|
|
|
|
|
2012-08-27 14:02:49 +00:00
|
|
|
priv->properties = g_array_new(FALSE, FALSE, sizeof(GstVaapiProperty));
|
|
|
|
if (!priv->properties)
|
|
|
|
goto end;
|
|
|
|
|
2012-07-31 10:24:14 +00:00
|
|
|
GST_DEBUG("%d display attributes", n);
|
2012-08-27 14:02:49 +00:00
|
|
|
for (i = 0; i < n; i++) {
|
|
|
|
VADisplayAttribute * const attr = &display_attrs[i];
|
|
|
|
GstVaapiProperty prop;
|
2012-08-28 15:11:32 +00:00
|
|
|
gint value;
|
2012-08-27 14:02:49 +00:00
|
|
|
|
|
|
|
GST_DEBUG(" %s", string_of_VADisplayAttributeType(attr->type));
|
|
|
|
|
|
|
|
switch (attr->type) {
|
2012-08-27 17:00:37 +00:00
|
|
|
#if !VA_CHECK_VERSION(0,34,0)
|
|
|
|
case VADisplayAttribDirectSurface:
|
|
|
|
prop.name = GST_VAAPI_DISPLAY_PROP_RENDER_MODE;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
case VADisplayAttribRenderMode:
|
|
|
|
prop.name = GST_VAAPI_DISPLAY_PROP_RENDER_MODE;
|
|
|
|
break;
|
|
|
|
case VADisplayAttribRotation:
|
|
|
|
prop.name = GST_VAAPI_DISPLAY_PROP_ROTATION;
|
|
|
|
break;
|
2012-08-28 11:59:50 +00:00
|
|
|
case VADisplayAttribHue:
|
|
|
|
prop.name = GST_VAAPI_DISPLAY_PROP_HUE;
|
|
|
|
break;
|
|
|
|
case VADisplayAttribSaturation:
|
|
|
|
prop.name = GST_VAAPI_DISPLAY_PROP_SATURATION;
|
|
|
|
break;
|
|
|
|
case VADisplayAttribBrightness:
|
|
|
|
prop.name = GST_VAAPI_DISPLAY_PROP_BRIGHTNESS;
|
|
|
|
break;
|
|
|
|
case VADisplayAttribContrast:
|
|
|
|
prop.name = GST_VAAPI_DISPLAY_PROP_CONTRAST;
|
|
|
|
break;
|
2012-08-27 14:02:49 +00:00
|
|
|
default:
|
2012-08-27 17:00:37 +00:00
|
|
|
prop.name = NULL;
|
2012-08-27 14:02:49 +00:00
|
|
|
break;
|
|
|
|
}
|
2012-08-27 17:00:37 +00:00
|
|
|
if (!prop.name)
|
2012-08-27 14:02:49 +00:00
|
|
|
continue;
|
2012-08-28 12:05:16 +00:00
|
|
|
|
|
|
|
/* Assume the attribute is really supported if we can get the
|
|
|
|
* actual and current value */
|
2012-08-28 15:11:32 +00:00
|
|
|
if (!get_attribute(display, attr->type, &value))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* Some drivers (e.g. EMGD) have completely random initial
|
2012-08-29 08:13:58 +00:00
|
|
|
* values */
|
|
|
|
if (value < attr->min_value || value > attr->max_value)
|
|
|
|
continue;
|
2012-08-28 15:11:32 +00:00
|
|
|
|
2012-08-27 17:00:37 +00:00
|
|
|
prop.attribute = *attr;
|
2012-08-28 15:11:32 +00:00
|
|
|
prop.old_value = value;
|
|
|
|
g_array_append_val(priv->properties, prop);
|
2012-08-27 14:02:49 +00:00
|
|
|
}
|
2012-07-31 10:24:14 +00:00
|
|
|
|
2010-03-10 12:25:19 +00:00
|
|
|
/* VA image formats */
|
2010-03-19 10:38:45 +00:00
|
|
|
formats = g_new(VAImageFormat, vaMaxNumImageFormats(priv->display));
|
|
|
|
if (!formats)
|
|
|
|
goto end;
|
|
|
|
status = vaQueryImageFormats(priv->display, formats, &n);
|
2010-03-10 12:25:19 +00:00
|
|
|
if (!vaapi_check_status(status, "vaQueryImageFormats()"))
|
2010-03-19 10:38:45 +00:00
|
|
|
goto end;
|
2010-03-10 12:25:19 +00:00
|
|
|
|
2010-03-19 10:38:45 +00:00
|
|
|
GST_DEBUG("%d image formats", n);
|
|
|
|
for (i = 0; i < n; i++)
|
2012-01-13 10:46:55 +00:00
|
|
|
GST_DEBUG(" %" GST_FOURCC_FORMAT, GST_FOURCC_ARGS(formats[i].fourcc));
|
2010-03-10 12:25:19 +00:00
|
|
|
|
2010-03-19 10:38:45 +00:00
|
|
|
priv->image_formats =
|
2013-01-03 17:02:49 +00:00
|
|
|
g_array_new(FALSE, FALSE, sizeof(GstVaapiFormatInfo));
|
2010-03-19 10:38:45 +00:00
|
|
|
if (!priv->image_formats)
|
|
|
|
goto end;
|
2013-01-03 17:02:49 +00:00
|
|
|
append_formats(priv->image_formats, formats, NULL, n);
|
2010-03-19 10:38:45 +00:00
|
|
|
g_array_sort(priv->image_formats, compare_yuv_formats);
|
2010-03-11 12:11:36 +00:00
|
|
|
|
2010-03-10 12:25:19 +00:00
|
|
|
/* VA subpicture formats */
|
2010-03-19 10:38:45 +00:00
|
|
|
n = vaMaxNumSubpictureFormats(priv->display);
|
|
|
|
formats = g_renew(VAImageFormat, formats, n);
|
|
|
|
flags = g_new(guint, n);
|
|
|
|
if (!formats || !flags)
|
|
|
|
goto end;
|
2012-02-07 09:05:53 +00:00
|
|
|
status = vaQuerySubpictureFormats(priv->display, formats, flags, (guint *)&n);
|
2010-03-10 12:25:19 +00:00
|
|
|
if (!vaapi_check_status(status, "vaQuerySubpictureFormats()"))
|
2010-03-19 10:38:45 +00:00
|
|
|
goto end;
|
2010-03-11 12:11:36 +00:00
|
|
|
|
2010-03-19 10:38:45 +00:00
|
|
|
GST_DEBUG("%d subpicture formats", n);
|
2012-05-15 08:24:08 +00:00
|
|
|
for (i = 0; i < n; i++) {
|
2012-01-13 10:46:55 +00:00
|
|
|
GST_DEBUG(" %" GST_FOURCC_FORMAT, GST_FOURCC_ARGS(formats[i].fourcc));
|
2012-05-15 08:24:08 +00:00
|
|
|
flags[i] = to_GstVaapiSubpictureFlags(flags[i]);
|
|
|
|
}
|
2010-03-10 12:25:19 +00:00
|
|
|
|
2010-03-19 10:38:45 +00:00
|
|
|
priv->subpicture_formats =
|
2013-01-03 17:02:49 +00:00
|
|
|
g_array_new(FALSE, FALSE, sizeof(GstVaapiFormatInfo));
|
2010-03-19 10:38:45 +00:00
|
|
|
if (!priv->subpicture_formats)
|
|
|
|
goto end;
|
2012-05-15 08:24:08 +00:00
|
|
|
append_formats(priv->subpicture_formats, formats, flags, n);
|
2010-03-19 10:38:45 +00:00
|
|
|
g_array_sort(priv->subpicture_formats, compare_rgb_formats);
|
|
|
|
|
2012-01-12 14:03:04 +00:00
|
|
|
if (!cached_info) {
|
|
|
|
if (!gst_vaapi_display_cache_add(cache, &info))
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
2010-03-19 10:38:45 +00:00
|
|
|
has_errors = FALSE;
|
|
|
|
end:
|
2012-07-31 10:24:14 +00:00
|
|
|
g_free(display_attrs);
|
2010-03-19 10:38:45 +00:00
|
|
|
g_free(profiles);
|
2010-04-20 13:36:04 +00:00
|
|
|
g_free(entrypoints);
|
2010-03-19 10:38:45 +00:00
|
|
|
g_free(formats);
|
|
|
|
g_free(flags);
|
|
|
|
return !has_errors;
|
2010-03-10 12:25:19 +00:00
|
|
|
}
|
|
|
|
|
2010-03-17 07:59:31 +00:00
|
|
|
static void
|
|
|
|
gst_vaapi_display_lock_default(GstVaapiDisplay *display)
|
|
|
|
{
|
2013-05-07 09:39:34 +00:00
|
|
|
GstVaapiDisplayPrivate *priv = GST_VAAPI_DISPLAY_GET_PRIVATE(display);
|
2012-01-12 14:03:04 +00:00
|
|
|
|
|
|
|
if (priv->parent)
|
2013-05-07 09:39:34 +00:00
|
|
|
priv = GST_VAAPI_DISPLAY_GET_PRIVATE(priv->parent);
|
2012-12-17 09:10:55 +00:00
|
|
|
g_rec_mutex_lock(&priv->mutex);
|
2010-03-17 07:59:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_vaapi_display_unlock_default(GstVaapiDisplay *display)
|
|
|
|
{
|
2013-05-07 09:39:34 +00:00
|
|
|
GstVaapiDisplayPrivate *priv = GST_VAAPI_DISPLAY_GET_PRIVATE(display);
|
2012-01-12 14:03:04 +00:00
|
|
|
|
|
|
|
if (priv->parent)
|
2013-05-07 09:39:34 +00:00
|
|
|
priv = GST_VAAPI_DISPLAY_GET_PRIVATE(priv->parent);
|
2012-12-17 09:10:55 +00:00
|
|
|
g_rec_mutex_unlock(&priv->mutex);
|
2010-03-17 07:59:31 +00:00
|
|
|
}
|
|
|
|
|
2010-01-25 16:15:01 +00:00
|
|
|
static void
|
2013-05-07 09:39:34 +00:00
|
|
|
gst_vaapi_display_init(GstVaapiDisplay *display)
|
2010-01-25 16:15:01 +00:00
|
|
|
{
|
2013-05-07 09:39:34 +00:00
|
|
|
GstVaapiDisplayPrivate * const priv =
|
|
|
|
GST_VAAPI_DISPLAY_GET_PRIVATE(display);
|
|
|
|
const GstVaapiDisplayClass * const dpy_class =
|
|
|
|
GST_VAAPI_DISPLAY_GET_CLASS(display);
|
2010-01-25 16:15:01 +00:00
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
priv->display_type = GST_VAAPI_DISPLAY_TYPE_ANY;
|
|
|
|
priv->par_n = 1;
|
|
|
|
priv->par_d = 1;
|
2010-01-25 16:15:01 +00:00
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
g_rec_mutex_init(&priv->mutex);
|
2010-01-25 16:15:01 +00:00
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
if (dpy_class->init)
|
|
|
|
dpy_class->init(display);
|
2010-01-25 16:15:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-05-07 09:39:34 +00:00
|
|
|
gst_vaapi_display_finalize(GstVaapiDisplay *display)
|
2010-01-25 16:15:01 +00:00
|
|
|
{
|
2013-05-07 09:39:34 +00:00
|
|
|
GstVaapiDisplayPrivate * const priv =
|
|
|
|
GST_VAAPI_DISPLAY_GET_PRIVATE(display);
|
2010-01-25 16:15:01 +00:00
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
gst_vaapi_display_destroy(display);
|
|
|
|
g_rec_mutex_clear(&priv->mutex);
|
2010-03-11 15:01:00 +00:00
|
|
|
}
|
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
void
|
2010-01-25 16:15:01 +00:00
|
|
|
gst_vaapi_display_class_init(GstVaapiDisplayClass *klass)
|
|
|
|
{
|
2013-05-07 09:39:34 +00:00
|
|
|
GstVaapiMiniObjectClass * const object_class =
|
|
|
|
GST_VAAPI_MINI_OBJECT_CLASS(klass);
|
2010-03-17 07:59:31 +00:00
|
|
|
GstVaapiDisplayClass * const dpy_class = GST_VAAPI_DISPLAY_CLASS(klass);
|
2010-01-25 16:15:01 +00:00
|
|
|
|
2013-01-18 13:46:23 +00:00
|
|
|
libgstvaapi_init_once();
|
2013-01-18 13:17:34 +00:00
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
object_class->size = sizeof(GstVaapiDisplay);
|
|
|
|
object_class->finalize = (GDestroyNotify)gst_vaapi_display_finalize;
|
2010-03-26 11:02:12 +00:00
|
|
|
dpy_class->lock = gst_vaapi_display_lock_default;
|
|
|
|
dpy_class->unlock = gst_vaapi_display_unlock_default;
|
2013-05-07 09:39:34 +00:00
|
|
|
}
|
2010-01-25 16:15:01 +00:00
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
static void
|
|
|
|
gst_vaapi_display_properties_init(void)
|
|
|
|
{
|
2012-08-28 08:55:59 +00:00
|
|
|
/**
|
|
|
|
* GstVaapiDisplay:render-mode:
|
|
|
|
*
|
|
|
|
* The VA display rendering mode, expressed as a #GstVaapiRenderMode.
|
|
|
|
*/
|
|
|
|
g_properties[PROP_RENDER_MODE] =
|
|
|
|
g_param_spec_enum(GST_VAAPI_DISPLAY_PROP_RENDER_MODE,
|
|
|
|
"render mode",
|
|
|
|
"The display rendering mode",
|
|
|
|
GST_VAAPI_TYPE_RENDER_MODE,
|
|
|
|
DEFAULT_RENDER_MODE,
|
|
|
|
G_PARAM_READWRITE);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GstVaapiDisplay:rotation:
|
|
|
|
*
|
|
|
|
* The VA display rotation mode, expressed as a #GstVaapiRotation.
|
|
|
|
*/
|
|
|
|
g_properties[PROP_ROTATION] =
|
|
|
|
g_param_spec_enum(GST_VAAPI_DISPLAY_PROP_ROTATION,
|
|
|
|
"rotation",
|
|
|
|
"The display rotation mode",
|
|
|
|
GST_VAAPI_TYPE_ROTATION,
|
|
|
|
DEFAULT_ROTATION,
|
|
|
|
G_PARAM_READWRITE);
|
|
|
|
|
2012-08-28 11:59:50 +00:00
|
|
|
/**
|
|
|
|
* GstVaapiDisplay:hue:
|
|
|
|
*
|
|
|
|
* The VA display hue, expressed as a float value. Range is -180.0
|
|
|
|
* to 180.0. Default value is 0.0 and represents no modification.
|
|
|
|
*/
|
|
|
|
g_properties[PROP_HUE] =
|
|
|
|
g_param_spec_float(GST_VAAPI_DISPLAY_PROP_HUE,
|
|
|
|
"hue",
|
|
|
|
"The display hue value",
|
|
|
|
-180.0, 180.0, 0.0,
|
|
|
|
G_PARAM_READWRITE);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GstVaapiDisplay:saturation:
|
|
|
|
*
|
|
|
|
* The VA display saturation, expressed as a float value. Range is
|
|
|
|
* 0.0 to 2.0. Default value is 1.0 and represents no modification.
|
|
|
|
*/
|
|
|
|
g_properties[PROP_SATURATION] =
|
|
|
|
g_param_spec_float(GST_VAAPI_DISPLAY_PROP_SATURATION,
|
|
|
|
"saturation",
|
|
|
|
"The display saturation value",
|
|
|
|
0.0, 2.0, 1.0,
|
|
|
|
G_PARAM_READWRITE);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GstVaapiDisplay:brightness:
|
|
|
|
*
|
|
|
|
* The VA display brightness, expressed as a float value. Range is
|
|
|
|
* -1.0 to 1.0. Default value is 0.0 and represents no modification.
|
|
|
|
*/
|
|
|
|
g_properties[PROP_BRIGHTNESS] =
|
|
|
|
g_param_spec_float(GST_VAAPI_DISPLAY_PROP_BRIGHTNESS,
|
|
|
|
"brightness",
|
|
|
|
"The display brightness value",
|
|
|
|
-1.0, 1.0, 0.0,
|
|
|
|
G_PARAM_READWRITE);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GstVaapiDisplay:contrast:
|
|
|
|
*
|
|
|
|
* The VA display contrast, expressed as a float value. Range is
|
|
|
|
* 0.0 to 2.0. Default value is 1.0 and represents no modification.
|
|
|
|
*/
|
|
|
|
g_properties[PROP_CONTRAST] =
|
|
|
|
g_param_spec_float(GST_VAAPI_DISPLAY_PROP_CONTRAST,
|
|
|
|
"contrast",
|
|
|
|
"The display contrast value",
|
|
|
|
0.0, 2.0, 1.0,
|
|
|
|
G_PARAM_READWRITE);
|
2013-05-07 09:39:34 +00:00
|
|
|
}
|
2012-08-28 11:59:50 +00:00
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
static inline const GstVaapiDisplayClass *
|
|
|
|
gst_vaapi_display_class(void)
|
|
|
|
{
|
|
|
|
static GstVaapiDisplayClass g_class;
|
|
|
|
static gsize g_class_init = FALSE;
|
|
|
|
|
|
|
|
if (g_once_init_enter(&g_class_init)) {
|
|
|
|
gst_vaapi_display_class_init(&g_class);
|
|
|
|
g_once_init_leave(&g_class_init, TRUE);
|
|
|
|
}
|
|
|
|
return &g_class;
|
2010-01-25 16:15:01 +00:00
|
|
|
}
|
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
GstVaapiDisplay *
|
|
|
|
gst_vaapi_display_new(const GstVaapiDisplayClass *klass,
|
|
|
|
GstVaapiDisplayInitType init_type, gpointer init_value)
|
2010-01-25 16:15:01 +00:00
|
|
|
{
|
2013-05-07 09:39:34 +00:00
|
|
|
GstVaapiDisplay *display;
|
2010-01-25 16:15:01 +00:00
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
display = (GstVaapiDisplay *)
|
|
|
|
gst_vaapi_mini_object_new0(GST_VAAPI_MINI_OBJECT_CLASS(klass));
|
|
|
|
if (!display)
|
|
|
|
return NULL;
|
2010-03-17 07:59:31 +00:00
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
gst_vaapi_display_init(display);
|
|
|
|
if (!gst_vaapi_display_create(display, init_type, init_value))
|
|
|
|
goto error;
|
|
|
|
return display;
|
|
|
|
|
|
|
|
error:
|
|
|
|
gst_vaapi_display_unref_internal(display);
|
|
|
|
return NULL;
|
2010-01-25 16:15:01 +00:00
|
|
|
}
|
|
|
|
|
2010-03-19 15:45:21 +00:00
|
|
|
/**
|
|
|
|
* gst_vaapi_display_new_with_display:
|
|
|
|
* @va_display: a #VADisplay
|
|
|
|
*
|
|
|
|
* Creates a new #GstVaapiDisplay, using @va_display as the VA
|
|
|
|
* display.
|
|
|
|
*
|
|
|
|
* Return value: the newly created #GstVaapiDisplay object
|
|
|
|
*/
|
2010-03-10 12:25:19 +00:00
|
|
|
GstVaapiDisplay *
|
|
|
|
gst_vaapi_display_new_with_display(VADisplay va_display)
|
2010-01-25 16:15:01 +00:00
|
|
|
{
|
2012-01-12 14:03:04 +00:00
|
|
|
GstVaapiDisplayCache * const cache = get_display_cache();
|
|
|
|
const GstVaapiDisplayInfo *info;
|
|
|
|
|
|
|
|
g_return_val_if_fail(va_display != NULL, NULL);
|
|
|
|
g_return_val_if_fail(cache != NULL, NULL);
|
|
|
|
|
|
|
|
info = gst_vaapi_display_cache_lookup_by_va_display(cache, va_display);
|
|
|
|
if (info)
|
2013-05-07 09:39:34 +00:00
|
|
|
return gst_vaapi_display_ref_internal(info->display);
|
2012-01-12 14:03:04 +00:00
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
return gst_vaapi_display_new(gst_vaapi_display_class(),
|
|
|
|
GST_VAAPI_DISPLAY_INIT_FROM_VA_DISPLAY, va_display);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_vaapi_display_ref:
|
|
|
|
* @display: a #GstVaapiDisplay
|
|
|
|
*
|
|
|
|
* Atomically increases the reference count of the given @display by one.
|
|
|
|
*
|
|
|
|
* Returns: The same @display argument
|
|
|
|
*/
|
|
|
|
GstVaapiDisplay *
|
|
|
|
gst_vaapi_display_ref(GstVaapiDisplay *display)
|
|
|
|
{
|
|
|
|
return gst_vaapi_display_ref_internal(display);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_vaapi_display_unref:
|
|
|
|
* @display: a #GstVaapiDisplay
|
|
|
|
*
|
|
|
|
* Atomically decreases the reference count of the @display by one. If
|
|
|
|
* the reference count reaches zero, the display will be free'd.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_vaapi_display_unref(GstVaapiDisplay *display)
|
|
|
|
{
|
|
|
|
gst_vaapi_display_unref_internal(display);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_vaapi_display_replace:
|
|
|
|
* @old_display_ptr: a pointer to a #GstVaapiDisplay
|
|
|
|
* @new_display: a #GstVaapiDisplay
|
|
|
|
*
|
|
|
|
* Atomically replaces the display display held in @old_display_ptr
|
|
|
|
* with @new_display. This means that @old_display_ptr shall reference
|
|
|
|
* a valid display. However, @new_display can be NULL.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_vaapi_display_replace(GstVaapiDisplay **old_display_ptr,
|
|
|
|
GstVaapiDisplay *new_display)
|
|
|
|
{
|
|
|
|
gst_vaapi_display_replace_internal(old_display_ptr, new_display);
|
2010-01-25 16:15:01 +00:00
|
|
|
}
|
|
|
|
|
2010-03-19 15:45:21 +00:00
|
|
|
/**
|
|
|
|
* gst_vaapi_display_lock:
|
|
|
|
* @display: a #GstVaapiDisplay
|
|
|
|
*
|
|
|
|
* Locks @display. If @display is already locked by another thread,
|
|
|
|
* the current thread will block until @display is unlocked by the
|
|
|
|
* other thread.
|
|
|
|
*/
|
2010-03-17 07:59:31 +00:00
|
|
|
void
|
|
|
|
gst_vaapi_display_lock(GstVaapiDisplay *display)
|
|
|
|
{
|
|
|
|
GstVaapiDisplayClass *klass;
|
|
|
|
|
2013-05-23 16:15:48 +00:00
|
|
|
g_return_if_fail(display != NULL);
|
2010-03-17 07:59:31 +00:00
|
|
|
|
|
|
|
klass = GST_VAAPI_DISPLAY_GET_CLASS(display);
|
2010-03-26 11:02:12 +00:00
|
|
|
if (klass->lock)
|
|
|
|
klass->lock(display);
|
2010-03-17 07:59:31 +00:00
|
|
|
}
|
|
|
|
|
2010-03-19 15:45:21 +00:00
|
|
|
/**
|
|
|
|
* gst_vaapi_display_unlock:
|
|
|
|
* @display: a #GstVaapiDisplay
|
|
|
|
*
|
|
|
|
* Unlocks @display. If another thread is blocked in a
|
|
|
|
* gst_vaapi_display_lock() call for @display, it will be woken and
|
|
|
|
* can lock @display itself.
|
|
|
|
*/
|
2010-03-17 07:59:31 +00:00
|
|
|
void
|
|
|
|
gst_vaapi_display_unlock(GstVaapiDisplay *display)
|
|
|
|
{
|
|
|
|
GstVaapiDisplayClass *klass;
|
|
|
|
|
2013-05-23 16:15:48 +00:00
|
|
|
g_return_if_fail(display != NULL);
|
2010-03-17 07:59:31 +00:00
|
|
|
|
|
|
|
klass = GST_VAAPI_DISPLAY_GET_CLASS(display);
|
2010-03-26 11:02:12 +00:00
|
|
|
if (klass->unlock)
|
|
|
|
klass->unlock(display);
|
2010-03-17 07:59:31 +00:00
|
|
|
}
|
|
|
|
|
2010-03-26 11:35:20 +00:00
|
|
|
/**
|
|
|
|
* gst_vaapi_display_sync:
|
|
|
|
* @display: a #GstVaapiDisplay
|
|
|
|
*
|
|
|
|
* Flushes any requests queued for the windowing system and waits until
|
|
|
|
* all requests have been handled. This is often used for making sure
|
|
|
|
* that the display is synchronized with the current state of the program.
|
|
|
|
*
|
|
|
|
* This is most useful for X11. On windowing systems where requests are
|
|
|
|
* handled synchronously, this function will do nothing.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_vaapi_display_sync(GstVaapiDisplay *display)
|
|
|
|
{
|
|
|
|
GstVaapiDisplayClass *klass;
|
|
|
|
|
2013-05-23 16:15:48 +00:00
|
|
|
g_return_if_fail(display != NULL);
|
2010-03-26 11:35:20 +00:00
|
|
|
|
|
|
|
klass = GST_VAAPI_DISPLAY_GET_CLASS(display);
|
|
|
|
if (klass->sync)
|
|
|
|
klass->sync(display);
|
|
|
|
else if (klass->flush)
|
|
|
|
klass->flush(display);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-03-29 11:25:20 +00:00
|
|
|
* gst_vaapi_display_flush:
|
2010-03-26 11:35:20 +00:00
|
|
|
* @display: a #GstVaapiDisplay
|
|
|
|
*
|
|
|
|
* Flushes any requests queued for the windowing system.
|
|
|
|
*
|
|
|
|
* This is most useful for X11. On windowing systems where requests
|
|
|
|
* are handled synchronously, this function will do nothing.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_vaapi_display_flush(GstVaapiDisplay *display)
|
|
|
|
{
|
|
|
|
GstVaapiDisplayClass *klass;
|
|
|
|
|
2013-05-23 16:15:48 +00:00
|
|
|
g_return_if_fail(display != NULL);
|
2010-03-26 11:35:20 +00:00
|
|
|
|
|
|
|
klass = GST_VAAPI_DISPLAY_GET_CLASS(display);
|
|
|
|
if (klass->flush)
|
|
|
|
klass->flush(display);
|
|
|
|
}
|
|
|
|
|
2012-07-25 07:16:02 +00:00
|
|
|
/**
|
|
|
|
* gst_vaapi_display_get_display:
|
|
|
|
* @display: a #GstVaapiDisplay
|
|
|
|
*
|
|
|
|
* Returns the #GstVaapiDisplayType bound to @display.
|
|
|
|
*
|
|
|
|
* Return value: the #GstVaapiDisplayType
|
|
|
|
*/
|
|
|
|
GstVaapiDisplayType
|
|
|
|
gst_vaapi_display_get_display_type(GstVaapiDisplay *display)
|
|
|
|
{
|
2013-05-23 16:15:48 +00:00
|
|
|
g_return_val_if_fail(display != NULL, GST_VAAPI_DISPLAY_TYPE_ANY);
|
2012-07-25 07:16:02 +00:00
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
return GST_VAAPI_DISPLAY_GET_PRIVATE(display)->display_type;
|
2012-07-25 07:16:02 +00:00
|
|
|
}
|
|
|
|
|
2010-03-19 15:45:21 +00:00
|
|
|
/**
|
|
|
|
* gst_vaapi_display_get_display:
|
|
|
|
* @display: a #GstVaapiDisplay
|
|
|
|
*
|
|
|
|
* Returns the #VADisplay bound to @display.
|
|
|
|
*
|
|
|
|
* Return value: the #VADisplay
|
|
|
|
*/
|
2010-03-10 12:25:19 +00:00
|
|
|
VADisplay
|
|
|
|
gst_vaapi_display_get_display(GstVaapiDisplay *display)
|
2010-01-25 16:15:01 +00:00
|
|
|
{
|
2013-05-23 16:15:48 +00:00
|
|
|
g_return_val_if_fail(display != NULL, NULL);
|
2010-01-25 16:15:01 +00:00
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
return GST_VAAPI_DISPLAY_GET_PRIVATE(display)->display;
|
2010-01-25 16:15:01 +00:00
|
|
|
}
|
|
|
|
|
2010-03-22 08:44:38 +00:00
|
|
|
/**
|
|
|
|
* gst_vaapi_display_get_width:
|
|
|
|
* @display: a #GstVaapiDisplay
|
|
|
|
*
|
|
|
|
* Retrieves the width of a #GstVaapiDisplay.
|
|
|
|
*
|
|
|
|
* Return value: the width of the @display, in pixels
|
|
|
|
*/
|
|
|
|
guint
|
|
|
|
gst_vaapi_display_get_width(GstVaapiDisplay *display)
|
|
|
|
{
|
2013-05-23 16:15:48 +00:00
|
|
|
g_return_val_if_fail(display != NULL, 0);
|
2010-03-22 08:44:38 +00:00
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
return GST_VAAPI_DISPLAY_GET_PRIVATE(display)->width;
|
2010-03-22 08:44:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_vaapi_display_get_height:
|
|
|
|
* @display: a #GstVaapiDisplay
|
|
|
|
*
|
|
|
|
* Retrieves the height of a #GstVaapiDisplay
|
|
|
|
*
|
|
|
|
* Return value: the height of the @display, in pixels
|
|
|
|
*/
|
|
|
|
guint
|
|
|
|
gst_vaapi_display_get_height(GstVaapiDisplay *display)
|
|
|
|
{
|
2013-05-23 16:15:48 +00:00
|
|
|
g_return_val_if_fail(display != NULL, 0);
|
2010-03-22 08:44:38 +00:00
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
return GST_VAAPI_DISPLAY_GET_PRIVATE(display)->height;
|
2010-03-22 08:44:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_vaapi_display_get_size:
|
|
|
|
* @display: a #GstVaapiDisplay
|
2010-03-23 13:32:36 +00:00
|
|
|
* @pwidth: return location for the width, or %NULL
|
|
|
|
* @pheight: return location for the height, or %NULL
|
2010-03-22 08:44:38 +00:00
|
|
|
*
|
|
|
|
* Retrieves the dimensions of a #GstVaapiDisplay.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_vaapi_display_get_size(GstVaapiDisplay *display, guint *pwidth, guint *pheight)
|
|
|
|
{
|
|
|
|
g_return_if_fail(GST_VAAPI_DISPLAY(display));
|
|
|
|
|
|
|
|
if (pwidth)
|
2013-05-07 09:39:34 +00:00
|
|
|
*pwidth = GST_VAAPI_DISPLAY_GET_PRIVATE(display)->width;
|
2010-03-22 08:44:38 +00:00
|
|
|
|
|
|
|
if (pheight)
|
2013-05-07 09:39:34 +00:00
|
|
|
*pheight = GST_VAAPI_DISPLAY_GET_PRIVATE(display)->height;
|
2010-03-22 08:44:38 +00:00
|
|
|
}
|
|
|
|
|
2010-03-22 09:32:01 +00:00
|
|
|
/**
|
|
|
|
* gst_vaapi_display_get_pixel_aspect_ratio:
|
|
|
|
* @display: a #GstVaapiDisplay
|
2010-03-23 13:32:36 +00:00
|
|
|
* @par_n: return location for the numerator of pixel aspect ratio, or %NULL
|
|
|
|
* @par_d: return location for the denominator of pixel aspect ratio, or %NULL
|
2010-03-22 09:32:01 +00:00
|
|
|
*
|
|
|
|
* Retrieves the pixel aspect ratio of a #GstVaapiDisplay.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_vaapi_display_get_pixel_aspect_ratio(
|
|
|
|
GstVaapiDisplay *display,
|
|
|
|
guint *par_n,
|
|
|
|
guint *par_d
|
|
|
|
)
|
|
|
|
{
|
2013-05-23 16:15:48 +00:00
|
|
|
g_return_if_fail(display != NULL);
|
2010-03-22 09:32:01 +00:00
|
|
|
|
|
|
|
if (par_n)
|
2013-05-07 09:39:34 +00:00
|
|
|
*par_n = GST_VAAPI_DISPLAY_GET_PRIVATE(display)->par_n;
|
2010-03-22 09:32:01 +00:00
|
|
|
|
|
|
|
if (par_d)
|
2013-05-07 09:39:34 +00:00
|
|
|
*par_d = GST_VAAPI_DISPLAY_GET_PRIVATE(display)->par_d;
|
2010-03-22 09:32:01 +00:00
|
|
|
}
|
|
|
|
|
2010-03-19 15:45:21 +00:00
|
|
|
/**
|
2010-04-20 13:36:04 +00:00
|
|
|
* gst_vaapi_display_get_decode_caps:
|
|
|
|
* @display: a #GstVaapiDisplay
|
|
|
|
*
|
|
|
|
* Gets the supported profiles for decoding as #GstCaps capabilities.
|
|
|
|
*
|
|
|
|
* Return value: a newly allocated #GstCaps object, possibly empty
|
|
|
|
*/
|
|
|
|
GstCaps *
|
|
|
|
gst_vaapi_display_get_decode_caps(GstVaapiDisplay *display)
|
|
|
|
{
|
2013-05-23 16:15:48 +00:00
|
|
|
g_return_val_if_fail(display != NULL, NULL);
|
2010-04-20 13:36:04 +00:00
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
return get_profile_caps(GST_VAAPI_DISPLAY_GET_PRIVATE(display)->decoders);
|
2010-04-20 13:36:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_vaapi_display_has_decoder:
|
2010-03-19 15:45:21 +00:00
|
|
|
* @display: a #GstVaapiDisplay
|
|
|
|
* @profile: a #VAProfile
|
2010-04-30 09:52:29 +00:00
|
|
|
* @entrypoint: a #GstVaaiEntrypoint
|
2010-03-19 15:45:21 +00:00
|
|
|
*
|
2010-04-30 09:52:29 +00:00
|
|
|
* Returns whether VA @display supports @profile for decoding at the
|
|
|
|
* specified @entrypoint.
|
2010-03-19 15:45:21 +00:00
|
|
|
*
|
2010-04-20 13:36:04 +00:00
|
|
|
* Return value: %TRUE if VA @display supports @profile for decoding.
|
2010-03-19 15:45:21 +00:00
|
|
|
*/
|
2010-03-04 17:41:34 +00:00
|
|
|
gboolean
|
2010-04-20 13:36:04 +00:00
|
|
|
gst_vaapi_display_has_decoder(
|
2010-04-30 09:52:29 +00:00
|
|
|
GstVaapiDisplay *display,
|
|
|
|
GstVaapiProfile profile,
|
|
|
|
GstVaapiEntrypoint entrypoint
|
2010-04-20 13:36:04 +00:00
|
|
|
)
|
|
|
|
{
|
2013-05-23 16:15:48 +00:00
|
|
|
g_return_val_if_fail(display != NULL, FALSE);
|
2010-04-20 13:36:04 +00:00
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
return find_config(
|
|
|
|
GST_VAAPI_DISPLAY_GET_PRIVATE(display)->decoders, profile, entrypoint);
|
2010-04-20 13:36:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_vaapi_display_get_encode_caps:
|
|
|
|
* @display: a #GstVaapiDisplay
|
|
|
|
*
|
|
|
|
* Gets the supported profiles for decoding as #GstCaps capabilities.
|
|
|
|
*
|
|
|
|
* Return value: a newly allocated #GstCaps object, possibly empty
|
|
|
|
*/
|
|
|
|
GstCaps *
|
|
|
|
gst_vaapi_display_get_encode_caps(GstVaapiDisplay *display)
|
|
|
|
{
|
2013-05-23 16:15:48 +00:00
|
|
|
g_return_val_if_fail(display != NULL, NULL);
|
2010-04-20 13:36:04 +00:00
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
return get_profile_caps(GST_VAAPI_DISPLAY_GET_PRIVATE(display)->encoders);
|
2010-04-20 13:36:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_vaapi_display_has_encoder:
|
|
|
|
* @display: a #GstVaapiDisplay
|
|
|
|
* @profile: a #VAProfile
|
2010-04-30 09:52:29 +00:00
|
|
|
* @entrypoint: a #GstVaapiEntrypoint
|
2010-04-20 13:36:04 +00:00
|
|
|
*
|
2010-04-30 09:52:29 +00:00
|
|
|
* Returns whether VA @display supports @profile for encoding at the
|
|
|
|
* specified @entrypoint.
|
2010-04-20 13:36:04 +00:00
|
|
|
*
|
|
|
|
* Return value: %TRUE if VA @display supports @profile for encoding.
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gst_vaapi_display_has_encoder(
|
2010-04-30 09:52:29 +00:00
|
|
|
GstVaapiDisplay *display,
|
|
|
|
GstVaapiProfile profile,
|
|
|
|
GstVaapiEntrypoint entrypoint
|
2010-04-20 13:36:04 +00:00
|
|
|
)
|
2010-03-04 17:41:34 +00:00
|
|
|
{
|
2013-05-23 16:15:48 +00:00
|
|
|
g_return_val_if_fail(display != NULL, FALSE);
|
2010-03-04 17:41:34 +00:00
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
return find_config(
|
|
|
|
GST_VAAPI_DISPLAY_GET_PRIVATE(display)->encoders, profile, entrypoint);
|
2010-03-10 10:43:31 +00:00
|
|
|
}
|
|
|
|
|
2010-03-19 15:45:21 +00:00
|
|
|
/**
|
|
|
|
* gst_vaapi_display_get_image_caps:
|
|
|
|
* @display: a #GstVaapiDisplay
|
|
|
|
*
|
|
|
|
* Gets the supported image formats for gst_vaapi_surface_get_image()
|
|
|
|
* or gst_vaapi_surface_put_image() as #GstCaps capabilities.
|
|
|
|
*
|
|
|
|
* Note that this method does not necessarily map image formats
|
|
|
|
* returned by vaQueryImageFormats(). The set of capabilities can be
|
|
|
|
* stripped down, if gstreamer-vaapi does not support the format, or
|
|
|
|
* expanded to cover compatible formats not exposed by the underlying
|
|
|
|
* driver. e.g. I420 can be supported even if the driver only exposes
|
|
|
|
* YV12.
|
|
|
|
*
|
|
|
|
* Return value: a newly allocated #GstCaps object, possibly empty
|
|
|
|
*/
|
2010-03-10 10:43:31 +00:00
|
|
|
GstCaps *
|
|
|
|
gst_vaapi_display_get_image_caps(GstVaapiDisplay *display)
|
|
|
|
{
|
2013-05-23 16:15:48 +00:00
|
|
|
g_return_val_if_fail(display != NULL, NULL);
|
2010-03-10 10:43:31 +00:00
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
return get_format_caps(
|
|
|
|
GST_VAAPI_DISPLAY_GET_PRIVATE(display)->image_formats);
|
2010-03-10 10:43:31 +00:00
|
|
|
}
|
|
|
|
|
2010-03-19 15:45:21 +00:00
|
|
|
/**
|
|
|
|
* gst_vaapi_display_has_image_format:
|
|
|
|
* @display: a #GstVaapiDisplay
|
2013-07-09 12:03:01 +00:00
|
|
|
* @format: a #GstVideoFormat
|
2010-03-19 15:45:21 +00:00
|
|
|
*
|
|
|
|
* Returns whether VA @display supports @format image format.
|
|
|
|
*
|
|
|
|
* Return value: %TRUE if VA @display supports @format image format
|
|
|
|
*/
|
2010-03-04 17:41:34 +00:00
|
|
|
gboolean
|
|
|
|
gst_vaapi_display_has_image_format(
|
|
|
|
GstVaapiDisplay *display,
|
2013-07-09 12:03:01 +00:00
|
|
|
GstVideoFormat format
|
2010-03-04 17:41:34 +00:00
|
|
|
)
|
|
|
|
{
|
2013-05-23 16:15:48 +00:00
|
|
|
g_return_val_if_fail(display != NULL, FALSE);
|
2010-03-19 10:38:45 +00:00
|
|
|
g_return_val_if_fail(format, FALSE);
|
2010-03-04 17:41:34 +00:00
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
if (find_format(
|
|
|
|
GST_VAAPI_DISPLAY_GET_PRIVATE(display)->image_formats, format))
|
2011-12-12 12:39:20 +00:00
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
/* XXX: try subpicture formats since some drivers could report a
|
|
|
|
* set of VA image formats that is not a superset of the set of VA
|
|
|
|
* subpicture formats
|
|
|
|
*/
|
2013-05-07 09:39:34 +00:00
|
|
|
return find_format(
|
|
|
|
GST_VAAPI_DISPLAY_GET_PRIVATE(display)->subpicture_formats, format);
|
2010-03-04 17:41:34 +00:00
|
|
|
}
|
|
|
|
|
2010-03-19 15:45:21 +00:00
|
|
|
/**
|
|
|
|
* gst_vaapi_display_get_subpicture_caps:
|
|
|
|
* @display: a #GstVaapiDisplay
|
|
|
|
*
|
|
|
|
* Gets the supported subpicture formats as #GstCaps capabilities.
|
|
|
|
*
|
|
|
|
* Note that this method does not necessarily map subpicture formats
|
|
|
|
* returned by vaQuerySubpictureFormats(). The set of capabilities can
|
|
|
|
* be stripped down if gstreamer-vaapi does not support the
|
|
|
|
* format. e.g. this is the case for paletted formats like IA44.
|
|
|
|
*
|
|
|
|
* Return value: a newly allocated #GstCaps object, possibly empty
|
|
|
|
*/
|
2010-03-10 10:43:31 +00:00
|
|
|
GstCaps *
|
|
|
|
gst_vaapi_display_get_subpicture_caps(GstVaapiDisplay *display)
|
|
|
|
{
|
2013-05-23 16:15:48 +00:00
|
|
|
g_return_val_if_fail(display != NULL, NULL);
|
2010-03-10 10:43:31 +00:00
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
return get_format_caps(
|
|
|
|
GST_VAAPI_DISPLAY_GET_PRIVATE(display)->subpicture_formats);
|
2010-03-10 10:43:31 +00:00
|
|
|
}
|
|
|
|
|
2010-03-19 15:45:21 +00:00
|
|
|
/**
|
|
|
|
* gst_vaapi_display_has_subpicture_format:
|
|
|
|
* @display: a #GstVaapiDisplay
|
2013-07-09 12:03:01 +00:00
|
|
|
* @format: a #GstVideoFormat
|
2013-01-14 10:48:58 +00:00
|
|
|
* @flags_ptr: pointer to #GstVaapiSubpictureFlags, or zero
|
2010-03-19 15:45:21 +00:00
|
|
|
*
|
2012-05-15 08:24:08 +00:00
|
|
|
* Returns whether VA @display supports @format subpicture format with
|
|
|
|
* the supplied @flags.
|
2010-03-19 15:45:21 +00:00
|
|
|
*
|
|
|
|
* Return value: %TRUE if VA @display supports @format subpicture format
|
|
|
|
*/
|
2010-03-04 17:41:34 +00:00
|
|
|
gboolean
|
|
|
|
gst_vaapi_display_has_subpicture_format(
|
|
|
|
GstVaapiDisplay *display,
|
2013-07-09 12:03:01 +00:00
|
|
|
GstVideoFormat format,
|
2012-05-15 08:24:08 +00:00
|
|
|
guint *flags_ptr
|
2010-03-04 17:41:34 +00:00
|
|
|
)
|
|
|
|
{
|
2012-05-15 08:24:08 +00:00
|
|
|
const GstVaapiFormatInfo *fip;
|
|
|
|
|
2013-05-23 16:15:48 +00:00
|
|
|
g_return_val_if_fail(display != NULL, FALSE);
|
2010-03-19 10:38:45 +00:00
|
|
|
g_return_val_if_fail(format, FALSE);
|
2010-03-04 17:41:34 +00:00
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
fip = find_format_info(
|
|
|
|
GST_VAAPI_DISPLAY_GET_PRIVATE(display)->subpicture_formats, format);
|
2012-05-15 08:24:08 +00:00
|
|
|
if (!fip)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (flags_ptr)
|
|
|
|
*flags_ptr = fip->flags;
|
|
|
|
return TRUE;
|
2010-03-04 17:41:34 +00:00
|
|
|
}
|
2012-08-27 14:02:49 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_vaapi_display_has_property:
|
|
|
|
* @display: a #GstVaapiDisplay
|
|
|
|
* @name: the property name to check
|
|
|
|
*
|
|
|
|
* Returns whether VA @display supports the requested property. The
|
|
|
|
* check is performed against the property @name. So, the client
|
|
|
|
* application may perform this check only once and cache this
|
|
|
|
* information.
|
|
|
|
*
|
|
|
|
* Return value: %TRUE if VA @display supports property @name
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gst_vaapi_display_has_property(GstVaapiDisplay *display, const gchar *name)
|
|
|
|
{
|
2013-05-23 16:15:48 +00:00
|
|
|
g_return_val_if_fail(display != NULL, FALSE);
|
2012-08-27 14:02:49 +00:00
|
|
|
g_return_val_if_fail(name, FALSE);
|
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
return find_property(
|
|
|
|
GST_VAAPI_DISPLAY_GET_PRIVATE(display)->properties, name) != NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
gst_vaapi_display_get_property(GstVaapiDisplay *display, const gchar *name,
|
|
|
|
GValue *out_value)
|
|
|
|
{
|
|
|
|
const GstVaapiProperty *prop;
|
|
|
|
|
2013-05-23 16:15:48 +00:00
|
|
|
g_return_val_if_fail(display != NULL, FALSE);
|
2013-05-07 09:39:34 +00:00
|
|
|
g_return_val_if_fail(name != NULL, FALSE);
|
|
|
|
g_return_val_if_fail(out_value != NULL, FALSE);
|
|
|
|
|
|
|
|
prop = find_property(
|
|
|
|
GST_VAAPI_DISPLAY_GET_PRIVATE(display)->properties, name);
|
|
|
|
if (!prop)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
switch (prop->attribute.type) {
|
|
|
|
case VADisplayAttribRenderMode: {
|
|
|
|
GstVaapiRenderMode mode;
|
|
|
|
if (!gst_vaapi_display_get_render_mode(display, &mode))
|
|
|
|
return FALSE;
|
|
|
|
g_value_init(out_value, GST_VAAPI_TYPE_RENDER_MODE);
|
|
|
|
g_value_set_enum(out_value, mode);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case VADisplayAttribRotation: {
|
|
|
|
GstVaapiRotation rotation;
|
|
|
|
rotation = gst_vaapi_display_get_rotation(display);
|
|
|
|
g_value_init(out_value, GST_VAAPI_TYPE_ROTATION);
|
|
|
|
g_value_set_enum(out_value, rotation);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case VADisplayAttribHue:
|
|
|
|
case VADisplayAttribSaturation:
|
|
|
|
case VADisplayAttribBrightness:
|
|
|
|
case VADisplayAttribContrast: {
|
|
|
|
gfloat value;
|
|
|
|
if (!get_color_balance(display, find_property_id(name), &value))
|
|
|
|
return FALSE;
|
|
|
|
g_value_init(out_value, G_TYPE_FLOAT);
|
|
|
|
g_value_set_float(out_value, value);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
GST_WARNING("unsupported property '%s'", name);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
gst_vaapi_display_set_property(GstVaapiDisplay *display, const gchar *name,
|
|
|
|
const GValue *value)
|
|
|
|
{
|
|
|
|
const GstVaapiProperty *prop;
|
|
|
|
|
2013-05-23 16:15:48 +00:00
|
|
|
g_return_val_if_fail(display != NULL, FALSE);
|
2013-05-07 09:39:34 +00:00
|
|
|
g_return_val_if_fail(name != NULL, FALSE);
|
|
|
|
g_return_val_if_fail(value != NULL, FALSE);
|
|
|
|
|
|
|
|
prop = find_property(
|
|
|
|
GST_VAAPI_DISPLAY_GET_PRIVATE(display)->properties, name);
|
|
|
|
if (!prop)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
switch (prop->attribute.type) {
|
|
|
|
case VADisplayAttribRenderMode: {
|
|
|
|
GstVaapiRenderMode mode;
|
|
|
|
if (!G_VALUE_HOLDS(value, GST_VAAPI_TYPE_RENDER_MODE))
|
|
|
|
return FALSE;
|
|
|
|
mode = g_value_get_enum(value);
|
|
|
|
return gst_vaapi_display_set_render_mode(display, mode);
|
|
|
|
}
|
|
|
|
case VADisplayAttribRotation: {
|
|
|
|
GstVaapiRotation rotation;
|
|
|
|
if (!G_VALUE_HOLDS(value, GST_VAAPI_TYPE_ROTATION))
|
|
|
|
return FALSE;
|
|
|
|
rotation = g_value_get_enum(value);
|
|
|
|
return gst_vaapi_display_set_rotation(display, rotation);
|
|
|
|
}
|
|
|
|
case VADisplayAttribHue:
|
|
|
|
case VADisplayAttribSaturation:
|
|
|
|
case VADisplayAttribBrightness:
|
|
|
|
case VADisplayAttribContrast: {
|
|
|
|
gfloat v;
|
|
|
|
if (!G_VALUE_HOLDS(value, G_TYPE_FLOAT))
|
|
|
|
return FALSE;
|
|
|
|
v = g_value_get_float(value);
|
|
|
|
return set_color_balance(display, find_property_id(name), v);
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_WARNING("unsupported property '%s'", name);
|
|
|
|
return FALSE;
|
2012-08-27 14:02:49 +00:00
|
|
|
}
|
2012-08-27 15:11:37 +00:00
|
|
|
|
|
|
|
static gboolean
|
|
|
|
get_attribute(GstVaapiDisplay *display, VADisplayAttribType type, gint *value)
|
|
|
|
{
|
2013-05-07 09:39:34 +00:00
|
|
|
GstVaapiDisplayPrivate * const priv =
|
|
|
|
GST_VAAPI_DISPLAY_GET_PRIVATE(display);
|
2012-08-27 15:11:37 +00:00
|
|
|
VADisplayAttribute attr;
|
|
|
|
VAStatus status;
|
|
|
|
|
|
|
|
attr.type = type;
|
|
|
|
attr.flags = VA_DISPLAY_ATTRIB_GETTABLE;
|
2013-05-07 09:39:34 +00:00
|
|
|
status = vaGetDisplayAttributes(priv->display, &attr, 1);
|
2012-08-27 15:11:37 +00:00
|
|
|
if (!vaapi_check_status(status, "vaGetDisplayAttributes()"))
|
|
|
|
return FALSE;
|
|
|
|
*value = attr.value;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
set_attribute(GstVaapiDisplay *display, VADisplayAttribType type, gint value)
|
|
|
|
{
|
2013-05-07 09:39:34 +00:00
|
|
|
GstVaapiDisplayPrivate * const priv =
|
|
|
|
GST_VAAPI_DISPLAY_GET_PRIVATE(display);
|
2012-08-27 15:11:37 +00:00
|
|
|
VADisplayAttribute attr;
|
|
|
|
VAStatus status;
|
|
|
|
|
|
|
|
attr.type = type;
|
|
|
|
attr.value = value;
|
|
|
|
attr.flags = VA_DISPLAY_ATTRIB_SETTABLE;
|
2013-05-07 09:39:34 +00:00
|
|
|
status = vaSetDisplayAttributes(priv->display, &attr, 1);
|
2012-08-27 15:11:37 +00:00
|
|
|
if (!vaapi_check_status(status, "vaSetDisplayAttributes()"))
|
|
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
get_render_mode_VADisplayAttribRenderMode(
|
|
|
|
GstVaapiDisplay *display,
|
|
|
|
GstVaapiRenderMode *pmode
|
|
|
|
)
|
|
|
|
{
|
|
|
|
gint modes, devices;
|
|
|
|
|
|
|
|
if (!get_attribute(display, VADisplayAttribRenderDevice, &devices))
|
|
|
|
return FALSE;
|
|
|
|
if (!devices)
|
|
|
|
return FALSE;
|
|
|
|
if (!get_attribute(display, VADisplayAttribRenderMode, &modes))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/* Favor "overlay" mode since it is the most restrictive one */
|
|
|
|
if (modes & (VA_RENDER_MODE_LOCAL_OVERLAY|VA_RENDER_MODE_EXTERNAL_OVERLAY))
|
|
|
|
*pmode = GST_VAAPI_RENDER_MODE_OVERLAY;
|
|
|
|
else
|
|
|
|
*pmode = GST_VAAPI_RENDER_MODE_TEXTURE;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
get_render_mode_VADisplayAttribDirectSurface(
|
|
|
|
GstVaapiDisplay *display,
|
|
|
|
GstVaapiRenderMode *pmode
|
|
|
|
)
|
|
|
|
{
|
|
|
|
#if VA_CHECK_VERSION(0,34,0)
|
|
|
|
/* VADisplayAttribDirectsurface was removed in VA-API >= 0.34.0 */
|
|
|
|
return FALSE;
|
|
|
|
#else
|
|
|
|
gint direct_surface;
|
|
|
|
|
|
|
|
if (!get_attribute(display, VADisplayAttribDirectSurface, &direct_surface))
|
|
|
|
return FALSE;
|
|
|
|
if (direct_surface)
|
|
|
|
*pmode = GST_VAAPI_RENDER_MODE_OVERLAY;
|
|
|
|
else
|
|
|
|
*pmode = GST_VAAPI_RENDER_MODE_TEXTURE;
|
|
|
|
return TRUE;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
get_render_mode_default(
|
|
|
|
GstVaapiDisplay *display,
|
|
|
|
GstVaapiRenderMode *pmode
|
|
|
|
)
|
|
|
|
{
|
2013-05-07 09:39:34 +00:00
|
|
|
GstVaapiDisplayPrivate * const priv =
|
|
|
|
GST_VAAPI_DISPLAY_GET_PRIVATE(display);
|
|
|
|
|
|
|
|
switch (priv->display_type) {
|
2012-08-27 15:11:37 +00:00
|
|
|
#if USE_WAYLAND
|
|
|
|
case GST_VAAPI_DISPLAY_TYPE_WAYLAND:
|
|
|
|
/* wl_buffer mapped from VA surface through vaGetSurfaceBufferWl() */
|
|
|
|
*pmode = GST_VAAPI_RENDER_MODE_OVERLAY;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
#if USE_DRM
|
|
|
|
case GST_VAAPI_DISPLAY_TYPE_DRM:
|
|
|
|
/* vaGetSurfaceBufferDRM() returns the underlying DRM buffer handle */
|
|
|
|
*pmode = GST_VAAPI_RENDER_MODE_OVERLAY;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
/* This includes VA/X11 and VA/GLX modes */
|
2012-08-28 08:55:59 +00:00
|
|
|
*pmode = DEFAULT_RENDER_MODE;
|
2012-08-27 15:11:37 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_vaapi_display_get_render_mode:
|
|
|
|
* @display: a #GstVaapiDisplay
|
|
|
|
* @pmode: return location for the VA @display rendering mode
|
|
|
|
*
|
|
|
|
* Returns the current VA @display rendering mode.
|
|
|
|
*
|
|
|
|
* Return value: %TRUE if VA @display rendering mode could be determined
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gst_vaapi_display_get_render_mode(
|
|
|
|
GstVaapiDisplay *display,
|
|
|
|
GstVaapiRenderMode *pmode
|
|
|
|
)
|
|
|
|
{
|
2013-05-23 16:15:48 +00:00
|
|
|
g_return_val_if_fail(display != NULL, FALSE);
|
2012-08-27 15:11:37 +00:00
|
|
|
|
|
|
|
/* Try with render-mode attribute */
|
|
|
|
if (get_render_mode_VADisplayAttribRenderMode(display, pmode))
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
/* Try with direct-surface attribute */
|
|
|
|
if (get_render_mode_VADisplayAttribDirectSurface(display, pmode))
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
/* Default: determine from the display type */
|
|
|
|
return get_render_mode_default(display, pmode);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_vaapi_display_set_render_mode:
|
|
|
|
* @display: a #GstVaapiDisplay
|
|
|
|
* @mode: the #GstVaapiRenderMode to set
|
|
|
|
*
|
|
|
|
* Sets the VA @display rendering mode to the supplied @mode. This
|
|
|
|
* function returns %FALSE if the rendering mode could not be set,
|
|
|
|
* e.g. run-time switching rendering mode is not supported.
|
|
|
|
*
|
|
|
|
* Return value: %TRUE if VA @display rendering @mode could be changed
|
|
|
|
* to the requested value
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gst_vaapi_display_set_render_mode(
|
|
|
|
GstVaapiDisplay *display,
|
|
|
|
GstVaapiRenderMode mode
|
|
|
|
)
|
|
|
|
{
|
|
|
|
gint modes, devices;
|
|
|
|
|
2013-05-23 16:15:48 +00:00
|
|
|
g_return_val_if_fail(display != NULL, FALSE);
|
2012-08-27 15:11:37 +00:00
|
|
|
|
|
|
|
if (!get_attribute(display, VADisplayAttribRenderDevice, &devices))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
modes = 0;
|
|
|
|
switch (mode) {
|
|
|
|
case GST_VAAPI_RENDER_MODE_OVERLAY:
|
|
|
|
if (devices & VA_RENDER_DEVICE_LOCAL)
|
|
|
|
modes |= VA_RENDER_MODE_LOCAL_OVERLAY;
|
|
|
|
if (devices & VA_RENDER_DEVICE_EXTERNAL)
|
|
|
|
modes |= VA_RENDER_MODE_EXTERNAL_OVERLAY;
|
|
|
|
break;
|
|
|
|
case GST_VAAPI_RENDER_MODE_TEXTURE:
|
|
|
|
if (devices & VA_RENDER_DEVICE_LOCAL)
|
|
|
|
modes |= VA_RENDER_MODE_LOCAL_GPU;
|
|
|
|
if (devices & VA_RENDER_DEVICE_EXTERNAL)
|
|
|
|
modes |= VA_RENDER_MODE_EXTERNAL_GPU;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!modes)
|
|
|
|
return FALSE;
|
|
|
|
if (!set_attribute(display, VADisplayAttribRenderMode, modes))
|
|
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
|
|
}
|
2012-08-22 06:18:11 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_vaapi_display_get_rotation:
|
|
|
|
* @display: a #GstVaapiDisplay
|
|
|
|
*
|
|
|
|
* Returns the current VA @display rotation angle. If the VA driver
|
|
|
|
* does not support "rotation" display attribute, then the display is
|
|
|
|
* assumed to be un-rotated.
|
|
|
|
*
|
|
|
|
* Return value: the current #GstVaapiRotation value
|
|
|
|
*/
|
|
|
|
GstVaapiRotation
|
|
|
|
gst_vaapi_display_get_rotation(GstVaapiDisplay *display)
|
|
|
|
{
|
|
|
|
gint value;
|
|
|
|
|
2013-05-23 16:15:48 +00:00
|
|
|
g_return_val_if_fail(display != NULL, DEFAULT_ROTATION);
|
2012-08-22 06:18:11 +00:00
|
|
|
|
|
|
|
if (!get_attribute(display, VADisplayAttribRotation, &value))
|
|
|
|
value = VA_ROTATION_NONE;
|
|
|
|
return to_GstVaapiRotation(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_vaapi_display_set_rotation:
|
|
|
|
* @display: a #GstVaapiDisplay
|
|
|
|
* @rotation: the #GstVaapiRotation value to set
|
|
|
|
*
|
|
|
|
* Sets the VA @display rotation angle to the supplied @rotation
|
|
|
|
* value. This function returns %FALSE if the rotation angle could not
|
|
|
|
* be set, e.g. the VA driver does not allow to change the display
|
|
|
|
* rotation angle.
|
|
|
|
*
|
|
|
|
* Return value: %TRUE if VA @display rotation angle could be changed
|
|
|
|
* to the requested value
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gst_vaapi_display_set_rotation(
|
|
|
|
GstVaapiDisplay *display,
|
|
|
|
GstVaapiRotation rotation
|
|
|
|
)
|
|
|
|
{
|
|
|
|
guint value;
|
|
|
|
|
2013-05-23 16:15:48 +00:00
|
|
|
g_return_val_if_fail(display != NULL, FALSE);
|
2012-08-22 06:18:11 +00:00
|
|
|
|
|
|
|
value = from_GstVaapiRotation(rotation);
|
|
|
|
if (!set_attribute(display, VADisplayAttribRotation, value))
|
|
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
|
|
}
|
2012-08-28 11:59:50 +00:00
|
|
|
|
|
|
|
/* Get color balance attributes */
|
|
|
|
static gboolean
|
|
|
|
get_color_balance(GstVaapiDisplay *display, guint prop_id, gfloat *v)
|
|
|
|
{
|
|
|
|
GParamSpecFloat * const pspec = G_PARAM_SPEC_FLOAT(g_properties[prop_id]);
|
|
|
|
const GstVaapiProperty *prop;
|
|
|
|
const VADisplayAttribute *attr;
|
|
|
|
gfloat out_value;
|
|
|
|
gint value;
|
|
|
|
|
|
|
|
if (!pspec)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
prop = find_property_by_pspec(display, &pspec->parent_instance);
|
|
|
|
if (!prop)
|
|
|
|
return FALSE;
|
|
|
|
attr = &prop->attribute;
|
|
|
|
|
|
|
|
if (!get_attribute(display, attr->type, &value))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/* Scale wrt. the medium ("default") value */
|
|
|
|
out_value = pspec->default_value;
|
|
|
|
if (value > attr->value)
|
|
|
|
out_value += ((gfloat)(value - attr->value) /
|
|
|
|
(attr->max_value - attr->value) *
|
|
|
|
(pspec->maximum - pspec->default_value));
|
|
|
|
else if (value < attr->value)
|
|
|
|
out_value -= ((gfloat)(attr->value - value) /
|
|
|
|
(attr->value - attr->min_value) *
|
|
|
|
(pspec->default_value - pspec->minimum));
|
|
|
|
*v = out_value;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set color balance attribute */
|
|
|
|
static gboolean
|
|
|
|
set_color_balance(GstVaapiDisplay *display, guint prop_id, gfloat v)
|
|
|
|
{
|
|
|
|
GParamSpecFloat * const pspec = G_PARAM_SPEC_FLOAT(g_properties[prop_id]);
|
|
|
|
const GstVaapiProperty *prop;
|
|
|
|
const VADisplayAttribute *attr;
|
|
|
|
gint value;
|
|
|
|
|
|
|
|
if (!pspec)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
prop = find_property_by_pspec(display, &pspec->parent_instance);
|
|
|
|
if (!prop)
|
|
|
|
return FALSE;
|
|
|
|
attr = &prop->attribute;
|
|
|
|
|
|
|
|
/* Scale wrt. the medium ("default") value */
|
|
|
|
value = attr->value;
|
|
|
|
if (v > pspec->default_value)
|
|
|
|
value += ((v - pspec->default_value) /
|
|
|
|
(pspec->maximum - pspec->default_value) *
|
|
|
|
(attr->max_value - attr->value));
|
|
|
|
else if (v < pspec->default_value)
|
|
|
|
value -= ((pspec->default_value - v) /
|
|
|
|
(pspec->default_value - pspec->minimum) *
|
|
|
|
(attr->value - attr->min_value));
|
|
|
|
if (!set_attribute(display, attr->type, value))
|
|
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
|
|
}
|