diff options
author | Måns Rullgård <mans@mansr.com> | 2006-11-12 20:08:09 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-11-12 20:08:09 +0000 |
commit | 55fde95e3bfc0e337a482e2508c3ce60009d8c7b (patch) | |
tree | 1c4bb8aa572f33e0d5bbb1f7a081c4630a61a55b /libavcodec/sh4/dsputil_sh4.c | |
parent | d136d2fceabf58fbbadc07b4a03bd25d193849ff (diff) | |
download | ffmpeg-55fde95e3bfc0e337a482e2508c3ce60009d8c7b.tar.gz |
rename cropTbl -> ff_cropTbl
Originally committed as revision 6992 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/sh4/dsputil_sh4.c')
-rw-r--r-- | libavcodec/sh4/dsputil_sh4.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/sh4/dsputil_sh4.c b/libavcodec/sh4/dsputil_sh4.c index 9e4888ce95..b38eb25516 100644 --- a/libavcodec/sh4/dsputil_sh4.c +++ b/libavcodec/sh4/dsputil_sh4.c @@ -70,7 +70,7 @@ static void idct_put(uint8_t *dest, int line_size, DCTELEM *block) { idct_sh4(block); int i; - uint8_t *cm = cropTbl + MAX_NEG_CROP; + uint8_t *cm = ff_cropTbl + MAX_NEG_CROP; for(i=0;i<8;i++) { dest[0] = cm[block[0]]; dest[1] = cm[block[1]]; @@ -88,7 +88,7 @@ static void idct_add(uint8_t *dest, int line_size, DCTELEM *block) { idct_sh4(block); int i; - uint8_t *cm = cropTbl + MAX_NEG_CROP; + uint8_t *cm = ff_cropTbl + MAX_NEG_CROP; for(i=0;i<8;i++) { dest[0] = cm[dest[0]+block[0]]; dest[1] = cm[dest[1]+block[1]]; |