Mercurial > libavcodec.hg
changeset 8171:49648dd185cf libavcodec
SH4: do not mix code and declarations
author | mru |
---|---|
date | Wed, 19 Nov 2008 00:37:28 +0000 |
parents | 40d792395c63 |
children | 6cd416513c5a |
files | sh4/dsputil_sh4.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/sh4/dsputil_sh4.c Wed Nov 19 00:37:24 2008 +0000 +++ b/sh4/dsputil_sh4.c Wed Nov 19 00:37:28 2008 +0000 @@ -66,9 +66,9 @@ extern void idct_sh4(DCTELEM *block); static void idct_put(uint8_t *dest, int line_size, DCTELEM *block) { - idct_sh4(block); int i; uint8_t *cm = ff_cropTbl + MAX_NEG_CROP; + idct_sh4(block); for(i=0;i<8;i++) { dest[0] = cm[block[0]]; dest[1] = cm[block[1]]; @@ -84,9 +84,9 @@ } static void idct_add(uint8_t *dest, int line_size, DCTELEM *block) { - idct_sh4(block); int i; uint8_t *cm = ff_cropTbl + MAX_NEG_CROP; + idct_sh4(block); for(i=0;i<8;i++) { dest[0] = cm[dest[0]+block[0]]; dest[1] = cm[dest[1]+block[1]];