docs: fix docs for new api
authorStefan Kost <ensonic@users.sf.net>
Mon, 23 May 2011 11:53:26 +0000 (14:53 +0300)
committerStefan Kost <ensonic@users.sf.net>
Mon, 23 May 2011 11:56:17 +0000 (14:56 +0300)
Some parameters where wrong, first line missed the ':' and return docs where
broken.

gst-libs/gst/audio/gstaudioiec61937.c
gst-libs/gst/audio/gstaudioiec61937.h

index caf150d..9ad787b 100644 (file)
 /**
  * SECTION:gstaudioiec61937
  * @short_description: Utility functions for IEC 61937 payloading
+ * @since: 0.10.35
  *
  * This module contains some helper functions for encapsulating various
  * audio formats in IEC 61937 headers and padding.
  *
- * Since: 0.10.35
  */
 
 #ifdef HAVE_CONFIG_H
@@ -60,12 +60,14 @@ caps_get_string_field (const GstCaps * caps, const gchar * field)
 }
 
 /**
- * gst_audio_iec61937_frame_size
- * @type: the type of data to be payloaded as a #GstBufferFormatType
+ * gst_audio_iec61937_frame_size:
+ * @spec: the ringbufer spec
+ *
+ * Calculated the size of the buffer expected by gst_audio_iec61937_payload() for
+ * payloading type from @spec.
  *
- * Returns 0 if the given @type is not supported or cannot be payloaded, else
- * returns the size of the buffer expected by gst_audio_iec61937_payload() for
- * payloading @type.
+ * Returns: the size or 0 if the given @type is not supported or cannot be
+ * payloaded.
  *
  * Since: 0.10.35
  */
@@ -128,19 +130,19 @@ gst_audio_iec61937_frame_size (const GstRingBufferSpec * spec)
 }
 
 /**
- * gst_audio_iec61937_payload
+ * gst_audio_iec61937_payload:
  * @src: a buffer containing the data to payload
  * @src_n: size of @src in bytes
  * @dst: the destination buffer to store the payloaded contents in. Should not
  *       overlap with @src
  * @dst_n: size of @dst in bytes
- * @type: the type of data in @src
+ * @spec: the ringbufer spec for @src
  *
- * Payloads @src in the form specified by IEC 61937 for @type and stores
- * the result in @dst. @src must contain exactly one frame of data and the
- * frame is not checked for errors.
+ * Payloads @src in the form specified by IEC 61937 for the type from @spec and
+ * stores the result in @dst. @src must contain exactly one frame of data and
+ * the frame is not checked for errors.
  *
- * Returns: transfer-full: #TRUE if the payloading was successful, #FALSE
+ * Returns: transfer-full: %TRUE if the payloading was successful, %FALSE
  * otherwise.
  *
  * Since: 0.10.35
index 52da245..b33297a 100644 (file)
  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  * Boston, MA 02111-1307, USA.
  */
-/**
- * SECTION:gstaudioiec61937
- * @short_description: Utility functions for IEC 61937 payloading
- *
- * This module contains some helper functions for encapsulating various
- * audio formats in IEC 61937 headers and padding.
- */
 
 #ifndef __GST_AUDIO_IEC61937_H__
 #define __GST_AUDIO_IEC61937_H__