2010-03-15 15:12:27 +00:00
|
|
|
/*
|
|
|
|
* gstvaapiwindow_x11.h - VA/X11 window 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-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-03-15 15:12:27 +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-03-15 15:12:27 +00:00
|
|
|
*
|
2010-05-03 07:07:27 +00:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
2010-03-15 15:12:27 +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-03-15 15:12:27 +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-03-15 15:12:27 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GST_VAAPI_WINDOW_X11_H
|
|
|
|
#define GST_VAAPI_WINDOW_X11_H
|
|
|
|
|
|
|
|
#include <X11/Xlib.h>
|
2018-12-22 17:02:38 +00:00
|
|
|
#include <gst/gst.h>
|
2010-03-15 15:12:27 +00:00
|
|
|
#include <gst/vaapi/gstvaapidisplay.h>
|
|
|
|
#include <gst/vaapi/gstvaapiwindow.h>
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2018-12-22 17:02:38 +00:00
|
|
|
#define GST_TYPE_VAAPI_WINDOW_X11 (gst_vaapi_window_x11_get_type ())
|
2013-04-30 15:20:14 +00:00
|
|
|
#define GST_VAAPI_WINDOW_X11(obj) \
|
2018-12-22 17:02:38 +00:00
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_VAAPI_WINDOW_X11, GstVaapiWindowX11))
|
|
|
|
#define GST_VAAPI_IS_WINDOW_X11(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_VAAPI_WINDOW_X11))
|
2010-03-15 15:12:27 +00:00
|
|
|
|
2010-03-23 06:40:27 +00:00
|
|
|
/**
|
|
|
|
* GST_VAAPI_WINDOW_XWINDOW:
|
|
|
|
* @window: a #GstVaapiWindow
|
|
|
|
*
|
2019-05-28 23:35:17 +00:00
|
|
|
* Macro that evaluates to the underlying X11 Window of @window
|
2010-03-23 06:40:27 +00:00
|
|
|
*/
|
|
|
|
#define GST_VAAPI_WINDOW_XWINDOW(window) \
|
2018-12-22 17:02:38 +00:00
|
|
|
gst_vaapi_window_x11_get_xid (GST_VAAPI_WINDOW_X11 (window))
|
2010-03-23 06:40:27 +00:00
|
|
|
|
2014-07-25 14:53:41 +00:00
|
|
|
typedef struct _GstVaapiWindowX11 GstVaapiWindowX11;
|
2010-03-15 15:12:27 +00:00
|
|
|
|
2018-12-22 17:02:38 +00:00
|
|
|
GType
|
|
|
|
gst_vaapi_window_x11_get_type (void) G_GNUC_CONST;
|
|
|
|
|
2010-03-15 15:12:27 +00:00
|
|
|
GstVaapiWindow *
|
2014-07-25 14:53:41 +00:00
|
|
|
gst_vaapi_window_x11_new (GstVaapiDisplay * display, guint width, guint height);
|
2010-03-15 15:12:27 +00:00
|
|
|
|
|
|
|
GstVaapiWindow *
|
2014-07-25 14:53:41 +00:00
|
|
|
gst_vaapi_window_x11_new_with_xid (GstVaapiDisplay * display, Window xid);
|
2010-03-15 15:12:27 +00:00
|
|
|
|
|
|
|
Window
|
2014-07-25 14:53:41 +00:00
|
|
|
gst_vaapi_window_x11_get_xid (GstVaapiWindowX11 * window);
|
2010-03-15 15:12:27 +00:00
|
|
|
|
2010-03-25 17:18:36 +00:00
|
|
|
gboolean
|
2014-07-25 14:53:41 +00:00
|
|
|
gst_vaapi_window_x11_is_foreign_xid (GstVaapiWindowX11 * window);
|
2010-03-25 17:18:36 +00:00
|
|
|
|
2010-03-15 15:12:27 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* GST_VAAPI_WINDOW_X11_H */
|