diff options
author | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2009-10-31 19:42:50 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2009-10-31 19:55:26 +0000 |
commit | decd2acece6a161f1b173c96ab6e91f82fc2c78a (patch) | |
tree | ae21844a9f80c54a12557203c370b01cf5e9061f /gst | |
parent | 57cce4754c408d4da69f376ed05c74439acc058f (diff) | |
download | gstreamer-plugins-bad-decd2acece6a161f1b173c96ab6e91f82fc2c78a.tar.gz |
aiff: add aiff elements to docs
Diffstat (limited to 'gst')
-rw-r--r-- | gst/aiff/aiffmux.h | 12 | ||||
-rw-r--r-- | gst/aiff/aiffparse.h | 5 |
2 files changed, 12 insertions, 5 deletions
diff --git a/gst/aiff/aiffmux.h b/gst/aiff/aiffmux.h index cc64586e6..73c1d89d3 100644 --- a/gst/aiff/aiffmux.h +++ b/gst/aiff/aiffmux.h @@ -1,5 +1,4 @@ -/* - * GStreamer +/* GStreamer AIFF muxer * Copyright (C) 2009 Robert Swain <robert.swain@gmail.com> * * Permission is hereby granted, free of charge, to any person obtaining a @@ -47,7 +46,7 @@ #include <gst/gst.h> G_BEGIN_DECLS -/* #defines don't like whitespacey bits */ + #define GST_TYPE_AIFF_MUX \ (gst_aiff_mux_get_type()) #define GST_AIFF_MUX(obj) \ @@ -58,13 +57,20 @@ G_BEGIN_DECLS (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_AIFF_MUX)) #define GST_IS_AIFF_MUX_CLASS(klass) \ (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_AIFF_MUX)) + typedef struct _GstAiffMux GstAiffMux; typedef struct _GstAiffMuxClass GstAiffMuxClass; +/** + * GstAiffMux: + * + * Opaque data structure. + */ struct _GstAiffMux { GstElement element; + /*< private >*/ GstPad *sinkpad; GstPad *srcpad; diff --git a/gst/aiff/aiffparse.h b/gst/aiff/aiffparse.h index 6a391bb70..1ffe212b7 100644 --- a/gst/aiff/aiffparse.h +++ b/gst/aiff/aiffparse.h @@ -55,8 +55,9 @@ typedef struct _GstAiffParseClass GstAiffParseClass; struct _GstAiffParse { GstElement parent; - /* pads */ - GstPad *sinkpad,*srcpad; + /*< private >*/ + GstPad *sinkpad; + GstPad *srcpad; GstCaps *caps; GstEvent *close_segment; |