diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2007-12-03 06:59:48 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2007-12-03 06:59:48 +0000 |
commit | fda767bb4ffb2a3daa5f0f6daffc41ac99c38703 (patch) | |
tree | cef00fb5975abd5f01c454b725961d04ab638586 /libavcodec/simple_idct.c | |
parent | 890d2799c19cfece563502c8363d27ad48e26379 (diff) | |
download | ffmpeg-fda767bb4ffb2a3daa5f0f6daffc41ac99c38703.tar.gz |
Rename function to reflect its action
Originally committed as revision 11146 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/simple_idct.c')
-rw-r--r-- | libavcodec/simple_idct.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/simple_idct.c b/libavcodec/simple_idct.c index dcf752e163..20ab3be29a 100644 --- a/libavcodec/simple_idct.c +++ b/libavcodec/simple_idct.c @@ -428,7 +428,7 @@ void simple_idct(DCTELEM *block) 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 @@ void simple_idct248_put(uint8_t *dest, int line_size, DCTELEM *block) /* 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); } } |