diff options
author | Gwenole Beauchesne <gwenole.beauchesne@intel.com> | 2013-05-23 18:15:48 +0200 |
---|---|---|
committer | Gwenole Beauchesne <gwenole.beauchesne@intel.com> | 2013-05-23 18:15:48 +0200 |
commit | 67eea920446b332a451e0d6dcb62c2374ac87634 (patch) | |
tree | 47beec8c4f69af4ed5a71854d600969dc0709453 /gst-libs/gst/vaapi/gstvaapiobject.h | |
parent | f77e1642dc2bd0001d78721ecd6bac9437ecd11b (diff) | |
download | gst-vaapi-67eea920446b332a451e0d6dcb62c2374ac87634.tar.gz |
libs: drop GST_VAAPI_IS_xxx() helper macros.
Drop obsolete GST_VAAPI_IS_xxx() helper macros since we are no longer
deriving from GObject and so those were only checking for whether the
argument was NULL or not. This is now irrelevant, and even confusing
to some extent, because we no longer have type checking.
Note: this incurs more type checking (review) but the libgstvaapi is
rather small, so this is manageable.
Diffstat (limited to 'gst-libs/gst/vaapi/gstvaapiobject.h')
-rw-r--r-- | gst-libs/gst/vaapi/gstvaapiobject.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gst-libs/gst/vaapi/gstvaapiobject.h b/gst-libs/gst/vaapi/gstvaapiobject.h index cdc59d4f..081b2c67 100644 --- a/gst-libs/gst/vaapi/gstvaapiobject.h +++ b/gst-libs/gst/vaapi/gstvaapiobject.h @@ -31,9 +31,6 @@ G_BEGIN_DECLS #define GST_VAAPI_OBJECT(obj) \ ((GstVaapiObject *)(obj)) -#define GST_VAAPI_IS_OBJECT(obj) \ - ((obj) != NULL) - typedef struct _GstVaapiObject GstVaapiObject; gpointer |