summaryrefslogtreecommitdiff
path: root/libavcodec/mlib
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2006-11-12 20:08:09 +0000
committerMåns Rullgård <mans@mansr.com>2006-11-12 20:08:09 +0000
commit55fde95e3bfc0e337a482e2508c3ce60009d8c7b (patch)
tree1c4bb8aa572f33e0d5bbb1f7a081c4630a61a55b /libavcodec/mlib
parentd136d2fceabf58fbbadc07b4a03bd25d193849ff (diff)
rename cropTbl -> ff_cropTbl
Originally committed as revision 6992 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mlib')
-rw-r--r--libavcodec/mlib/dsputil_mlib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mlib/dsputil_mlib.c b/libavcodec/mlib/dsputil_mlib.c
index 98dc4cd926..b78a54e0e5 100644
--- a/libavcodec/mlib/dsputil_mlib.c
+++ b/libavcodec/mlib/dsputil_mlib.c
@@ -384,7 +384,7 @@ static void bswap_buf_mlib(uint32_t *dst, uint32_t *src, int w)
static void ff_idct_put_mlib(uint8_t *dest, int line_size, DCTELEM *data)
{
int i;
- uint8_t *cm = cropTbl + MAX_NEG_CROP;
+ uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
mlib_VideoIDCT8x8_S16_S16 (data, data);