2010-03-24 08:32:12 +00:00
|
|
|
/*
|
|
|
|
* gstvaapiobject_priv.h - Base VA object (private definitions)
|
|
|
|
*
|
2012-01-16 09:41:10 +00:00
|
|
|
* Copyright (C) 2010-2011 Splitted-Desktop Systems
|
2010-03-24 08:32:12 +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-24 08:32:12 +00:00
|
|
|
*
|
2010-05-03 07:07:27 +00:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
2010-03-24 08:32:12 +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-24 08:32:12 +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-24 08:32:12 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GST_VAAPI_OBJECT_PRIV_H
|
|
|
|
#define GST_VAAPI_OBJECT_PRIV_H
|
|
|
|
|
|
|
|
#include <gst/vaapi/gstvaapiobject.h>
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
#define GST_VAAPI_OBJECT_GET_PRIVATE(obj) \
|
|
|
|
(G_TYPE_INSTANCE_GET_PRIVATE((obj), \
|
|
|
|
GST_VAAPI_TYPE_OBJECT, \
|
|
|
|
GstVaapiObjectPrivate))
|
|
|
|
|
2010-03-24 13:19:58 +00:00
|
|
|
#define GST_VAAPI_OBJECT_CAST(object) ((GstVaapiObject *)(object))
|
|
|
|
|
2010-03-24 08:32:12 +00:00
|
|
|
/**
|
2010-03-24 17:40:19 +00:00
|
|
|
* GST_VAAPI_OBJECT_DISPLAY:
|
2010-03-24 08:32:12 +00:00
|
|
|
* @object: a #GstVaapiObject
|
|
|
|
*
|
2010-03-24 13:19:58 +00:00
|
|
|
* Macro that evaluates to the #GstVaapiDisplay the @object is bound to.
|
|
|
|
* This is an internal macro that does not do any run-time type check.
|
2010-03-24 08:32:12 +00:00
|
|
|
*/
|
2010-03-24 17:40:19 +00:00
|
|
|
#define GST_VAAPI_OBJECT_DISPLAY(object) \
|
2010-03-24 13:19:58 +00:00
|
|
|
GST_VAAPI_OBJECT_CAST(object)->priv->display
|
|
|
|
|
2010-04-01 13:41:24 +00:00
|
|
|
/**
|
|
|
|
* GST_VAAPI_OBJECT_ID:
|
|
|
|
* @object: a #GstVaapiObject
|
|
|
|
*
|
|
|
|
* Macro that evaluates to the #GstVaapiID contained in @object.
|
|
|
|
* This is an internal macro that does not do any run-time type checks.
|
|
|
|
*/
|
|
|
|
#define GST_VAAPI_OBJECT_ID(object) \
|
|
|
|
GST_VAAPI_OBJECT_CAST(object)->priv->id
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GST_VAAPI_OBJECT_DISPLAY_X11:
|
|
|
|
* @object: a #GstVaapiObject
|
|
|
|
*
|
|
|
|
* Macro that evaluates to the #GstVaapiDisplayX11 the @object is bound to.
|
|
|
|
* This is an internal macro that does not do any run-time type check
|
|
|
|
* and requires #include "gstvaapidisplay_x11_priv.h"
|
|
|
|
*/
|
|
|
|
#define GST_VAAPI_OBJECT_DISPLAY_X11(object) \
|
|
|
|
GST_VAAPI_DISPLAY_X11_CAST(GST_VAAPI_OBJECT_DISPLAY(object))
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GST_VAAPI_OBJECT_DISPLAY_GLX:
|
|
|
|
* @object: a #GstVaapiObject
|
|
|
|
*
|
|
|
|
* Macro that evaluates to the #GstVaapiDisplayGLX the @object is bound to.
|
|
|
|
* This is an internal macro that does not do any run-time type check
|
|
|
|
* and requires #include "gstvaapidisplay_glx_priv.h".
|
|
|
|
*/
|
|
|
|
#define GST_VAAPI_OBJECT_DISPLAY_GLX(object) \
|
|
|
|
GST_VAAPI_DISPLAY_GLX_CAST(GST_VAAPI_OBJECT_DISPLAY(object))
|
|
|
|
|
2010-03-25 09:37:40 +00:00
|
|
|
/**
|
|
|
|
* GST_VAAPI_OBJECT_VADISPLAY:
|
|
|
|
* @object: a #GstVaapiObject
|
|
|
|
*
|
|
|
|
* Macro that evaluates to the #VADisplay of @display.
|
2010-04-01 13:41:24 +00:00
|
|
|
* This is an internal macro that does not do any run-time type check
|
|
|
|
* and requires #include "gstvaapidisplay_priv.h".
|
2010-03-25 09:37:40 +00:00
|
|
|
*/
|
|
|
|
#define GST_VAAPI_OBJECT_VADISPLAY(object) \
|
|
|
|
GST_VAAPI_DISPLAY_VADISPLAY(GST_VAAPI_OBJECT_DISPLAY(object))
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GST_VAAPI_OBJECT_XDISPLAY:
|
|
|
|
* @object: a #GstVaapiObject
|
|
|
|
*
|
|
|
|
* Macro that evaluates to the underlying X11 #Display of @display.
|
2010-04-01 13:41:24 +00:00
|
|
|
* This is an internal macro that does not do any run-time type check
|
|
|
|
* and requires #include "gstvaapidisplay_x11_priv.h".
|
2010-03-25 09:37:40 +00:00
|
|
|
*/
|
|
|
|
#define GST_VAAPI_OBJECT_XDISPLAY(object) \
|
|
|
|
GST_VAAPI_DISPLAY_XDISPLAY(GST_VAAPI_OBJECT_DISPLAY(object))
|
|
|
|
|
2010-04-01 13:41:24 +00:00
|
|
|
/**
|
|
|
|
* GST_VAAPI_OBJECT_XSCREEN:
|
|
|
|
* @object: a #GstVaapiObject
|
|
|
|
*
|
|
|
|
* Macro that evaluates to the underlying X11 screen of @display.
|
|
|
|
* This is an internal macro that does not do any run-time type check
|
|
|
|
* and requires #include "gstvaapidisplay_x11_priv.h".
|
|
|
|
*/
|
|
|
|
#define GST_VAAPI_OBJECT_XSCREEN(object) \
|
|
|
|
GST_VAAPI_DISPLAY_XSCREEN(GST_VAAPI_OBJECT_DISPLAY(object))
|
|
|
|
|
2010-03-25 09:37:40 +00:00
|
|
|
/**
|
|
|
|
* GST_VAAPI_OBJECT_LOCK_DISPLAY:
|
|
|
|
* @object: a #GstVaapiObject
|
|
|
|
*
|
|
|
|
* Macro that locks the #GstVaapiDisplay contained in the @object.
|
|
|
|
* This is an internal macro that does not do any run-time type check.
|
|
|
|
*/
|
|
|
|
#define GST_VAAPI_OBJECT_LOCK_DISPLAY(object) \
|
|
|
|
GST_VAAPI_DISPLAY_LOCK(GST_VAAPI_OBJECT_DISPLAY(object))
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GST_VAAPI_OBJECT_UNLOCK_DISPLAY:
|
|
|
|
* @object: a #GstVaapiObject
|
|
|
|
*
|
|
|
|
* Macro that unlocks the #GstVaapiDisplay contained in the @object.
|
|
|
|
* This is an internal macro that does not do any run-time type check.
|
|
|
|
*/
|
|
|
|
#define GST_VAAPI_OBJECT_UNLOCK_DISPLAY(object) \
|
|
|
|
GST_VAAPI_DISPLAY_UNLOCK(GST_VAAPI_OBJECT_DISPLAY(object))
|
|
|
|
|
2010-03-24 08:32:12 +00:00
|
|
|
/**
|
|
|
|
* GstVaapiObjectPrivate:
|
|
|
|
*
|
|
|
|
* VA object base.
|
|
|
|
*/
|
|
|
|
struct _GstVaapiObjectPrivate {
|
|
|
|
GstVaapiDisplay *display;
|
2010-03-24 13:19:58 +00:00
|
|
|
GstVaapiID id;
|
2010-03-24 08:32:12 +00:00
|
|
|
guint is_destroying : 1;
|
|
|
|
};
|
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* GST_VAAPI_OBJECT_PRIV_H */
|