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/cavs.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/cavs.c')
-rw-r--r-- | libavcodec/cavs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cavs.c b/libavcodec/cavs.c index 0b14f84731..6ecfb79718 100644 --- a/libavcodec/cavs.c +++ b/libavcodec/cavs.c @@ -293,7 +293,7 @@ static void intra_pred_plane(uint8_t *d,uint8_t *top,uint8_t *left,int stride) { int x,y,ia; int ih = 0; int iv = 0; - uint8_t *cm = cropTbl + MAX_NEG_CROP; + uint8_t *cm = ff_cropTbl + MAX_NEG_CROP; for(x=0; x<4; x++) { ih += (x+1)*(top[5+x]-top[3-x]); |