doc fixes
authorThomas Vander Stichele <thomas@apestaart.org>
Mon, 5 Sep 2005 11:42:10 +0000 (11:42 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Mon, 5 Sep 2005 11:42:10 +0000 (11:42 +0000)
Original commit message from CVS:
doc fixes

gst/iec958/ac3_padder.c
gst/iec958/ac3_padder.h

index 9ec551d..aa46a33 100644 (file)
@@ -108,10 +108,10 @@ ac3p_init (ac3_padder * padder)
 
 /**
  * ac3_push_data
- * @padder The padder structure.
- * @data A pointer to a buffer with new data to parse.  This should 
+ * @padder: The padder structure.
+ * @data: A pointer to a buffer with new data to parse.  This should 
  * correspond to a new piece of a stream containing raw AC3 data.
- * @size The number of available bytes in the buffer.
+ * @size: The number of available bytes in the buffer.
  *
  * Pushes a new buffer of data to be parsed by the ac3 padder.  The
  * ac3_parse() function will actually parse the data and report when
@@ -129,7 +129,7 @@ ac3p_push_data (ac3_padder * padder, guchar * data, guint size)
 
 /**
  * ac3p_parse
- * @padder The padder structure.
+ * @padder: The padder structure.
  * 
  * Parses the bytes already pushed into the padder structure (see
  * ac3p_push_data()) and returns an event value depending on the
index 032f41f..5863084 100644 (file)
@@ -111,7 +111,7 @@ ac3p_parse(ac3_padder *padder);
 
 /**
  * ac3p_frame
- * @padder The padder structure.
+ * @padder: The padder structure.
  *
  * Returns a pointer to the padded frame contained in the padder.
  */
@@ -119,7 +119,7 @@ ac3p_parse(ac3_padder *padder);
 
 /**
  * ac3p_frame_size
- * @padder The padder structure.
+ * @padder: The padder structure.
  *
  * Returns the length in bytes of the last read raw AC3 frame.
  */
@@ -127,7 +127,7 @@ ac3p_parse(ac3_padder *padder);
 
 /**
  * ac3p_pending
- * @padder The padder structure.
+ * @padder: The padder structure.
  *
  * Returns a boolean value telling if there are pending material in
  * the padder.