diff options
author | Stefan Kost <ensonic@users.sourceforge.net> | 2008-01-21 09:57:07 +0000 |
---|---|---|
committer | Stefan Kost <ensonic@users.sourceforge.net> | 2008-01-21 09:57:07 +0000 |
commit | efad8af2a1b377f43db2c8bac71fef5c07070c05 (patch) | |
tree | 919a829435bbe74f5594210bb5fd422165540a13 /gst/dvdspu/gstdvdspu.h | |
parent | 5b4cf531810f65686bacd2cc0e0493f327ee3612 (diff) | |
download | gst-plugins-bad-efad8af2a1b377f43db2c8bac71fef5c07070c05.tar.gz gst-plugins-bad-efad8af2a1b377f43db2c8bac71fef5c07070c05.tar.bz2 gst-plugins-bad-efad8af2a1b377f43db2c8bac71fef5c07070c05.zip |
docs/plugins/: Add symbols from -unused.txt to the right place.
Original commit message from CVS:
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-bad-plugins-sections.txt:
Add symbols from -unused.txt to the right place.
* gst/dvdspu/gstdvdspu.c:
* gst/dvdspu/gstdvdspu.h:
Coherent namespace usage.
* gst/spectrum/gstspectrum.c:
Fix broken XML fragment in doc snippet even more.
Diffstat (limited to 'gst/dvdspu/gstdvdspu.h')
-rw-r--r-- | gst/dvdspu/gstdvdspu.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/gst/dvdspu/gstdvdspu.h b/gst/dvdspu/gstdvdspu.h index 8710aeb7..b9a0ad49 100644 --- a/gst/dvdspu/gstdvdspu.h +++ b/gst/dvdspu/gstdvdspu.h @@ -24,10 +24,10 @@ G_BEGIN_DECLS #define GST_TYPE_DVD_SPU \ - (dvdspu_get_type()) -#define DVD_SPU(obj) \ + (gst_dvdspu_get_type()) +#define GST_DVD_SPU(obj) \ (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_DVD_SPU,GstDVDSpu)) -#define DVD_SPU_CLASS(klass) \ +#define GST_DVD_SPU_CLASS(klass) \ (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_DVD_SPU,GstDVDSpuClass)) #define GST_IS_DVD_SPU(obj) \ (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_DVD_SPU)) @@ -39,6 +39,7 @@ G_BEGIN_DECLS typedef struct GstDVDSpu GstDVDSpu; typedef struct GstDVDSpuClass GstDVDSpuClass; + typedef struct SpuRect SpuRect; typedef struct SpuPixCtrlI SpuPixCtrlI; typedef struct SpuLineCtrlI SpuLineCtrlI; @@ -46,7 +47,6 @@ typedef struct SpuColour SpuColour; typedef enum SpuStateFlags SpuStateFlags; typedef struct SpuState SpuState; typedef struct SpuPacket SpuPacket; - typedef enum SpuCmd SpuCmd; /* Describe the limits of a rectangle */ @@ -218,8 +218,7 @@ struct GstDVDSpuClass GstElementClass parent_class; }; -GType gstdvdspu_get_type (void); -void gstdvdspu_render_spu (GstDVDSpu *dvdspu, GstBuffer *buf); +GType gst_dvdspu_get_type (void); G_END_DECLS |