2010-04-01 09:47:59 +00:00
|
|
|
/*
|
|
|
|
* gstvaapidisplay_priv.h - Base VA display (private definitions)
|
|
|
|
*
|
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) 2011-2013 Intel Corporation
|
2013-11-22 04:57:18 +00:00
|
|
|
* Author: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
|
2010-04-01 09:47:59 +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-04-01 09:47:59 +00:00
|
|
|
*
|
2010-05-03 07:07:27 +00:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
2010-04-01 09:47:59 +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-04-01 09:47:59 +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-04-01 09:47:59 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GST_VAAPI_DISPLAY_PRIV_H
|
|
|
|
#define GST_VAAPI_DISPLAY_PRIV_H
|
|
|
|
|
|
|
|
#include <gst/vaapi/gstvaapidisplay.h>
|
2012-01-12 14:03:04 +00:00
|
|
|
#include <gst/vaapi/gstvaapidisplaycache.h>
|
2013-05-07 09:39:34 +00:00
|
|
|
#include "gstvaapiminiobject.h"
|
2010-04-01 09:47:59 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
#define GST_VAAPI_DISPLAY_CAST(display) \
|
|
|
|
((GstVaapiDisplay *)(display))
|
2010-04-01 09:47:59 +00:00
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
#define GST_VAAPI_DISPLAY_GET_PRIVATE(display) \
|
|
|
|
(&GST_VAAPI_DISPLAY_CAST(display)->priv)
|
|
|
|
|
|
|
|
#define GST_VAAPI_DISPLAY_CLASS(klass) \
|
|
|
|
((GstVaapiDisplayClass *)(klass))
|
|
|
|
|
|
|
|
#define GST_VAAPI_IS_DISPLAY_CLASS(klass) \
|
|
|
|
((klass) != NULL)
|
|
|
|
|
|
|
|
#define GST_VAAPI_DISPLAY_GET_CLASS(obj) \
|
|
|
|
GST_VAAPI_DISPLAY_CLASS(GST_VAAPI_MINI_OBJECT_GET_CLASS(obj))
|
|
|
|
|
|
|
|
typedef struct _GstVaapiDisplayPrivate GstVaapiDisplayPrivate;
|
|
|
|
typedef struct _GstVaapiDisplayClass GstVaapiDisplayClass;
|
|
|
|
typedef enum _GstVaapiDisplayInitType GstVaapiDisplayInitType;
|
|
|
|
|
2013-12-20 12:27:07 +00:00
|
|
|
typedef void (*GstVaapiDisplayInitFunc) (GstVaapiDisplay * display);
|
|
|
|
typedef gboolean (*GstVaapiDisplayBindFunc) (GstVaapiDisplay * display,
|
2013-05-07 09:39:34 +00:00
|
|
|
gpointer native_dpy);
|
2013-12-20 12:27:07 +00:00
|
|
|
typedef gboolean (*GstVaapiDisplayOpenFunc) (GstVaapiDisplay * display,
|
|
|
|
const gchar * name);
|
|
|
|
typedef void (*GstVaapiDisplayCloseFunc) (GstVaapiDisplay * display);
|
|
|
|
typedef void (*GstVaapiDisplayLockFunc) (GstVaapiDisplay * display);
|
|
|
|
typedef void (*GstVaapiDisplayUnlockFunc) (GstVaapiDisplay * display);
|
|
|
|
typedef void (*GstVaapiDisplaySyncFunc) (GstVaapiDisplay * display);
|
|
|
|
typedef void (*GstVaapiDisplayFlushFunc) (GstVaapiDisplay * display);
|
|
|
|
typedef gboolean (*GstVaapiDisplayGetInfoFunc) (GstVaapiDisplay * display,
|
|
|
|
GstVaapiDisplayInfo * info);
|
|
|
|
typedef void (*GstVaapiDisplayGetSizeFunc) (GstVaapiDisplay * display,
|
|
|
|
guint * pwidth, guint * pheight);
|
|
|
|
typedef void (*GstVaapiDisplayGetSizeMFunc) (GstVaapiDisplay * display,
|
|
|
|
guint * pwidth, guint * pheight);
|
2010-04-01 09:47:59 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GST_VAAPI_DISPLAY_VADISPLAY:
|
|
|
|
* @display_: a #GstVaapiDisplay
|
|
|
|
*
|
|
|
|
* Macro that evaluates to the #VADisplay of @display.
|
|
|
|
* This is an internal macro that does not do any run-time type check.
|
|
|
|
*/
|
2010-04-01 13:41:24 +00:00
|
|
|
#undef GST_VAAPI_DISPLAY_VADISPLAY
|
2010-04-01 09:47:59 +00:00
|
|
|
#define GST_VAAPI_DISPLAY_VADISPLAY(display_) \
|
2013-05-07 09:39:34 +00:00
|
|
|
GST_VAAPI_DISPLAY_GET_PRIVATE(display_)->display
|
2010-04-01 09:47:59 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GST_VAAPI_DISPLAY_LOCK:
|
|
|
|
* @display: a #GstVaapiDisplay
|
|
|
|
*
|
|
|
|
* Locks @display
|
|
|
|
*/
|
2010-04-01 13:41:24 +00:00
|
|
|
#undef GST_VAAPI_DISPLAY_LOCK
|
2010-04-01 09:47:59 +00:00
|
|
|
#define GST_VAAPI_DISPLAY_LOCK(display) \
|
2010-04-01 13:41:24 +00:00
|
|
|
gst_vaapi_display_lock(GST_VAAPI_DISPLAY_CAST(display))
|
2010-04-01 09:47:59 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GST_VAAPI_DISPLAY_UNLOCK:
|
|
|
|
* @display: a #GstVaapiDisplay
|
|
|
|
*
|
|
|
|
* Unlocks @display
|
|
|
|
*/
|
2010-04-01 13:41:24 +00:00
|
|
|
#undef GST_VAAPI_DISPLAY_UNLOCK
|
2010-04-01 09:47:59 +00:00
|
|
|
#define GST_VAAPI_DISPLAY_UNLOCK(display) \
|
2010-04-01 13:41:24 +00:00
|
|
|
gst_vaapi_display_unlock(GST_VAAPI_DISPLAY_CAST(display))
|
2010-04-01 09:47:59 +00:00
|
|
|
|
2013-05-27 15:18:40 +00:00
|
|
|
/**
|
|
|
|
* GST_VAAPI_DISPLAY_TYPE:
|
|
|
|
* @display: a #GstVaapiDisplay
|
|
|
|
*
|
|
|
|
* Returns the @display type
|
|
|
|
*/
|
|
|
|
#undef GST_VAAPI_DISPLAY_TYPE
|
|
|
|
#define GST_VAAPI_DISPLAY_TYPE(display) \
|
|
|
|
GST_VAAPI_DISPLAY_GET_PRIVATE(display)->display_type
|
|
|
|
|
2013-05-27 11:17:31 +00:00
|
|
|
/**
|
|
|
|
* GST_VAAPI_DISPLAY_TYPES:
|
|
|
|
* @display: a #GstVaapiDisplay
|
|
|
|
*
|
|
|
|
* Returns compatible @display types as a set of flags
|
|
|
|
*/
|
|
|
|
#undef GST_VAAPI_DISPLAY_TYPES
|
|
|
|
#define GST_VAAPI_DISPLAY_TYPES(display) \
|
|
|
|
gst_vaapi_display_get_display_types(GST_VAAPI_DISPLAY_CAST(display))
|
|
|
|
|
2013-07-23 13:52:45 +00:00
|
|
|
/**
|
|
|
|
* GST_VAAPI_DISPLAY_HAS_VPP:
|
|
|
|
* @display: a @GstVaapiDisplay
|
|
|
|
*
|
|
|
|
* Returns whether the @display supports video processing (VA/VPP)
|
|
|
|
*/
|
|
|
|
#undef GST_VAAPI_DISPLAY_HAS_VPP
|
|
|
|
#define GST_VAAPI_DISPLAY_HAS_VPP(display) \
|
2013-12-20 13:01:45 +00:00
|
|
|
gst_vaapi_display_has_video_processing(GST_VAAPI_DISPLAY_CAST(display))
|
2013-07-23 13:52:45 +00:00
|
|
|
|
2014-03-07 13:50:14 +00:00
|
|
|
/**
|
|
|
|
* GST_VAAPI_DISPLAY_CACHE:
|
|
|
|
* @display: a @GstVaapiDisplay
|
|
|
|
*
|
|
|
|
* Returns the #GstVaapiDisplayCache attached to the supplied @display object.
|
|
|
|
*/
|
|
|
|
#undef GST_VAAPI_DISPLAY_GET_CACHE
|
|
|
|
#define GST_VAAPI_DISPLAY_GET_CACHE(display) \
|
|
|
|
(GST_VAAPI_DISPLAY_GET_PRIVATE (display)->cache)
|
|
|
|
|
2013-12-20 12:27:07 +00:00
|
|
|
struct _GstVaapiDisplayPrivate
|
|
|
|
{
|
|
|
|
GstVaapiDisplay *parent;
|
2014-03-07 13:50:14 +00:00
|
|
|
GstVaapiDisplayCache *cache;
|
2013-12-20 12:27:07 +00:00
|
|
|
GRecMutex mutex;
|
|
|
|
GstVaapiDisplayType display_type;
|
2014-07-25 09:24:39 +00:00
|
|
|
gchar *display_name;
|
2013-12-20 12:27:07 +00:00
|
|
|
VADisplay display;
|
|
|
|
guint width;
|
|
|
|
guint height;
|
|
|
|
guint width_mm;
|
|
|
|
guint height_mm;
|
|
|
|
guint par_n;
|
|
|
|
guint par_d;
|
|
|
|
GArray *decoders;
|
|
|
|
GArray *encoders;
|
|
|
|
GArray *image_formats;
|
|
|
|
GArray *subpicture_formats;
|
|
|
|
GArray *properties;
|
2014-05-20 09:36:40 +00:00
|
|
|
gchar *vendor_string;
|
2013-12-20 12:27:07 +00:00
|
|
|
guint use_foreign_display:1;
|
|
|
|
guint has_vpp:1;
|
2013-12-20 13:01:45 +00:00
|
|
|
guint has_profiles:1;
|
2010-04-01 09:47:59 +00:00
|
|
|
};
|
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
/**
|
|
|
|
* GstVaapiDisplay:
|
|
|
|
*
|
|
|
|
* Base class for VA displays.
|
|
|
|
*/
|
2013-12-20 12:27:07 +00:00
|
|
|
struct _GstVaapiDisplay
|
|
|
|
{
|
|
|
|
/*< private >*/
|
|
|
|
GstVaapiMiniObject parent_instance;
|
2013-05-07 09:39:34 +00:00
|
|
|
|
2013-12-20 12:27:07 +00:00
|
|
|
GstVaapiDisplayPrivate priv;
|
2013-05-07 09:39:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GstVaapiDisplayClass:
|
|
|
|
* @open_display: virtual function to open a display
|
|
|
|
* @close_display: virtual function to close a display
|
|
|
|
* @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
|
|
|
|
* @get_display: virtual function to retrieve the #GstVaapiDisplayInfo
|
|
|
|
* @get_size: virtual function to retrieve the display dimensions, in pixels
|
|
|
|
* @get_size_mm: virtual function to retrieve the display dimensions, in millimeters
|
|
|
|
*
|
|
|
|
* Base class for VA displays.
|
|
|
|
*/
|
2013-12-20 12:27:07 +00:00
|
|
|
struct _GstVaapiDisplayClass
|
|
|
|
{
|
|
|
|
/*< private >*/
|
|
|
|
GstVaapiMiniObjectClass parent_class;
|
|
|
|
|
|
|
|
/*< protected >*/
|
|
|
|
guint display_types;
|
|
|
|
|
|
|
|
/*< public >*/
|
|
|
|
GstVaapiDisplayInitFunc init;
|
|
|
|
GstVaapiDisplayBindFunc bind_display;
|
|
|
|
GstVaapiDisplayOpenFunc open_display;
|
|
|
|
GstVaapiDisplayCloseFunc close_display;
|
|
|
|
GstVaapiDisplayLockFunc lock;
|
|
|
|
GstVaapiDisplayUnlockFunc unlock;
|
|
|
|
GstVaapiDisplaySyncFunc sync;
|
|
|
|
GstVaapiDisplayFlushFunc flush;
|
|
|
|
GstVaapiDisplayGetInfoFunc get_display;
|
|
|
|
GstVaapiDisplayGetSizeFunc get_size;
|
|
|
|
GstVaapiDisplayGetSizeMFunc get_size_mm;
|
2013-05-07 09:39:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Initialization types */
|
2013-12-20 12:27:07 +00:00
|
|
|
enum _GstVaapiDisplayInitType
|
|
|
|
{
|
|
|
|
GST_VAAPI_DISPLAY_INIT_FROM_DISPLAY_NAME = 1,
|
|
|
|
GST_VAAPI_DISPLAY_INIT_FROM_NATIVE_DISPLAY,
|
|
|
|
GST_VAAPI_DISPLAY_INIT_FROM_VA_DISPLAY
|
2013-05-07 09:39:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
void
|
2013-12-20 12:27:07 +00:00
|
|
|
gst_vaapi_display_class_init (GstVaapiDisplayClass * klass);
|
2013-05-07 09:39:34 +00:00
|
|
|
|
|
|
|
GstVaapiDisplay *
|
2013-12-20 12:27:07 +00:00
|
|
|
gst_vaapi_display_new (const GstVaapiDisplayClass * klass,
|
2013-05-07 09:39:34 +00:00
|
|
|
GstVaapiDisplayInitType init_type, gpointer init_value);
|
|
|
|
|
2013-05-27 11:17:31 +00:00
|
|
|
static inline guint
|
2013-12-20 12:27:07 +00:00
|
|
|
gst_vaapi_display_get_display_types (GstVaapiDisplay * display)
|
2013-05-27 11:17:31 +00:00
|
|
|
{
|
2013-12-20 12:27:07 +00:00
|
|
|
const GstVaapiDisplayClass *const dpy_class =
|
|
|
|
GST_VAAPI_DISPLAY_GET_CLASS (display);
|
2013-05-27 11:17:31 +00:00
|
|
|
|
2013-12-20 12:27:07 +00:00
|
|
|
return dpy_class->display_types;
|
2013-05-27 11:17:31 +00:00
|
|
|
}
|
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
/* Inline reference counting for core libgstvaapi library */
|
2014-01-23 09:20:40 +00:00
|
|
|
#ifdef IN_LIBGSTVAAPI_CORE
|
2013-05-07 09:39:34 +00:00
|
|
|
#define gst_vaapi_display_ref_internal(display) \
|
|
|
|
((gpointer)gst_vaapi_mini_object_ref(GST_VAAPI_MINI_OBJECT(display)))
|
|
|
|
|
|
|
|
#define gst_vaapi_display_unref_internal(display) \
|
|
|
|
gst_vaapi_mini_object_unref(GST_VAAPI_MINI_OBJECT(display))
|
|
|
|
|
|
|
|
#define gst_vaapi_display_replace_internal(old_display_ptr, new_display) \
|
|
|
|
gst_vaapi_mini_object_replace((GstVaapiMiniObject **)(old_display_ptr), \
|
|
|
|
GST_VAAPI_MINI_OBJECT(new_display))
|
|
|
|
|
|
|
|
#undef gst_vaapi_display_ref
|
|
|
|
#define gst_vaapi_display_ref(display) \
|
|
|
|
gst_vaapi_display_ref_internal((display))
|
|
|
|
|
|
|
|
#undef gst_vaapi_display_unref
|
|
|
|
#define gst_vaapi_display_unref(display) \
|
|
|
|
gst_vaapi_display_unref_internal((display))
|
|
|
|
|
|
|
|
#undef gst_vaapi_display_replace
|
|
|
|
#define gst_vaapi_display_replace(old_display_ptr, new_display) \
|
|
|
|
gst_vaapi_display_replace_internal((old_display_ptr), (new_display))
|
|
|
|
#endif
|
|
|
|
|
2010-04-01 09:47:59 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* GST_VAAPI_DISPLAY_PRIV_H */
|