Move private definitions and accessors to gstvaapiobject_priv.h.

This commit is contained in:
gb 2010-03-24 08:32:12 +00:00
parent 755f198a74
commit b8b82d3337
8 changed files with 60 additions and 19 deletions

View file

@ -41,6 +41,7 @@ libgstvaapi_source_h = \
libgstvaapi_source_priv_h = \
gstvaapidebug.h \
gstvaapiobject_priv.h \
gstvaapiutils.h \
$(NULL)

View file

@ -27,6 +27,7 @@
#include <string.h>
#include "gstvaapiutils.h"
#include "gstvaapiimage.h"
#include "gstvaapiobject_priv.h"
#include <va/va_backend.h>
#define DEBUG 1

View file

@ -25,6 +25,7 @@
#include "config.h"
#include "gstvaapiobject.h"
#include "gstvaapiobject_priv.h"
#include "gstvaapimarshal.h"
#define DEBUG 1
@ -32,16 +33,6 @@
G_DEFINE_TYPE(GstVaapiObject, gst_vaapi_object, G_TYPE_OBJECT);
#define GST_VAAPI_OBJECT_GET_PRIVATE(obj) \
(G_TYPE_INSTANCE_GET_PRIVATE((obj), \
GST_VAAPI_TYPE_OBJECT, \
GstVaapiObjectPrivate))
struct _GstVaapiObjectPrivate {
GstVaapiDisplay *display;
guint is_destroying : 1;
};
enum {
PROP_0,

View file

@ -50,15 +50,6 @@ G_BEGIN_DECLS
GST_VAAPI_TYPE_OBJECT, \
GstVaapiObjectClass))
/**
* GST_VAAPI_OBJECT_GET_DISPLAY:
* @object: a #GstVaapiObject
*
* Macro that evaluates to the #GstVaapiDisplay @object is bound to.
*/
#define GST_VAAPI_OBJECT_GET_DISPLAY(object) \
gst_vaapi_object_get_display(GST_VAAPI_OBJECT(object))
typedef struct _GstVaapiObject GstVaapiObject;
typedef struct _GstVaapiObjectPrivate GstVaapiObjectPrivate;
typedef struct _GstVaapiObjectClass GstVaapiObjectClass;

View file

@ -0,0 +1,54 @@
/*
* gstvaapiobject_priv.h - Base VA object (private definitions)
*
* gstreamer-vaapi (C) 2010 Splitted-Desktop Systems
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*/
#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))
/**
* GST_VAAPI_OBJECT_GET_DISPLAY:
* @object: a #GstVaapiObject
*
* Macro that evaluates to the #GstVaapiDisplay @object is bound to.
*/
#define GST_VAAPI_OBJECT_GET_DISPLAY(object) \
gst_vaapi_object_get_display(GST_VAAPI_OBJECT(object))
/**
* GstVaapiObjectPrivate:
*
* VA object base.
*/
struct _GstVaapiObjectPrivate {
GstVaapiDisplay *display;
guint is_destroying : 1;
};
G_END_DECLS
#endif /* GST_VAAPI_OBJECT_PRIV_H */

View file

@ -27,6 +27,7 @@
#include <string.h>
#include "gstvaapiutils.h"
#include "gstvaapisubpicture.h"
#include "gstvaapiobject_priv.h"
#include <va/va_backend.h>
#define DEBUG 1

View file

@ -27,6 +27,7 @@
#include "gstvaapiutils.h"
#include "gstvaapisurface.h"
#include "gstvaapiimage.h"
#include "gstvaapiobject_priv.h"
#include <va/va_backend.h>
#define DEBUG 1

View file

@ -29,6 +29,7 @@
#include "gstvaapiwindow_x11.h"
#include "gstvaapidisplay_x11.h"
#include "gstvaapiutils_x11.h"
#include "gstvaapiobject_priv.h"
#define DEBUG 1
#include "gstvaapidebug.h"