redefine broken implement casting macros to something saner
Original commit message from CVS: redefine broken implement casting macros to something saner
This commit is contained in:
parent
b70d9b6d4c
commit
f101cbf97c
@ -1,3 +1,10 @@
|
|||||||
|
2004-11-25 Johan Dahlin <johan@gnome.org>
|
||||||
|
|
||||||
|
* gst/interfaces.override:
|
||||||
|
* gst/xoverlay.override:
|
||||||
|
|
||||||
|
redefine broken implement casting macros to something saner
|
||||||
|
|
||||||
2004-11-23 Johan Dahlin <johan@gnome.org>
|
2004-11-23 Johan Dahlin <johan@gnome.org>
|
||||||
|
|
||||||
* testsuite/*: Put test_ prefix on all test filenames
|
* testsuite/*: Put test_ prefix on all test filenames
|
||||||
|
@ -28,14 +28,27 @@ headers
|
|||||||
#include "common.h"
|
#include "common.h"
|
||||||
|
|
||||||
#include <gst/gst.h>
|
#include <gst/gst.h>
|
||||||
|
|
||||||
|
/* XXX: Remove this macros in 0.9 */
|
||||||
#include <gst/colorbalance/colorbalance.h>
|
#include <gst/colorbalance/colorbalance.h>
|
||||||
#include <gst/colorbalance/colorbalancechannel.h>
|
#undef GST_COLOR_BALANCE
|
||||||
#include <gst/mixer/mixer.h>
|
#define GST_COLOR_BALANCE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_COLOR_BALANCE, GstColorBalance))
|
||||||
#include <gst/mixer/mixertrack.h>
|
|
||||||
#include <gst/navigation/navigation.h>
|
#include <gst/navigation/navigation.h>
|
||||||
|
#undef GST_NAVIGATION
|
||||||
|
#define GST_NAVIGATION(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_NAVIGATION, GstNavigation))
|
||||||
|
|
||||||
#include <gst/propertyprobe/propertyprobe.h>
|
#include <gst/propertyprobe/propertyprobe.h>
|
||||||
|
#undef GST_PROPERTY_PROBE
|
||||||
|
#define GST_PROPERTY_PROBE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_PROPERTY_PROBE, GstPropertyProbe))
|
||||||
|
|
||||||
#include <gst/tuner/tuner.h>
|
#include <gst/tuner/tuner.h>
|
||||||
#include <gst/xwindowlistener/xwindowlistener.h>
|
#undef GST_TUNER
|
||||||
|
#define GST_TUNER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_TUNER, GstTuner))
|
||||||
|
|
||||||
|
#include <gst/mixer/mixer.h>
|
||||||
|
#undef GST_MIXER
|
||||||
|
#define GST_MIXER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_MIXER, GstMixer))
|
||||||
|
|
||||||
%%
|
%%
|
||||||
modulename gst.interfaces
|
modulename gst.interfaces
|
||||||
|
@ -22,3 +22,5 @@
|
|||||||
headers
|
headers
|
||||||
|
|
||||||
#include <gst/xoverlay/xoverlay.h>
|
#include <gst/xoverlay/xoverlay.h>
|
||||||
|
#undef GST_X_OVERLAY
|
||||||
|
#define GST_X_OVERLAY(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_X_OVERLAY, GstXOverlay))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user