summaryrefslogtreecommitdiff
path: root/libavcodec/svq3.c
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/svq3.c
parentd136d2fceabf58fbbadc07b4a03bd25d193849ff (diff)
rename cropTbl -> ff_cropTbl
Originally committed as revision 6992 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/svq3.c')
-rw-r--r--libavcodec/svq3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/svq3.c b/libavcodec/svq3.c
index 7561e37eb2..edf3b67149 100644
--- a/libavcodec/svq3.c
+++ b/libavcodec/svq3.c
@@ -147,7 +147,7 @@ static void svq3_luma_dc_dequant_idct_c(DCTELEM *block, int qp){
static void svq3_add_idct_c (uint8_t *dst, DCTELEM *block, int stride, int qp, int dc){
const int qmul= svq3_dequant_coeff[qp];
int i;
- uint8_t *cm = cropTbl + MAX_NEG_CROP;
+ uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
if (dc) {
dc = 13*13*((dc == 1) ? 1538*block[0] : ((qmul*(block[0] >> 3)) / 2));