mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 07:58:51 +00:00
Move private definitions and accessors to gstvaapiobject_priv.h.
This commit is contained in:
parent
755f198a74
commit
b8b82d3337
8 changed files with 60 additions and 19 deletions
|
@ -41,6 +41,7 @@ libgstvaapi_source_h = \
|
||||||
|
|
||||||
libgstvaapi_source_priv_h = \
|
libgstvaapi_source_priv_h = \
|
||||||
gstvaapidebug.h \
|
gstvaapidebug.h \
|
||||||
|
gstvaapiobject_priv.h \
|
||||||
gstvaapiutils.h \
|
gstvaapiutils.h \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
|
|
|
@ -27,6 +27,7 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include "gstvaapiutils.h"
|
#include "gstvaapiutils.h"
|
||||||
#include "gstvaapiimage.h"
|
#include "gstvaapiimage.h"
|
||||||
|
#include "gstvaapiobject_priv.h"
|
||||||
#include <va/va_backend.h>
|
#include <va/va_backend.h>
|
||||||
|
|
||||||
#define DEBUG 1
|
#define DEBUG 1
|
||||||
|
|
|
@ -25,6 +25,7 @@
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#include "gstvaapiobject.h"
|
#include "gstvaapiobject.h"
|
||||||
|
#include "gstvaapiobject_priv.h"
|
||||||
#include "gstvaapimarshal.h"
|
#include "gstvaapimarshal.h"
|
||||||
|
|
||||||
#define DEBUG 1
|
#define DEBUG 1
|
||||||
|
@ -32,16 +33,6 @@
|
||||||
|
|
||||||
G_DEFINE_TYPE(GstVaapiObject, gst_vaapi_object, G_TYPE_OBJECT);
|
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 {
|
enum {
|
||||||
PROP_0,
|
PROP_0,
|
||||||
|
|
||||||
|
|
|
@ -50,15 +50,6 @@ G_BEGIN_DECLS
|
||||||
GST_VAAPI_TYPE_OBJECT, \
|
GST_VAAPI_TYPE_OBJECT, \
|
||||||
GstVaapiObjectClass))
|
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 _GstVaapiObject GstVaapiObject;
|
||||||
typedef struct _GstVaapiObjectPrivate GstVaapiObjectPrivate;
|
typedef struct _GstVaapiObjectPrivate GstVaapiObjectPrivate;
|
||||||
typedef struct _GstVaapiObjectClass GstVaapiObjectClass;
|
typedef struct _GstVaapiObjectClass GstVaapiObjectClass;
|
||||||
|
|
54
gst-libs/gst/vaapi/gstvaapiobject_priv.h
Normal file
54
gst-libs/gst/vaapi/gstvaapiobject_priv.h
Normal 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 */
|
|
@ -27,6 +27,7 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include "gstvaapiutils.h"
|
#include "gstvaapiutils.h"
|
||||||
#include "gstvaapisubpicture.h"
|
#include "gstvaapisubpicture.h"
|
||||||
|
#include "gstvaapiobject_priv.h"
|
||||||
#include <va/va_backend.h>
|
#include <va/va_backend.h>
|
||||||
|
|
||||||
#define DEBUG 1
|
#define DEBUG 1
|
||||||
|
|
|
@ -27,6 +27,7 @@
|
||||||
#include "gstvaapiutils.h"
|
#include "gstvaapiutils.h"
|
||||||
#include "gstvaapisurface.h"
|
#include "gstvaapisurface.h"
|
||||||
#include "gstvaapiimage.h"
|
#include "gstvaapiimage.h"
|
||||||
|
#include "gstvaapiobject_priv.h"
|
||||||
#include <va/va_backend.h>
|
#include <va/va_backend.h>
|
||||||
|
|
||||||
#define DEBUG 1
|
#define DEBUG 1
|
||||||
|
|
|
@ -29,6 +29,7 @@
|
||||||
#include "gstvaapiwindow_x11.h"
|
#include "gstvaapiwindow_x11.h"
|
||||||
#include "gstvaapidisplay_x11.h"
|
#include "gstvaapidisplay_x11.h"
|
||||||
#include "gstvaapiutils_x11.h"
|
#include "gstvaapiutils_x11.h"
|
||||||
|
#include "gstvaapiobject_priv.h"
|
||||||
|
|
||||||
#define DEBUG 1
|
#define DEBUG 1
|
||||||
#include "gstvaapidebug.h"
|
#include "gstvaapidebug.h"
|
||||||
|
|
Loading…
Reference in a new issue