changeset 5978:eb2b4b1da4cd libavcodec

Rename function to reflect its action
author kostya
date Mon, 03 Dec 2007 06:59:48 +0000
parents 853d1ea80942
children fd27370e7dbf
files simple_idct.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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);
     }
 }