/**
* 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
/**
* 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
/**
* ac3p_frame
- * @padder The padder structure.
+ * @padder: The padder structure.
*
* Returns a pointer to the padded frame contained in the padder.
*/
/**
* ac3p_frame_size
- * @padder The padder structure.
+ * @padder: The padder structure.
*
* Returns the length in bytes of the last read raw AC3 frame.
*/
/**
* ac3p_pending
- * @padder The padder structure.
+ * @padder: The padder structure.
*
* Returns a boolean value telling if there are pending material in
* the padder.