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
|
2012-01-16 10:03:51 +00:00
|
|
|
* Copyright (C) 2011-2012 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
|
|
|
|
|
|
|
|
#define GST_VAAPI_TYPE_DISPLAY \
|
|
|
|
(gst_vaapi_display_get_type())
|
|
|
|
|
|
|
|
#define GST_VAAPI_DISPLAY(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST((obj), \
|
|
|
|
GST_VAAPI_TYPE_DISPLAY, \
|
|
|
|
GstVaapiDisplay))
|
|
|
|
|
|
|
|
#define GST_VAAPI_DISPLAY_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_CLASS_CAST((klass), \
|
|
|
|
GST_VAAPI_TYPE_DISPLAY, \
|
|
|
|
GstVaapiDisplayClass))
|
|
|
|
|
|
|
|
#define GST_VAAPI_IS_DISPLAY(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE((obj), GST_VAAPI_TYPE_DISPLAY))
|
|
|
|
|
|
|
|
#define GST_VAAPI_IS_DISPLAY_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_CLASS_TYPE((klass), GST_VAAPI_TYPE_DISPLAY))
|
|
|
|
|
|
|
|
#define GST_VAAPI_DISPLAY_GET_CLASS(obj) \
|
|
|
|
(G_TYPE_INSTANCE_GET_CLASS((obj), \
|
|
|
|
GST_VAAPI_TYPE_DISPLAY, \
|
2010-03-11 15:01:00 +00:00
|
|
|
GstVaapiDisplayClass))
|
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;
|
|
|
|
typedef struct _GstVaapiDisplayPrivate GstVaapiDisplayPrivate;
|
|
|
|
typedef struct _GstVaapiDisplayClass GstVaapiDisplayClass;
|
|
|
|
|
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
|
|
|
|
2010-03-19 15:45:21 +00:00
|
|
|
/**
|
|
|
|
* GstVaapiDisplay:
|
|
|
|
*
|
|
|
|
* Base class for VA displays.
|
|
|
|
*/
|
2010-01-25 16:15:01 +00:00
|
|
|
struct _GstVaapiDisplay {
|
|
|
|
/*< private >*/
|
|
|
|
GObject parent_instance;
|
|
|
|
|
|
|
|
GstVaapiDisplayPrivate *priv;
|
|
|
|
};
|
|
|
|
|
2010-03-19 15:45:21 +00:00
|
|
|
/**
|
|
|
|
* GstVaapiDisplayClass:
|
|
|
|
* @open_display: virtual function to open a display
|
|
|
|
* @close_display: virtual function to close a display
|
2010-03-26 11:35:20 +00:00
|
|
|
* @lock: (optional) virtual function to lock a display
|
|
|
|
* @unlock: (optional) virtual function to unlock a display
|
|
|
|
* @sync: (optional) virtual function to sync a display
|
|
|
|
* @flush: (optional) virtual function to flush pending requests of a display
|
2012-01-12 14:03:04 +00:00
|
|
|
* @get_display: virtual function to retrieve the #GstVaapiDisplayInfo
|
2010-03-22 09:32:01 +00:00
|
|
|
* @get_size: virtual function to retrieve the display dimensions, in pixels
|
|
|
|
* @get_size_mm: virtual function to retrieve the display dimensions, in millimeters
|
2010-03-19 15:45:21 +00:00
|
|
|
*
|
|
|
|
* Base class for VA displays.
|
|
|
|
*/
|
2010-01-25 16:15:01 +00:00
|
|
|
struct _GstVaapiDisplayClass {
|
|
|
|
/*< private >*/
|
|
|
|
GObjectClass parent_class;
|
2010-03-11 15:01:00 +00:00
|
|
|
|
2010-03-21 08:45:09 +00:00
|
|
|
/*< public >*/
|
2010-03-17 07:59:31 +00:00
|
|
|
gboolean (*open_display) (GstVaapiDisplay *display);
|
|
|
|
void (*close_display) (GstVaapiDisplay *display);
|
2010-03-26 11:02:12 +00:00
|
|
|
void (*lock) (GstVaapiDisplay *display);
|
|
|
|
void (*unlock) (GstVaapiDisplay *display);
|
2010-03-26 11:35:20 +00:00
|
|
|
void (*sync) (GstVaapiDisplay *display);
|
|
|
|
void (*flush) (GstVaapiDisplay *display);
|
2012-01-12 14:03:04 +00:00
|
|
|
gboolean (*get_display) (GstVaapiDisplay *display,
|
|
|
|
GstVaapiDisplayInfo *info);
|
2010-03-22 09:32:01 +00:00
|
|
|
void (*get_size) (GstVaapiDisplay *display,
|
|
|
|
guint *pwidth, guint *pheight);
|
|
|
|
void (*get_size_mm) (GstVaapiDisplay *display,
|
|
|
|
guint *pwidth, guint *pheight);
|
2010-01-25 16:15:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
GType
|
2012-06-29 06:19:51 +00:00
|
|
|
gst_vaapi_display_get_type(void) G_GNUC_CONST;
|
2010-01-25 16:15:01 +00:00
|
|
|
|
2010-03-10 12:25:19 +00:00
|
|
|
GstVaapiDisplay *
|
|
|
|
gst_vaapi_display_new_with_display(VADisplay va_display);
|
|
|
|
|
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,
|
|
|
|
GstVaapiImageFormat format
|
|
|
|
);
|
|
|
|
|
2012-08-27 14:02:49 +00:00
|
|
|
gboolean
|
|
|
|
gst_vaapi_display_has_property(GstVaapiDisplay *display, const gchar *name);
|
|
|
|
|
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 */
|