doc fixes

Original commit message from CVS:
doc fixes
This commit is contained in:
Thomas Vander Stichele 2005-09-05 11:42:10 +00:00
parent 455ea96b5c
commit 35abe31aec
2 changed files with 7 additions and 7 deletions

View 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

View 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.