diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2009-01-28 07:15:22 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2009-01-28 07:15:22 +0000 |
commit | 20642e284006bba1ec1754457d86ba360eba49d8 (patch) | |
tree | f38a55861986abeed8fa73c8389f13c213c3d834 | |
parent | 89c9ff504b29d03cf266aa3598ccb8d2cf1ddd13 (diff) | |
download | ffmpeg-20642e284006bba1ec1754457d86ba360eba49d8.tar.gz |
Fix Doxygen comments for APE decoder.
Originally committed as revision 16841 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/apedec.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libavcodec/apedec.c b/libavcodec/apedec.c index 8746724133..c3497d7cca 100644 --- a/libavcodec/apedec.c +++ b/libavcodec/apedec.c @@ -248,6 +248,7 @@ static inline void range_dec_normalize(APEContext * ctx) /** * 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(APEContext * ctx, int tot_f) /** * 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(APEContext * ctx, int shift) /** * 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[21] = { /** * 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[], |