changeset 8683:a262391f1ac6 libavcodec

Fix Doxygen comments for APE decoder.
author kostya
date Wed, 28 Jan 2009 07:15:22 +0000
parents 5698999894ec
children ec65d742016f
files apedec.c
diffstat 1 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/apedec.c	Tue Jan 27 16:34:10 2009 +0000
+++ b/apedec.c	Wed Jan 28 07:15:22 2009 +0000
@@ -248,6 +248,7 @@
 
 /**
  * Calculate culmulative frequency for next symbol. Does NO update!
+ * @param ctx decoder context
  * @param tot_f is the total frequency or (code_value)1<<shift
  * @return the culmulative frequency
  */
@@ -260,6 +261,7 @@
 
 /**
  * Decode value with given size in bits
+ * @param ctx decoder context
  * @param shift number of bits to decode
  */
 static inline int range_decode_culshift(APEContext * ctx, int shift)
@@ -272,6 +274,7 @@
 
 /**
  * Update decoding state
+ * @param ctx decoder context
  * @param sy_f the interval length (frequency of the symbol)
  * @param lt_f the lower end (frequency sum of < symbols)
  */
@@ -330,8 +333,9 @@
 
 /**
  * Decode symbol
+ * @param ctx decoder context
  * @param counts probability range start position
- * @param count_diffs probability range widths
+ * @param counts_diff probability range widths
  */
 static inline int range_get_symbol(APEContext * ctx,
                                    const uint16_t counts[],