diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-12-31 17:23:56 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-12-31 17:23:56 +0000 |
commit | 477ab036ad89e13fbbce502281861364113a492a (patch) | |
tree | e599356d5c69a5735239e909d63ce8ddbe93761c /libavcodec/dsputil.c | |
parent | bb87a84ce99e3e94ef9f456a36ede3624f92bdf7 (diff) | |
download | ffmpeg-477ab036ad89e13fbbce502281861364113a492a.tar.gz |
trellis quantization
Originally committed as revision 1380 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.c')
-rw-r--r-- | libavcodec/dsputil.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c index c48c71119b..80ff8f4022 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -1467,10 +1467,10 @@ static int sad8x8_c(void *s, uint8_t *a, uint8_t *b, int stride){ return pix_abs8x8_c(a,b,stride); } -void ff_block_permute(INT16 *block, UINT8 *permutation, const UINT8 *scantable, int last) +void ff_block_permute(DCTELEM *block, UINT8 *permutation, const UINT8 *scantable, int last) { int i; - INT16 temp[64]; + DCTELEM temp[64]; if(last<=0) return; //if(permutation[1]==1) return; //FIXME its ok but not clean and might fail for some perms |