# HG changeset patch # User michaelni # Date 1046916294 0 # Node ID a3a8017dee702d3047fde058a0bd22f8f3a7bb17 # Parent 207f2793262886b275c3a3a64f4553055428a612 more idiot proof dox diff -r 207f27932628 -r a3a8017dee70 dsputil.c --- a/dsputil.c Wed Mar 05 23:55:52 2003 +0000 +++ b/dsputil.c Thu Mar 06 02:04:54 2003 +0000 @@ -1627,9 +1627,11 @@ /** * permutes an 8x8 block. - * @param block the block :) + * @param block the block which will be permuted according to the given permutation vector * @param permutation the permutation vector * @param last the last non zero coefficient in scantable order, used to speed the permutation up + * @param scantable the used scantable, this is only used to speed the permutation up, the block is not + * (inverse) permutated to scantable order! */ void ff_block_permute(DCTELEM *block, uint8_t *permutation, const uint8_t *scantable, int last) { @@ -1652,6 +1654,9 @@ } } +/** + * memset(blocks, 0, sizeof(DCTELEM)*6*64) + */ static void clear_blocks_c(DCTELEM *blocks) { memset(blocks, 0, sizeof(DCTELEM)*6*64);