docs: fixup audio-library docs
authorStefan Kost <ensonic@users.sf.net>
Mon, 23 May 2011 12:08:24 +0000 (15:08 +0300)
committerStefan Kost <ensonic@users.sf.net>
Mon, 23 May 2011 12:08:24 +0000 (15:08 +0300)
gst-libs/gst/audio/gstaudioclock.h
gst-libs/gst/audio/gstaudiofilter.h
gst-libs/gst/audio/gstaudiosrc.h
gst-libs/gst/audio/multichannel.h

index fb50bcf..906c802 100644 (file)
@@ -60,14 +60,13 @@ typedef GstClockTime (*GstAudioClockGetTimeFunc) (GstClock *clock, gpointer user
 
 /**
  * GstAudioClock:
- * @clock: parent #GstSystemClock
  *
  * Opaque #GstAudioClock.
  */
 struct _GstAudioClock {
   GstSystemClock clock;
 
-  /* --- protected --- */
+  /*< protected >*/
   GstAudioClockGetTimeFunc func;
   gpointer user_data;
 
index c311c97..2fe5da5 100644 (file)
@@ -47,7 +47,6 @@ typedef struct _GstAudioFilterClass GstAudioFilterClass;
 
 /**
  * GstAudioFilter:
- * @basetransform: Element parent class
  *
  * Base class for audio filters with the same format for input and output.
  *
index d3b714d..3caa98e 100644 (file)
@@ -40,7 +40,6 @@ typedef struct _GstAudioSrcClass GstAudioSrcClass;
 
 /**
  * GstAudioSrc:
- * @element: parent class
  *
  * Base class for simple audio sources.
  */
index 2d9685d..3a3efe3 100644 (file)
@@ -42,6 +42,9 @@ G_BEGIN_DECLS
  * @GST_AUDIO_CHANNEL_POSITION_NONE: used for position-less channels, e.g.
  *     from a sound card that records 1024 channels; mutually exclusive with
  *     any other channel position
+ * @GST_AUDIO_CHANNEL_POSITION_INVALID: invalid position
+ *
+ * Audio channel positions.
  */
 typedef enum {
   GST_AUDIO_CHANNEL_POSITION_INVALID = -1,
@@ -74,6 +77,7 @@ typedef enum {
    * are defined or all positions are undefined, but can't mix'n'match  */
   GST_AUDIO_CHANNEL_POSITION_NONE,
 
+  /*< private >*/
   /* don't use - counter */
   GST_AUDIO_CHANNEL_POSITION_NUM
 } GstAudioChannelPosition;