2012-07-19 08:27:23 +00:00
|
|
|
/*
|
|
|
|
* gstvaapidisplay_wayland_priv.h - Internal VA/Wayland interface
|
|
|
|
*
|
2013-11-22 05:37:12 +00:00
|
|
|
* Copyright (C) 2012-2013 Intel Corporation
|
2013-11-22 04:57:18 +00:00
|
|
|
* Author: Sreerenj Balachandran <sreerenj.balachandran@intel.com>
|
|
|
|
* Author: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
|
2012-07-19 08:27:23 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2.1
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free
|
|
|
|
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GST_VAAPI_DISPLAY_WAYLAND_PRIV_H
|
|
|
|
#define GST_VAAPI_DISPLAY_WAYLAND_PRIV_H
|
|
|
|
|
2019-01-14 10:30:48 +00:00
|
|
|
#include "xdg-shell-client-protocol.h"
|
2020-07-22 07:36:18 +00:00
|
|
|
#include "linux-dmabuf-unstable-v1-client-protocol.h"
|
2019-01-14 10:30:48 +00:00
|
|
|
|
2012-07-19 08:27:23 +00:00
|
|
|
#include <gst/vaapi/gstvaapidisplay_wayland.h>
|
2013-05-07 09:39:34 +00:00
|
|
|
#include "gstvaapidisplay_priv.h"
|
2012-07-19 08:27:23 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2013-05-27 15:18:40 +00:00
|
|
|
#define GST_VAAPI_IS_DISPLAY_WAYLAND(display) \
|
2016-10-13 03:53:17 +00:00
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE ((display), GST_TYPE_VAAPI_DISPLAY_WAYLAND))
|
2013-05-27 15:18:40 +00:00
|
|
|
|
2012-07-19 08:27:23 +00:00
|
|
|
#define GST_VAAPI_DISPLAY_WAYLAND_CAST(display) \
|
|
|
|
((GstVaapiDisplayWayland *)(display))
|
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
#define GST_VAAPI_DISPLAY_WAYLAND_GET_PRIVATE(display) \
|
2016-10-13 03:53:17 +00:00
|
|
|
(GST_VAAPI_DISPLAY_WAYLAND_CAST(display)->priv)
|
|
|
|
|
|
|
|
#define GST_VAAPI_DISPLAY_WAYLAND_GET_CLASS(obj) \
|
|
|
|
(G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_VAAPI_DISPLAY_WAYLAND, GstVaapiDisplayWaylandClass))
|
2013-05-07 09:39:34 +00:00
|
|
|
|
|
|
|
typedef struct _GstVaapiDisplayWaylandPrivate GstVaapiDisplayWaylandPrivate;
|
|
|
|
typedef struct _GstVaapiDisplayWaylandClass GstVaapiDisplayWaylandClass;
|
|
|
|
|
2012-07-19 08:27:23 +00:00
|
|
|
/**
|
|
|
|
* GST_VAAPI_DISPLAY_WL_DISPLAY:
|
|
|
|
* @display: a #GstVaapiDisplay
|
|
|
|
*
|
|
|
|
* Macro that evaluates to the underlying Wayland #wl_display object
|
|
|
|
* of @display
|
|
|
|
*/
|
|
|
|
#undef GST_VAAPI_DISPLAY_WL_DISPLAY
|
|
|
|
#define GST_VAAPI_DISPLAY_WL_DISPLAY(display) \
|
2013-05-07 09:39:34 +00:00
|
|
|
GST_VAAPI_DISPLAY_WAYLAND_GET_PRIVATE(display)->wl_display
|
2012-07-19 08:27:23 +00:00
|
|
|
|
2020-07-22 07:36:18 +00:00
|
|
|
typedef struct _GstDRMFormat GstDRMFormat;
|
|
|
|
|
|
|
|
struct _GstDRMFormat {
|
|
|
|
guint format;
|
|
|
|
guint64 modifier;
|
|
|
|
};
|
|
|
|
|
2013-12-20 12:27:07 +00:00
|
|
|
struct _GstVaapiDisplayWaylandPrivate
|
|
|
|
{
|
|
|
|
gchar *display_name;
|
|
|
|
struct wl_display *wl_display;
|
|
|
|
struct wl_compositor *compositor;
|
2019-01-14 08:58:19 +00:00
|
|
|
struct wl_shell *wl_shell;
|
2019-01-14 10:30:48 +00:00
|
|
|
struct xdg_wm_base *xdg_wm_base;
|
2020-06-19 07:11:20 +00:00
|
|
|
struct wl_subcompositor *subcompositor;
|
2013-12-20 12:27:07 +00:00
|
|
|
struct wl_output *output;
|
2020-07-22 07:36:18 +00:00
|
|
|
struct zwp_linux_dmabuf_v1 *dmabuf;
|
2013-12-20 12:27:07 +00:00
|
|
|
struct wl_registry *registry;
|
2020-07-22 07:36:18 +00:00
|
|
|
GArray *dmabuf_formats;
|
2013-12-20 12:27:07 +00:00
|
|
|
guint width;
|
|
|
|
guint height;
|
|
|
|
guint phys_width;
|
|
|
|
guint phys_height;
|
|
|
|
gint event_fd;
|
|
|
|
guint use_foreign_display:1;
|
2013-05-07 09:39:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GstVaapiDisplayWayland:
|
|
|
|
*
|
|
|
|
* VA/Wayland display wrapper.
|
|
|
|
*/
|
2013-12-20 12:27:07 +00:00
|
|
|
struct _GstVaapiDisplayWayland
|
|
|
|
{
|
|
|
|
/*< private >*/
|
|
|
|
GstVaapiDisplay parent_instance;
|
2013-05-07 09:39:34 +00:00
|
|
|
|
2016-10-13 03:53:17 +00:00
|
|
|
GstVaapiDisplayWaylandPrivate *priv;
|
2013-05-07 09:39:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GstVaapiDisplayWaylandClass:
|
|
|
|
*
|
|
|
|
* VA/Wayland display wrapper clas.
|
|
|
|
*/
|
2013-12-20 12:27:07 +00:00
|
|
|
struct _GstVaapiDisplayWaylandClass
|
|
|
|
{
|
|
|
|
/*< private >*/
|
|
|
|
GstVaapiDisplayClass parent_class;
|
2012-07-19 08:27:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* GST_VAAPI_DISPLAY_WAYLAND_PRIV_H */
|