2010-01-25 16:15:01 +00:00
|
|
|
/*
|
|
|
|
* gstvaapidisplay.h - 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
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GST_VAAPI_DISPLAY_H
|
|
|
|
#define GST_VAAPI_DISPLAY_H
|
|
|
|
|
2012-07-20 09:45:15 +00:00
|
|
|
#include <va/va.h>
|
2010-01-25 16:15:01 +00:00
|
|
|
#include <gst/gst.h>
|
2012-08-27 15:11:37 +00:00
|
|
|
#include <gst/vaapi/gstvaapitypes.h>
|
2010-04-20 13:36:04 +00:00
|
|
|
#include <gst/vaapi/gstvaapiprofile.h>
|
2013-07-09 12:03:01 +00:00
|
|
|
#include <gst/vaapi/video-format.h>
|
2010-01-25 16:15:01 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
#define GST_VAAPI_DISPLAY(obj) \
|
|
|
|
((GstVaapiDisplay *)(obj))
|
2010-01-25 16:15:01 +00:00
|
|
|
|
2014-12-02 10:23:29 +00:00
|
|
|
/**
|
|
|
|
* GST_VAAPI_DISPLAY_TYPE:
|
|
|
|
* @display: a #GstVaapiDisplay
|
|
|
|
*
|
|
|
|
* Returns the @display type
|
|
|
|
*/
|
|
|
|
#define GST_VAAPI_DISPLAY_TYPE(display) \
|
|
|
|
gst_vaapi_display_get_display_type (GST_VAAPI_DISPLAY (display))
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GST_VAAPI_DISPLAY_VADISPLAY:
|
|
|
|
* @display_: a #GstVaapiDisplay
|
|
|
|
*
|
|
|
|
* Macro that evaluates to the #VADisplay of @display.
|
|
|
|
*/
|
|
|
|
#define GST_VAAPI_DISPLAY_VADISPLAY(display) \
|
|
|
|
gst_vaapi_display_get_display (GST_VAAPI_DISPLAY (display))
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GST_VAAPI_DISPLAY_LOCK:
|
|
|
|
* @display: a #GstVaapiDisplay
|
|
|
|
*
|
|
|
|
* Locks @display
|
|
|
|
*/
|
|
|
|
#define GST_VAAPI_DISPLAY_LOCK(display) \
|
|
|
|
gst_vaapi_display_lock (GST_VAAPI_DISPLAY (display))
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GST_VAAPI_DISPLAY_UNLOCK:
|
|
|
|
* @display: a #GstVaapiDisplay
|
|
|
|
*
|
|
|
|
* Unlocks @display
|
|
|
|
*/
|
|
|
|
#define GST_VAAPI_DISPLAY_UNLOCK(display) \
|
|
|
|
gst_vaapi_display_unlock (GST_VAAPI_DISPLAY (display))
|
|
|
|
|
2012-01-12 11:46:34 +00:00
|
|
|
typedef struct _GstVaapiDisplayInfo GstVaapiDisplayInfo;
|
2010-01-25 16:15:01 +00:00
|
|
|
typedef struct _GstVaapiDisplay GstVaapiDisplay;
|
|
|
|
|
2012-07-25 07:16:02 +00:00
|
|
|
/**
|
|
|
|
* GstVaapiDisplayType:
|
|
|
|
* @GST_VAAPI_DISPLAY_TYPE_ANY: Automatic detection of the display type.
|
|
|
|
* @GST_VAAPI_DISPLAY_TYPE_X11: VA/X11 display.
|
|
|
|
* @GST_VAAPI_DISPLAY_TYPE_GLX: VA/GLX display.
|
2012-07-24 07:45:25 +00:00
|
|
|
* @GST_VAAPI_DISPLAY_TYPE_WAYLAND: VA/Wayland display.
|
2012-08-01 13:44:02 +00:00
|
|
|
* @GST_VAAPI_DISPLAY_TYPE_DRM: VA/DRM display.
|
2012-07-25 07:16:02 +00:00
|
|
|
*/
|
2013-12-20 12:27:07 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
GST_VAAPI_DISPLAY_TYPE_ANY = 0,
|
|
|
|
GST_VAAPI_DISPLAY_TYPE_X11,
|
|
|
|
GST_VAAPI_DISPLAY_TYPE_GLX,
|
|
|
|
GST_VAAPI_DISPLAY_TYPE_WAYLAND,
|
|
|
|
GST_VAAPI_DISPLAY_TYPE_DRM,
|
2012-09-04 11:40:04 +00:00
|
|
|
} GstVaapiDisplayType;
|
2012-07-25 07:16:02 +00:00
|
|
|
|
|
|
|
#define GST_VAAPI_TYPE_DISPLAY_TYPE \
|
|
|
|
(gst_vaapi_display_type_get_type())
|
|
|
|
|
|
|
|
GType
|
2013-12-20 12:27:07 +00:00
|
|
|
gst_vaapi_display_type_get_type (void) G_GNUC_CONST;
|
2012-07-25 07:16:02 +00:00
|
|
|
|
2013-12-13 11:00:35 +00:00
|
|
|
gboolean
|
2013-12-20 12:27:07 +00:00
|
|
|
gst_vaapi_display_type_is_compatible (GstVaapiDisplayType type1,
|
2013-12-13 11:00:35 +00:00
|
|
|
GstVaapiDisplayType type2);
|
|
|
|
|
2012-01-12 11:46:34 +00:00
|
|
|
/**
|
|
|
|
* GstVaapiDisplayInfo:
|
|
|
|
*
|
|
|
|
* Generic class to retrieve VA display info
|
|
|
|
*/
|
2013-12-20 12:27:07 +00:00
|
|
|
struct _GstVaapiDisplayInfo
|
|
|
|
{
|
|
|
|
GstVaapiDisplay *display;
|
|
|
|
GstVaapiDisplayType display_type;
|
|
|
|
gchar *display_name;
|
|
|
|
VADisplay va_display;
|
|
|
|
gpointer native_display;
|
2012-01-12 11:46:34 +00:00
|
|
|
};
|
|
|
|
|
2012-08-28 08:55:59 +00:00
|
|
|
/**
|
|
|
|
* GstVaapiDisplayProperties:
|
|
|
|
* @GST_VAAPI_DISPLAY_PROP_RENDER_MODE: rendering mode (#GstVaapiRenderMode).
|
|
|
|
* @GST_VAAPI_DISPLAY_PROP_ROTATION: rotation angle (#GstVaapiRotation).
|
2012-08-28 11:59:50 +00:00
|
|
|
* @GST_VAAPI_DISPLAY_PROP_HUE: hue (float: [-180 ; 180], default: 0).
|
|
|
|
* @GST_VAAPI_DISPLAY_PROP_SATURATION: saturation (float: [0 ; 2], default: 1).
|
|
|
|
* @GST_VAAPI_DISPLAY_PROP_BRIGHTNESS: brightness (float: [-1 ; 1], default: 0).
|
|
|
|
* @GST_VAAPI_DISPLAY_PROP_CONTRAST: contrast (float: [0 ; 2], default: 1).
|
2012-08-28 08:55:59 +00:00
|
|
|
*/
|
|
|
|
#define GST_VAAPI_DISPLAY_PROP_RENDER_MODE "render-mode"
|
|
|
|
#define GST_VAAPI_DISPLAY_PROP_ROTATION "rotation"
|
2012-08-28 11:59:50 +00:00
|
|
|
#define GST_VAAPI_DISPLAY_PROP_HUE "hue"
|
|
|
|
#define GST_VAAPI_DISPLAY_PROP_SATURATION "saturation"
|
|
|
|
#define GST_VAAPI_DISPLAY_PROP_BRIGHTNESS "brightness"
|
|
|
|
#define GST_VAAPI_DISPLAY_PROP_CONTRAST "contrast"
|
2012-08-28 08:55:59 +00:00
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
GstVaapiDisplay *
|
2013-12-20 12:27:07 +00:00
|
|
|
gst_vaapi_display_new_with_display (VADisplay va_display);
|
2010-01-25 16:15:01 +00:00
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
GstVaapiDisplay *
|
2013-12-20 12:27:07 +00:00
|
|
|
gst_vaapi_display_ref (GstVaapiDisplay * display);
|
2010-01-25 16:15:01 +00:00
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
void
|
2013-12-20 12:27:07 +00:00
|
|
|
gst_vaapi_display_unref (GstVaapiDisplay * display);
|
2010-01-25 16:15:01 +00:00
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
void
|
2013-12-20 12:27:07 +00:00
|
|
|
gst_vaapi_display_replace (GstVaapiDisplay ** old_display_ptr,
|
|
|
|
GstVaapiDisplay * new_display);
|
2010-03-10 12:25:19 +00:00
|
|
|
|
2010-03-17 07:59:31 +00:00
|
|
|
void
|
2013-12-20 12:27:07 +00:00
|
|
|
gst_vaapi_display_lock (GstVaapiDisplay * display);
|
2010-03-17 07:59:31 +00:00
|
|
|
|
|
|
|
void
|
2013-12-20 12:27:07 +00:00
|
|
|
gst_vaapi_display_unlock (GstVaapiDisplay * display);
|
2010-03-17 07:59:31 +00:00
|
|
|
|
2010-03-26 11:35:20 +00:00
|
|
|
void
|
2013-12-20 12:27:07 +00:00
|
|
|
gst_vaapi_display_sync (GstVaapiDisplay * display);
|
2010-03-26 11:35:20 +00:00
|
|
|
|
|
|
|
void
|
2013-12-20 12:27:07 +00:00
|
|
|
gst_vaapi_display_flush (GstVaapiDisplay * display);
|
2010-03-26 11:35:20 +00:00
|
|
|
|
2012-07-25 07:16:02 +00:00
|
|
|
GstVaapiDisplayType
|
2013-12-20 12:27:07 +00:00
|
|
|
gst_vaapi_display_get_display_type (GstVaapiDisplay * display);
|
2012-07-25 07:16:02 +00:00
|
|
|
|
2014-07-25 09:24:39 +00:00
|
|
|
const gchar *
|
|
|
|
gst_vaapi_display_get_display_name (GstVaapiDisplay * display);
|
|
|
|
|
2010-01-25 16:15:01 +00:00
|
|
|
VADisplay
|
2013-12-20 12:27:07 +00:00
|
|
|
gst_vaapi_display_get_display (GstVaapiDisplay * display);
|
2010-01-25 16:15:01 +00:00
|
|
|
|
2010-03-22 08:44:38 +00:00
|
|
|
guint
|
2013-12-20 12:27:07 +00:00
|
|
|
gst_vaapi_display_get_width (GstVaapiDisplay * display);
|
2010-03-22 08:44:38 +00:00
|
|
|
|
|
|
|
guint
|
2013-12-20 12:27:07 +00:00
|
|
|
gst_vaapi_display_get_height (GstVaapiDisplay * display);
|
2010-03-22 08:44:38 +00:00
|
|
|
|
|
|
|
void
|
2013-12-20 12:27:07 +00:00
|
|
|
gst_vaapi_display_get_size (GstVaapiDisplay * display, guint * pwidth,
|
|
|
|
guint * pheight);
|
2010-03-22 08:44:38 +00:00
|
|
|
|
2010-03-22 09:32:01 +00:00
|
|
|
void
|
2013-12-20 12:27:07 +00:00
|
|
|
gst_vaapi_display_get_pixel_aspect_ratio (GstVaapiDisplay * display,
|
|
|
|
guint * par_n, guint * par_d);
|
2010-03-22 09:32:01 +00:00
|
|
|
|
2013-12-20 13:01:45 +00:00
|
|
|
gboolean
|
|
|
|
gst_vaapi_display_has_video_processing (GstVaapiDisplay * display);
|
|
|
|
|
2013-12-20 14:31:14 +00:00
|
|
|
GArray *
|
|
|
|
gst_vaapi_display_get_decode_profiles (GstVaapiDisplay * display);
|
2010-04-20 13:36:04 +00:00
|
|
|
|
|
|
|
gboolean
|
2013-12-20 12:27:07 +00:00
|
|
|
gst_vaapi_display_has_decoder (GstVaapiDisplay * display,
|
|
|
|
GstVaapiProfile profile, GstVaapiEntrypoint entrypoint);
|
2010-04-20 13:36:04 +00:00
|
|
|
|
2013-12-20 14:31:14 +00:00
|
|
|
GArray *
|
|
|
|
gst_vaapi_display_get_encode_profiles (GstVaapiDisplay * display);
|
2010-04-20 13:36:04 +00:00
|
|
|
|
2010-03-04 17:41:34 +00:00
|
|
|
gboolean
|
2013-12-20 12:27:07 +00:00
|
|
|
gst_vaapi_display_has_encoder (GstVaapiDisplay * display,
|
|
|
|
GstVaapiProfile profile, GstVaapiEntrypoint entrypoint);
|
2010-03-04 17:41:34 +00:00
|
|
|
|
2013-12-20 14:15:05 +00:00
|
|
|
GArray *
|
|
|
|
gst_vaapi_display_get_image_formats (GstVaapiDisplay * display);
|
2010-03-10 10:43:31 +00:00
|
|
|
|
2010-03-04 17:41:34 +00:00
|
|
|
gboolean
|
2013-12-20 12:27:07 +00:00
|
|
|
gst_vaapi_display_has_image_format (GstVaapiDisplay * display,
|
|
|
|
GstVideoFormat format);
|
2010-03-04 17:41:34 +00:00
|
|
|
|
2013-12-20 14:15:05 +00:00
|
|
|
GArray *
|
|
|
|
gst_vaapi_display_get_subpicture_formats (GstVaapiDisplay * display);
|
2010-03-10 10:43:31 +00:00
|
|
|
|
2010-03-04 17:41:34 +00:00
|
|
|
gboolean
|
2013-12-20 12:27:07 +00:00
|
|
|
gst_vaapi_display_has_subpicture_format (GstVaapiDisplay * display,
|
|
|
|
GstVideoFormat format, guint * flags_ptr);
|
2010-03-04 17:41:34 +00:00
|
|
|
|
2012-08-27 14:02:49 +00:00
|
|
|
gboolean
|
2013-12-20 12:27:07 +00:00
|
|
|
gst_vaapi_display_has_property (GstVaapiDisplay * display, const gchar * name);
|
2012-08-27 14:02:49 +00:00
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
gboolean
|
2013-12-20 12:27:07 +00:00
|
|
|
gst_vaapi_display_get_property (GstVaapiDisplay * display, const gchar * name,
|
|
|
|
GValue * out_value);
|
2013-05-07 09:39:34 +00:00
|
|
|
|
|
|
|
gboolean
|
2013-12-20 12:27:07 +00:00
|
|
|
gst_vaapi_display_set_property (GstVaapiDisplay * display, const gchar * name,
|
|
|
|
const GValue * value);
|
2013-05-07 09:39:34 +00:00
|
|
|
|
2012-08-27 15:11:37 +00:00
|
|
|
gboolean
|
2013-12-20 12:27:07 +00:00
|
|
|
gst_vaapi_display_get_render_mode (GstVaapiDisplay * display,
|
|
|
|
GstVaapiRenderMode * pmode);
|
2012-08-27 15:11:37 +00:00
|
|
|
|
|
|
|
gboolean
|
2013-12-20 12:27:07 +00:00
|
|
|
gst_vaapi_display_set_render_mode (GstVaapiDisplay * display,
|
|
|
|
GstVaapiRenderMode mode);
|
2012-08-27 15:11:37 +00:00
|
|
|
|
2012-08-22 06:18:11 +00:00
|
|
|
GstVaapiRotation
|
2013-12-20 12:27:07 +00:00
|
|
|
gst_vaapi_display_get_rotation (GstVaapiDisplay * display);
|
2012-08-22 06:18:11 +00:00
|
|
|
|
|
|
|
gboolean
|
2013-12-20 12:27:07 +00:00
|
|
|
gst_vaapi_display_set_rotation (GstVaapiDisplay * display,
|
|
|
|
GstVaapiRotation rotation);
|
2012-08-22 06:18:11 +00:00
|
|
|
|
2014-05-20 09:36:40 +00:00
|
|
|
const gchar *
|
|
|
|
gst_vaapi_display_get_vendor_string (GstVaapiDisplay * display);
|
|
|
|
|
2010-01-25 16:15:01 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* GST_VAAPI_DISPLAY_H */
|