2010-01-25 16:15:01 +00:00
|
|
|
/*
|
|
|
|
* test-display.c - Test GstVaapiDisplayX11
|
|
|
|
*
|
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-11-22 05:37:12 +00:00
|
|
|
* Copyright (C) 2012-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
|
|
|
*
|
2011-10-18 07:18:20 +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
|
|
|
*
|
2011-10-18 07:18:20 +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
|
2011-10-18 07:18:20 +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
|
|
|
*
|
2011-10-18 07:18:20 +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
|
2013-03-20 10:57:57 +00:00
|
|
|
*/
|
2010-01-25 16:15:01 +00:00
|
|
|
|
2017-03-12 17:59:42 +00:00
|
|
|
#define _GNU_SOURCE
|
2013-03-20 10:50:15 +00:00
|
|
|
#include "gst/vaapi/sysdeps.h"
|
2010-03-10 12:25:38 +00:00
|
|
|
#include <gst/video/video.h>
|
2022-12-10 13:11:08 +00:00
|
|
|
#if GST_VAAPI_USE_DRM
|
2012-08-01 13:44:49 +00:00
|
|
|
# include <gst/vaapi/gstvaapidisplay_drm.h>
|
|
|
|
# include <va/va_drm.h>
|
|
|
|
# include <fcntl.h>
|
|
|
|
# include <unistd.h>
|
|
|
|
# ifndef DRM_DEVICE_PATH
|
|
|
|
# define DRM_DEVICE_PATH "/dev/dri/card0"
|
|
|
|
# endif
|
|
|
|
#endif
|
2022-12-10 13:11:08 +00:00
|
|
|
#if GST_VAAPI_USE_X11
|
2012-07-23 10:56:33 +00:00
|
|
|
# include <gst/vaapi/gstvaapidisplay_x11.h>
|
2010-03-26 08:10:23 +00:00
|
|
|
#endif
|
2022-12-10 13:11:08 +00:00
|
|
|
#if GST_VAAPI_USE_GLX
|
2012-07-23 10:56:33 +00:00
|
|
|
# include <gst/vaapi/gstvaapidisplay_glx.h>
|
|
|
|
#endif
|
2022-12-10 13:11:08 +00:00
|
|
|
#if GST_VAAPI_USE_WAYLAND
|
2012-07-23 10:56:33 +00:00
|
|
|
# include <gst/vaapi/gstvaapidisplay_wayland.h>
|
2010-03-26 08:10:23 +00:00
|
|
|
#endif
|
2022-12-10 13:11:08 +00:00
|
|
|
#if GST_VAAPI_USE_EGL
|
2015-07-02 09:29:32 +00:00
|
|
|
# include <gst/vaapi/gstvaapidisplay_egl.h>
|
|
|
|
#endif
|
2010-01-25 16:15:01 +00:00
|
|
|
|
2012-07-23 14:15:38 +00:00
|
|
|
#ifdef HAVE_VA_VA_GLX_H
|
2010-03-30 13:01:34 +00:00
|
|
|
# include <va/va_glx.h>
|
|
|
|
#endif
|
|
|
|
|
2012-08-28 14:08:34 +00:00
|
|
|
static void
|
2016-04-29 10:48:44 +00:00
|
|
|
print_value (const GValue * value, const gchar * name)
|
2012-08-28 14:08:34 +00:00
|
|
|
{
|
2016-04-29 10:48:44 +00:00
|
|
|
gchar *value_string;
|
2012-08-28 14:08:34 +00:00
|
|
|
|
2016-04-29 10:48:44 +00:00
|
|
|
value_string = g_strdup_value_contents (value);
|
|
|
|
if (!value_string)
|
|
|
|
return;
|
|
|
|
g_print (" %s: %s\n", name, value_string);
|
|
|
|
g_free (value_string);
|
2012-08-28 14:08:34 +00:00
|
|
|
}
|
|
|
|
|
2010-03-10 12:25:38 +00:00
|
|
|
static void
|
2016-04-29 10:48:44 +00:00
|
|
|
print_profiles (GArray * profiles, const gchar * name)
|
2010-04-20 13:36:04 +00:00
|
|
|
{
|
2016-04-29 10:48:44 +00:00
|
|
|
GstVaapiCodec codec;
|
|
|
|
const gchar *codec_name, *profile_name;
|
|
|
|
guint i;
|
2013-12-20 14:31:14 +00:00
|
|
|
|
2016-04-29 10:48:44 +00:00
|
|
|
g_print ("%u %s caps\n", profiles->len, name);
|
2013-12-20 14:31:14 +00:00
|
|
|
|
2016-04-29 10:48:44 +00:00
|
|
|
for (i = 0; i < profiles->len; i++) {
|
|
|
|
const GstVaapiProfile profile =
|
|
|
|
g_array_index (profiles, GstVaapiProfile, i);
|
2013-12-20 14:31:14 +00:00
|
|
|
|
2016-04-29 10:48:44 +00:00
|
|
|
codec = gst_vaapi_profile_get_codec (profile);
|
|
|
|
if (!codec)
|
|
|
|
continue;
|
2013-12-20 14:31:14 +00:00
|
|
|
|
2016-04-29 10:48:44 +00:00
|
|
|
codec_name = gst_vaapi_codec_get_name (codec);
|
|
|
|
if (!codec_name)
|
|
|
|
continue;
|
2013-12-20 14:31:14 +00:00
|
|
|
|
2019-08-16 16:07:43 +00:00
|
|
|
profile_name = gst_vaapi_profile_get_va_name (profile);
|
2016-04-29 10:48:44 +00:00
|
|
|
if (!profile_name)
|
|
|
|
continue;
|
2013-12-20 14:31:14 +00:00
|
|
|
|
2016-04-29 10:48:44 +00:00
|
|
|
g_print (" %s: %s profile\n", codec_name, profile_name);
|
|
|
|
}
|
2010-04-20 13:36:04 +00:00
|
|
|
}
|
|
|
|
|
2013-03-20 10:53:59 +00:00
|
|
|
static void
|
2016-04-29 10:48:44 +00:00
|
|
|
print_format_yuv (const VAImageFormat * va_format)
|
2013-03-20 10:53:59 +00:00
|
|
|
{
|
2016-04-29 10:48:44 +00:00
|
|
|
const guint32 fourcc = va_format->fourcc;
|
2013-03-20 10:53:59 +00:00
|
|
|
|
2016-04-29 10:48:44 +00:00
|
|
|
g_print (" fourcc '%c%c%c%c'",
|
|
|
|
fourcc & 0xff,
|
|
|
|
(fourcc >> 8) & 0xff, (fourcc >> 16) & 0xff, (fourcc >> 24) & 0xff);
|
2013-03-20 10:53:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2016-04-29 10:48:44 +00:00
|
|
|
print_format_rgb (const VAImageFormat * va_format)
|
2013-03-20 10:53:59 +00:00
|
|
|
{
|
2016-04-29 10:48:44 +00:00
|
|
|
g_print (" %d bits per pixel, %s endian,",
|
|
|
|
va_format->bits_per_pixel,
|
|
|
|
va_format->byte_order == VA_MSB_FIRST ? "big" : "little");
|
|
|
|
g_print (" %s masks", va_format->alpha_mask ? "rgba" : "rgb");
|
|
|
|
g_print (" 0x%08x 0x%08x 0x%08x",
|
|
|
|
va_format->red_mask, va_format->green_mask, va_format->blue_mask);
|
|
|
|
if (va_format->alpha_mask)
|
|
|
|
g_print (" 0x%08x", va_format->alpha_mask);
|
2013-03-20 10:53:59 +00:00
|
|
|
}
|
|
|
|
|
2010-04-20 13:36:04 +00:00
|
|
|
static void
|
2016-04-29 10:48:44 +00:00
|
|
|
print_formats (GArray * formats, const gchar * name)
|
2010-03-10 12:25:38 +00:00
|
|
|
{
|
2016-04-29 10:48:44 +00:00
|
|
|
guint i;
|
2010-03-10 12:25:38 +00:00
|
|
|
|
2016-04-29 10:48:44 +00:00
|
|
|
g_print ("%u %s caps\n", formats->len, name);
|
2010-03-10 12:25:38 +00:00
|
|
|
|
2016-04-29 10:48:44 +00:00
|
|
|
for (i = 0; i < formats->len; i++) {
|
|
|
|
const GstVideoFormat format = g_array_index (formats, GstVideoFormat, i);
|
|
|
|
const VAImageFormat *va_format;
|
2013-03-20 10:53:59 +00:00
|
|
|
|
2016-04-29 10:48:44 +00:00
|
|
|
g_print (" %s:", gst_vaapi_video_format_to_string (format));
|
2013-03-20 10:53:59 +00:00
|
|
|
|
2016-04-29 10:48:44 +00:00
|
|
|
va_format = gst_vaapi_video_format_to_va_format (format);
|
|
|
|
if (!va_format)
|
|
|
|
g_error ("could not determine VA format");
|
2013-03-20 10:53:59 +00:00
|
|
|
|
2016-04-29 10:48:44 +00:00
|
|
|
if (gst_vaapi_video_format_is_yuv (format))
|
|
|
|
print_format_yuv (va_format);
|
|
|
|
else
|
|
|
|
print_format_rgb (va_format);
|
|
|
|
g_print ("\n");
|
|
|
|
}
|
2010-03-10 12:25:38 +00:00
|
|
|
}
|
|
|
|
|
2012-08-28 14:08:34 +00:00
|
|
|
static void
|
2016-04-29 10:48:44 +00:00
|
|
|
dump_properties (GstVaapiDisplay * display)
|
2012-08-28 14:08:34 +00:00
|
|
|
{
|
2017-09-22 17:35:04 +00:00
|
|
|
GParamSpec **properties;
|
|
|
|
guint i, n_properties;
|
2016-04-29 10:48:44 +00:00
|
|
|
|
2017-09-22 17:35:04 +00:00
|
|
|
properties =
|
|
|
|
g_object_class_list_properties (G_OBJECT_GET_CLASS (display),
|
|
|
|
&n_properties);
|
2016-04-29 10:48:44 +00:00
|
|
|
|
2017-09-22 17:35:04 +00:00
|
|
|
for (i = 0; i < n_properties; i++) {
|
|
|
|
const gchar *const name = g_param_spec_get_nick (properties[i]);
|
|
|
|
GValue value = G_VALUE_INIT;
|
2016-04-29 10:48:44 +00:00
|
|
|
|
|
|
|
if (!gst_vaapi_display_has_property (display, name))
|
|
|
|
continue;
|
|
|
|
|
2017-09-22 17:35:04 +00:00
|
|
|
g_value_init (&value, G_PARAM_SPEC_VALUE_TYPE (properties[i]));
|
|
|
|
g_object_get_property (G_OBJECT (display), name, &value);
|
|
|
|
print_value (&value, name);
|
2016-04-29 10:48:44 +00:00
|
|
|
}
|
|
|
|
|
2017-09-22 17:35:04 +00:00
|
|
|
g_free (properties);
|
2012-08-28 14:08:34 +00:00
|
|
|
}
|
|
|
|
|
2010-03-11 15:21:43 +00:00
|
|
|
static void
|
2016-04-29 10:48:44 +00:00
|
|
|
dump_info (GstVaapiDisplay * display)
|
2010-01-25 16:15:01 +00:00
|
|
|
{
|
2016-04-29 10:48:44 +00:00
|
|
|
GArray *profiles, *formats;
|
2010-01-25 16:15:01 +00:00
|
|
|
|
2016-04-29 10:48:44 +00:00
|
|
|
profiles = gst_vaapi_display_get_decode_profiles (display);
|
|
|
|
if (!profiles)
|
|
|
|
g_error ("could not get VA decode profiles");
|
2010-04-20 13:36:04 +00:00
|
|
|
|
2016-04-29 10:48:44 +00:00
|
|
|
print_profiles (profiles, "decoders");
|
|
|
|
g_array_unref (profiles);
|
2010-04-20 13:36:04 +00:00
|
|
|
|
2016-04-29 10:48:44 +00:00
|
|
|
profiles = gst_vaapi_display_get_encode_profiles (display);
|
|
|
|
if (!profiles)
|
|
|
|
g_error ("could not get VA encode profiles");
|
2010-04-20 13:36:04 +00:00
|
|
|
|
2016-04-29 10:48:44 +00:00
|
|
|
print_profiles (profiles, "encoders");
|
|
|
|
g_array_unref (profiles);
|
2010-04-20 13:36:04 +00:00
|
|
|
|
2016-04-29 10:48:44 +00:00
|
|
|
formats = gst_vaapi_display_get_image_formats (display);
|
|
|
|
if (!formats)
|
|
|
|
g_error ("could not get VA image formats");
|
2010-03-10 12:25:38 +00:00
|
|
|
|
2016-04-29 10:48:44 +00:00
|
|
|
print_formats (formats, "image");
|
|
|
|
g_array_unref (formats);
|
2010-03-10 12:25:38 +00:00
|
|
|
|
2016-04-29 10:48:44 +00:00
|
|
|
formats = gst_vaapi_display_get_subpicture_formats (display);
|
|
|
|
if (!formats)
|
|
|
|
g_error ("could not get VA subpicture formats");
|
2010-03-10 12:25:38 +00:00
|
|
|
|
2016-04-29 10:48:44 +00:00
|
|
|
print_formats (formats, "subpicture");
|
|
|
|
g_array_unref (formats);
|
2012-08-28 14:08:34 +00:00
|
|
|
|
2016-04-29 10:48:44 +00:00
|
|
|
dump_properties (display);
|
2010-03-11 15:21:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2016-04-29 10:48:44 +00:00
|
|
|
main (int argc, char *argv[])
|
2010-03-11 15:21:43 +00:00
|
|
|
{
|
2016-04-29 10:53:06 +00:00
|
|
|
GstVaapiDisplay *display;
|
2022-12-10 13:11:08 +00:00
|
|
|
#if GST_VAAPI_USE_GLX || GST_VAAPI_USE_WAYLAND
|
2016-04-29 10:53:06 +00:00
|
|
|
guint width, height;
|
|
|
|
guint par_n, par_d;
|
|
|
|
#endif
|
2010-03-11 15:21:43 +00:00
|
|
|
|
2016-04-29 10:48:44 +00:00
|
|
|
gst_init (&argc, &argv);
|
2010-03-11 15:21:43 +00:00
|
|
|
|
2022-12-10 13:11:08 +00:00
|
|
|
#if GST_VAAPI_USE_DRM
|
2016-04-29 10:48:44 +00:00
|
|
|
g_print ("#\n");
|
|
|
|
g_print ("# Create display with gst_vaapi_display_drm_new()\n");
|
|
|
|
g_print ("#\n");
|
|
|
|
{
|
|
|
|
display = gst_vaapi_display_drm_new (NULL);
|
|
|
|
if (!display)
|
|
|
|
g_error ("could not create Gst/VA display");
|
|
|
|
|
|
|
|
dump_info (display);
|
2018-06-13 15:54:23 +00:00
|
|
|
gst_object_unref (display);
|
2016-04-29 10:48:44 +00:00
|
|
|
}
|
|
|
|
g_print ("\n");
|
|
|
|
|
|
|
|
g_print ("#\n");
|
|
|
|
g_print ("# Create display with gst_vaapi_display_drm_new_with_device()\n");
|
|
|
|
g_print ("#\n");
|
|
|
|
{
|
|
|
|
int drm_device;
|
|
|
|
|
|
|
|
drm_device = open (DRM_DEVICE_PATH, O_RDWR | O_CLOEXEC);
|
|
|
|
if (drm_device < 0)
|
|
|
|
g_error ("could not open DRM device");
|
|
|
|
|
|
|
|
display = gst_vaapi_display_drm_new_with_device (drm_device);
|
|
|
|
if (!display)
|
|
|
|
g_error ("could not create Gst/VA display");
|
|
|
|
|
|
|
|
dump_info (display);
|
2018-06-13 15:54:23 +00:00
|
|
|
gst_object_unref (display);
|
2016-04-29 10:48:44 +00:00
|
|
|
close (drm_device);
|
|
|
|
}
|
|
|
|
g_print ("\n");
|
|
|
|
|
|
|
|
g_print ("#\n");
|
|
|
|
g_print
|
|
|
|
("# Create display with gst_vaapi_display_new_with_display() [vaGetDisplayDRM()]\n");
|
|
|
|
g_print ("#\n");
|
|
|
|
{
|
|
|
|
int drm_device;
|
|
|
|
VADisplay va_display;
|
|
|
|
|
|
|
|
drm_device = open (DRM_DEVICE_PATH, O_RDWR | O_CLOEXEC);
|
|
|
|
if (drm_device < 0)
|
|
|
|
g_error ("could not open DRM device");
|
|
|
|
|
|
|
|
va_display = vaGetDisplayDRM (drm_device);
|
|
|
|
if (!va_display)
|
|
|
|
g_error ("could not create VA display");
|
|
|
|
|
|
|
|
display = gst_vaapi_display_new_with_display (va_display);
|
|
|
|
if (!display)
|
|
|
|
g_error ("could not create Gst/VA display");
|
|
|
|
|
|
|
|
dump_info (display);
|
2018-06-13 15:54:23 +00:00
|
|
|
gst_object_unref (display);
|
2016-04-29 10:48:44 +00:00
|
|
|
close (drm_device);
|
|
|
|
}
|
|
|
|
g_print ("\n");
|
2012-08-01 13:44:49 +00:00
|
|
|
#endif
|
|
|
|
|
2022-12-10 13:11:08 +00:00
|
|
|
#if GST_VAAPI_USE_X11
|
2016-04-29 10:48:44 +00:00
|
|
|
g_print ("#\n");
|
|
|
|
g_print ("# Create display with gst_vaapi_display_x11_new()\n");
|
|
|
|
g_print ("#\n");
|
|
|
|
{
|
|
|
|
display = gst_vaapi_display_x11_new (NULL);
|
|
|
|
if (!display)
|
|
|
|
g_error ("could not create Gst/VA display");
|
|
|
|
}
|
|
|
|
g_print ("\n");
|
2012-07-23 10:56:33 +00:00
|
|
|
|
2016-04-29 10:48:44 +00:00
|
|
|
g_print ("#\n");
|
|
|
|
g_print ("# Create display with gst_vaapi_display_x11_new_with_display()\n");
|
|
|
|
g_print ("#\n");
|
|
|
|
{
|
|
|
|
Display *x11_display;
|
2010-03-11 15:21:43 +00:00
|
|
|
|
2016-04-29 10:48:44 +00:00
|
|
|
x11_display = XOpenDisplay (NULL);
|
|
|
|
if (!x11_display)
|
|
|
|
g_error ("could not create X11 display");
|
2010-03-11 15:21:43 +00:00
|
|
|
|
2016-04-29 10:48:44 +00:00
|
|
|
display = gst_vaapi_display_x11_new_with_display (x11_display);
|
|
|
|
if (!display)
|
|
|
|
g_error ("could not create Gst/VA display");
|
2013-05-24 13:05:45 +00:00
|
|
|
|
2016-04-29 10:48:44 +00:00
|
|
|
dump_info (display);
|
2018-06-13 15:54:23 +00:00
|
|
|
gst_object_unref (display);
|
2016-04-29 10:48:44 +00:00
|
|
|
XCloseDisplay (x11_display);
|
|
|
|
}
|
|
|
|
g_print ("\n");
|
|
|
|
|
|
|
|
g_print ("#\n");
|
|
|
|
g_print
|
|
|
|
("# Create display with gst_vaapi_display_new_with_display() [vaGetDisplay()]\n");
|
|
|
|
g_print ("#\n");
|
|
|
|
{
|
|
|
|
Display *x11_display;
|
|
|
|
VADisplay va_display;
|
|
|
|
|
|
|
|
x11_display = XOpenDisplay (NULL);
|
|
|
|
if (!x11_display)
|
|
|
|
g_error ("could not create X11 display");
|
|
|
|
|
|
|
|
va_display = vaGetDisplay (x11_display);
|
|
|
|
if (!va_display)
|
|
|
|
g_error ("could not create VA display");
|
|
|
|
|
|
|
|
display = gst_vaapi_display_new_with_display (va_display);
|
|
|
|
if (!display)
|
|
|
|
g_error ("could not create Gst/VA display");
|
|
|
|
|
|
|
|
dump_info (display);
|
2018-06-13 15:54:23 +00:00
|
|
|
gst_object_unref (display);
|
2016-04-29 10:48:44 +00:00
|
|
|
XCloseDisplay (x11_display);
|
|
|
|
}
|
|
|
|
g_print ("\n");
|
2010-03-26 08:10:23 +00:00
|
|
|
#endif
|
|
|
|
|
2022-12-10 13:11:08 +00:00
|
|
|
#if GST_VAAPI_USE_GLX
|
2016-04-29 10:48:44 +00:00
|
|
|
g_print ("#\n");
|
|
|
|
g_print ("# Create display with gst_vaapi_display_glx_new()\n");
|
|
|
|
g_print ("#\n");
|
|
|
|
{
|
|
|
|
display = gst_vaapi_display_glx_new (NULL);
|
|
|
|
if (!display)
|
|
|
|
g_error ("could not create Gst/VA display");
|
2010-03-26 08:10:23 +00:00
|
|
|
|
2016-04-29 10:48:44 +00:00
|
|
|
gst_vaapi_display_get_size (display, &width, &height);
|
|
|
|
g_print ("Display size: %ux%u\n", width, height);
|
2010-03-26 08:10:23 +00:00
|
|
|
|
2016-04-29 10:48:44 +00:00
|
|
|
gst_vaapi_display_get_pixel_aspect_ratio (display, &par_n, &par_d);
|
|
|
|
g_print ("Pixel aspect ratio: %u/%u\n", par_n, par_d);
|
2010-03-26 08:10:23 +00:00
|
|
|
|
2016-04-29 10:48:44 +00:00
|
|
|
dump_info (display);
|
2018-06-13 15:54:23 +00:00
|
|
|
gst_object_unref (display);
|
2016-04-29 10:48:44 +00:00
|
|
|
}
|
|
|
|
g_print ("\n");
|
2010-03-26 08:10:23 +00:00
|
|
|
|
2016-04-29 10:48:44 +00:00
|
|
|
g_print ("#\n");
|
|
|
|
g_print ("# Create display with gst_vaapi_display_glx_new_with_display()\n");
|
|
|
|
g_print ("#\n");
|
|
|
|
{
|
|
|
|
Display *x11_display;
|
2012-07-23 10:56:33 +00:00
|
|
|
|
2016-04-29 10:48:44 +00:00
|
|
|
x11_display = XOpenDisplay (NULL);
|
|
|
|
if (!x11_display)
|
|
|
|
g_error ("could not create X11 display");
|
2010-03-26 08:10:23 +00:00
|
|
|
|
2016-04-29 10:48:44 +00:00
|
|
|
display = gst_vaapi_display_glx_new_with_display (x11_display);
|
|
|
|
if (!display)
|
|
|
|
g_error ("could not create Gst/VA display");
|
2010-03-26 08:10:23 +00:00
|
|
|
|
2016-04-29 10:48:44 +00:00
|
|
|
dump_info (display);
|
2018-06-13 15:54:23 +00:00
|
|
|
gst_object_unref (display);
|
2016-04-29 10:48:44 +00:00
|
|
|
XCloseDisplay (x11_display);
|
|
|
|
}
|
|
|
|
g_print ("\n");
|
2010-03-26 08:10:23 +00:00
|
|
|
|
2012-07-23 14:15:38 +00:00
|
|
|
#ifdef HAVE_VA_VA_GLX_H
|
2016-04-29 10:48:44 +00:00
|
|
|
g_print ("#\n");
|
|
|
|
g_print
|
|
|
|
("# Create display with gst_vaapi_display_new_with_display() [vaGetDisplayGLX()]\n");
|
|
|
|
g_print ("#\n");
|
|
|
|
{
|
|
|
|
Display *x11_display;
|
|
|
|
VADisplay va_display;
|
|
|
|
|
|
|
|
x11_display = XOpenDisplay (NULL);
|
|
|
|
if (!x11_display)
|
|
|
|
g_error ("could not create X11 display");
|
|
|
|
|
|
|
|
va_display = vaGetDisplayGLX (x11_display);
|
|
|
|
if (!va_display)
|
|
|
|
g_error ("could not create VA display");
|
|
|
|
|
|
|
|
display = gst_vaapi_display_new_with_display (va_display);
|
|
|
|
if (!display)
|
|
|
|
g_error ("could not create Gst/VA display");
|
|
|
|
|
|
|
|
dump_info (display);
|
2018-06-13 15:54:23 +00:00
|
|
|
gst_object_unref (display);
|
2016-04-29 10:48:44 +00:00
|
|
|
XCloseDisplay (x11_display);
|
|
|
|
}
|
|
|
|
g_print ("\n");
|
2012-07-23 14:15:38 +00:00
|
|
|
#endif
|
2010-03-26 08:10:23 +00:00
|
|
|
#endif
|
2010-03-10 12:25:38 +00:00
|
|
|
|
2022-12-10 13:11:08 +00:00
|
|
|
#if GST_VAAPI_USE_WAYLAND
|
2016-04-29 10:48:44 +00:00
|
|
|
g_print ("#\n");
|
|
|
|
g_print ("# Create display with gst_vaapi_display_wayland_new()\n");
|
|
|
|
g_print ("#\n");
|
|
|
|
{
|
|
|
|
display = gst_vaapi_display_wayland_new (NULL);
|
|
|
|
if (!display)
|
|
|
|
g_error ("could not create Gst/VA display");
|
|
|
|
|
|
|
|
gst_vaapi_display_get_size (display, &width, &height);
|
|
|
|
g_print ("Display size: %ux%u\n", width, height);
|
|
|
|
|
|
|
|
gst_vaapi_display_get_pixel_aspect_ratio (display, &par_n, &par_d);
|
|
|
|
g_print ("Pixel aspect ratio: %u/%u\n", par_n, par_d);
|
|
|
|
|
|
|
|
dump_info (display);
|
2018-06-13 15:54:23 +00:00
|
|
|
gst_object_unref (display);
|
2016-04-29 10:48:44 +00:00
|
|
|
}
|
|
|
|
g_print ("\n");
|
2012-07-23 10:56:33 +00:00
|
|
|
#endif
|
|
|
|
|
2016-04-29 10:48:44 +00:00
|
|
|
gst_deinit ();
|
|
|
|
return 0;
|
2010-01-25 16:15:01 +00:00
|
|
|
}
|