comparison vp8.c @ 12062:372f7fed2806 libavcodec

Avoid square brackets in Doxygen comments; Doxygen chokes on them.
author diego
date Fri, 02 Jul 2010 11:44:58 +0000
parents 3c51d7ac41c9
children 812e23197d64
comparison
equal deleted inserted replaced
12061:75f4dfbd0462 12062:372f7fed2806
745 745
746 /** 746 /**
747 * @param i initial coeff index, 0 unless a separate DC block is coded 747 * @param i initial coeff index, 0 unless a separate DC block is coded
748 * @param zero_nhood the initial prediction context for number of surrounding 748 * @param zero_nhood the initial prediction context for number of surrounding
749 * all-zero blocks (only left/top, so 0-2) 749 * all-zero blocks (only left/top, so 0-2)
750 * @param qmul[0] dc dequant factor 750 * @param qmul array holding the dc/ac dequant factor at position 0/1
751 * @param qmul[1] ac dequant factor
752 * @return 0 if no coeffs were decoded 751 * @return 0 if no coeffs were decoded
753 * otherwise, the index of the last coeff decoded plus one 752 * otherwise, the index of the last coeff decoded plus one
754 */ 753 */
755 static int decode_block_coeffs(VP56RangeCoder *c, DCTELEM block[16], 754 static int decode_block_coeffs(VP56RangeCoder *c, DCTELEM block[16],
756 uint8_t probs[8][3][NUM_DCT_TOKENS-1], 755 uint8_t probs[8][3][NUM_DCT_TOKENS-1],