[FFmpeg-cvslog] r16841 - trunk/libavcodec/apedec.c

kostya subversion
Wed Jan 28 08:15:22 CET 2009


Author: kostya
Date: Wed Jan 28 08:15:22 2009
New Revision: 16841

Log:
Fix documenting comments for APE decoder

Modified:
   trunk/libavcodec/apedec.c

Modified: trunk/libavcodec/apedec.c
==============================================================================
--- trunk/libavcodec/apedec.c	Wed Jan 28 01:16:05 2009	(r16840)
+++ trunk/libavcodec/apedec.c	Wed Jan 28 08:15:22 2009	(r16841)
@@ -248,6 +248,7 @@ static inline void range_dec_normalize(A
 
 /**
  * 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 @@ static inline int range_decode_culfreq(A
 
 /**
  * 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 @@ static inline int range_decode_culshift(
 
 /**
  * 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 @@ static const uint16_t counts_diff_3980[2
 
 /**
  * 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[],




More information about the ffmpeg-cvslog mailing list