diff options
author | Stefan Kost <ensonic@users.sourceforge.net> | 2008-01-21 14:19:32 +0000 |
---|---|---|
committer | Stefan Kost <ensonic@users.sourceforge.net> | 2008-01-21 14:19:32 +0000 |
commit | ff8b6de615ff389388b693828d2acecac9652d0a (patch) | |
tree | 2796f7867e05577d263c95ab344baaf8ff5187f6 /gst | |
parent | aa6d9fc5289adaf7e653fd190dc1180cb9e01466 (diff) | |
download | gst-plugins-bad-ff8b6de615ff389388b693828d2acecac9652d0a.tar.gz gst-plugins-bad-ff8b6de615ff389388b693828d2acecac9652d0a.tar.bz2 gst-plugins-bad-ff8b6de615ff389388b693828d2acecac9652d0a.zip |
docs/plugins/: Update lists again. Those whole can build ivorbisdec, mythtvsrc, nvudemux and theoradecexp, please com...
Original commit message from CVS:
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-bad-plugins-docs.sgml:
* docs/plugins/gst-plugins-bad-plugins-sections.txt:
Update lists again. Those whole can build ivorbisdec, mythtvsrc,
nvudemux and theoradecexp, please commit the inspect/plugin-xxx.xml.
* docs/plugins/inspect/plugin-gstinterlace.xml:
* docs/plugins/inspect/plugin-rawparse.xml
* docs/plugins/inspect/plugin-videoparse.xml:
Replace videoparse with rawparse.
* gst/dvdspu/gstdvdspu.h:
Help gtk-doc to recognize the object struct.
Diffstat (limited to 'gst')
-rw-r--r-- | gst/dvdspu/gstdvdspu.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/gst/dvdspu/gstdvdspu.h b/gst/dvdspu/gstdvdspu.h index e4b88488..0432a3af 100644 --- a/gst/dvdspu/gstdvdspu.h +++ b/gst/dvdspu/gstdvdspu.h @@ -37,8 +37,8 @@ G_BEGIN_DECLS #define DVD_SPU_LOCK(s) g_mutex_lock ((s)->spu_lock); #define DVD_SPU_UNLOCK(s) g_mutex_unlock ((s)->spu_lock); -typedef struct GstDVDSpu GstDVDSpu; -typedef struct GstDVDSpuClass GstDVDSpuClass; +typedef struct _GstDVDSpu GstDVDSpu; +typedef struct _GstDVDSpuClass GstDVDSpuClass; typedef struct SpuRect SpuRect; typedef struct SpuPixCtrlI SpuPixCtrlI; @@ -183,8 +183,7 @@ struct SpuPacket { GstEvent *event; }; -struct GstDVDSpu -{ +struct _GstDVDSpu { GstElement element; GstPad *videosinkpad; @@ -213,8 +212,7 @@ struct GstDVDSpu GstBuffer *pending_frame; }; -struct GstDVDSpuClass -{ +struct _GstDVDSpuClass { GstElementClass parent_class; }; |