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-01-29 13:14:45 +00:00
|
|
|
* Copyright (C) 2011-2013 Intel Corporation
|
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-03-04 17:41:34 +00:00
|
|
|
#include <gst/vaapi/gstvaapiimageformat.h>
|
2010-04-20 13:36:04 +00:00
|
|
|
#include <gst/vaapi/gstvaapiprofile.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
|
|
|
|
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
|
|
|
*/
|
2012-09-04 11:40:04 +00:00
|
|
|
typedef enum {
|
2012-07-25 07:16:02 +00:00
|
|
|
GST_VAAPI_DISPLAY_TYPE_ANY = 0,
|
|
|
|
GST_VAAPI_DISPLAY_TYPE_X11,
|
|
|
|
GST_VAAPI_DISPLAY_TYPE_GLX,
|
2012-07-24 07:45:25 +00:00
|
|
|
GST_VAAPI_DISPLAY_TYPE_WAYLAND,
|
2012-08-01 13:44:02 +00:00
|
|
|
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
|
|
|
|
gst_vaapi_display_type_get_type(void) G_GNUC_CONST;
|
|
|
|
|
2012-01-12 11:46:34 +00:00
|
|
|
/**
|
|
|
|
* GstVaapiDisplayInfo:
|
|
|
|
*
|
|
|
|
* Generic class to retrieve VA display info
|
|
|
|
*/
|
|
|
|
struct _GstVaapiDisplayInfo {
|
|
|
|
GstVaapiDisplay *display;
|
2012-07-25 07:16:02 +00:00
|
|
|
GstVaapiDisplayType display_type;
|
2012-01-12 11:46:34 +00:00
|
|
|
gchar *display_name;
|
|
|
|
VADisplay va_display;
|
|
|
|
gpointer native_display;
|
|
|
|
};
|
|
|
|
|
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 *
|
|
|
|
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 *
|
|
|
|
gst_vaapi_display_ref(GstVaapiDisplay *display);
|
2010-01-25 16:15:01 +00:00
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
void
|
|
|
|
gst_vaapi_display_unref(GstVaapiDisplay *display);
|
2010-01-25 16:15:01 +00:00
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
void
|
|
|
|
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
|
|
|
|
gst_vaapi_display_lock(GstVaapiDisplay *display);
|
|
|
|
|
|
|
|
void
|
|
|
|
gst_vaapi_display_unlock(GstVaapiDisplay *display);
|
|
|
|
|
2010-03-26 11:35:20 +00:00
|
|
|
void
|
|
|
|
gst_vaapi_display_sync(GstVaapiDisplay *display);
|
|
|
|
|
|
|
|
void
|
|
|
|
gst_vaapi_display_flush(GstVaapiDisplay *display);
|
|
|
|
|
2012-07-25 07:16:02 +00:00
|
|
|
GstVaapiDisplayType
|
|
|
|
gst_vaapi_display_get_display_type(GstVaapiDisplay *display);
|
|
|
|
|
2010-01-25 16:15:01 +00:00
|
|
|
VADisplay
|
|
|
|
gst_vaapi_display_get_display(GstVaapiDisplay *display);
|
|
|
|
|
2010-03-22 08:44:38 +00:00
|
|
|
guint
|
|
|
|
gst_vaapi_display_get_width(GstVaapiDisplay *display);
|
|
|
|
|
|
|
|
guint
|
|
|
|
gst_vaapi_display_get_height(GstVaapiDisplay *display);
|
|
|
|
|
|
|
|
void
|
|
|
|
gst_vaapi_display_get_size(GstVaapiDisplay *display, guint *pwidth, guint *pheight);
|
|
|
|
|
2010-03-22 09:32:01 +00:00
|
|
|
void
|
|
|
|
gst_vaapi_display_get_pixel_aspect_ratio(
|
|
|
|
GstVaapiDisplay *display,
|
|
|
|
guint *par_n,
|
|
|
|
guint *par_d
|
|
|
|
);
|
|
|
|
|
2010-04-20 13:36:04 +00:00
|
|
|
GstCaps *
|
|
|
|
gst_vaapi_display_get_decode_caps(GstVaapiDisplay *display);
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
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
|
|
|
);
|
|
|
|
|
|
|
|
GstCaps *
|
|
|
|
gst_vaapi_display_get_encode_caps(GstVaapiDisplay *display);
|
|
|
|
|
2010-03-04 17:41:34 +00:00
|
|
|
gboolean
|
2010-04-20 13:36:04 +00:00
|
|
|
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
|
|
|
|
2010-03-10 10:43:31 +00:00
|
|
|
GstCaps *
|
|
|
|
gst_vaapi_display_get_image_caps(GstVaapiDisplay *display);
|
|
|
|
|
2010-03-04 17:41:34 +00:00
|
|
|
gboolean
|
|
|
|
gst_vaapi_display_has_image_format(
|
|
|
|
GstVaapiDisplay *display,
|
|
|
|
GstVaapiImageFormat format
|
|
|
|
);
|
|
|
|
|
2010-03-10 10:43:31 +00:00
|
|
|
GstCaps *
|
|
|
|
gst_vaapi_display_get_subpicture_caps(GstVaapiDisplay *display);
|
|
|
|
|
2010-03-04 17:41:34 +00:00
|
|
|
gboolean
|
|
|
|
gst_vaapi_display_has_subpicture_format(
|
|
|
|
GstVaapiDisplay *display,
|
2012-05-15 08:24:08 +00:00
|
|
|
GstVaapiImageFormat format,
|
|
|
|
guint *flags_ptr
|
2010-03-04 17:41:34 +00:00
|
|
|
);
|
|
|
|
|
2012-08-27 14:02:49 +00:00
|
|
|
gboolean
|
|
|
|
gst_vaapi_display_has_property(GstVaapiDisplay *display, const gchar *name);
|
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
gboolean
|
|
|
|
gst_vaapi_display_get_property(GstVaapiDisplay *display, const gchar *name,
|
|
|
|
GValue *out_value);
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
gst_vaapi_display_set_property(GstVaapiDisplay *display, const gchar *name,
|
|
|
|
const GValue *value);
|
|
|
|
|
2012-08-27 15:11:37 +00:00
|
|
|
gboolean
|
|
|
|
gst_vaapi_display_get_render_mode(
|
|
|
|
GstVaapiDisplay *display,
|
|
|
|
GstVaapiRenderMode *pmode
|
|
|
|
);
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
gst_vaapi_display_set_render_mode(
|
|
|
|
GstVaapiDisplay *display,
|
|
|
|
GstVaapiRenderMode mode
|
|
|
|
);
|
|
|
|
|
2012-08-22 06:18:11 +00:00
|
|
|
GstVaapiRotation
|
|
|
|
gst_vaapi_display_get_rotation(GstVaapiDisplay *display);
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
gst_vaapi_display_set_rotation(
|
|
|
|
GstVaapiDisplay *display,
|
|
|
|
GstVaapiRotation rotation
|
|
|
|
);
|
|
|
|
|
2010-01-25 16:15:01 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* GST_VAAPI_DISPLAY_H */
|