# HG changeset patch # User kostya # Date 1196665188 0 # Node ID eb2b4b1da4cd4beae037ab9e79f69ba2f221fe6b # Parent 853d1ea809421d3697221db304c2a4b7f28d2c48 Rename function to reflect its action diff -r 853d1ea80942 -r eb2b4b1da4cd simple_idct.c --- a/simple_idct.c Mon Dec 03 01:06:00 2007 +0000 +++ b/simple_idct.c Mon Dec 03 06:59:48 2007 +0000 @@ -428,7 +428,7 @@ and the butterfly must be multiplied by 0.5 * sqrt(2.0) */ #define C_SHIFT (4+1+12) -static inline void idct4col(uint8_t *dest, int line_size, const DCTELEM *col) +static inline void idct4col_put(uint8_t *dest, int line_size, const DCTELEM *col) { int c0, c1, c2, c3, a0, a1, a2, a3; const uint8_t *cm = ff_cropTbl + MAX_NEG_CROP; @@ -491,8 +491,8 @@ /* IDCT4 and store */ for(i=0;i<8;i++) { - idct4col(dest + i, 2 * line_size, block + i); - idct4col(dest + line_size + i, 2 * line_size, block + 8 + i); + idct4col_put(dest + i, 2 * line_size, block + i); + idct4col_put(dest + line_size + i, 2 * line_size, block + 8 + i); } }