comparison vp3dsp.c @ 4176:23da44e8fd05 libavcodec

rename cropTbl -> ff_cropTbl
author mru
date Sun, 12 Nov 2006 20:08:09 +0000
parents c8c591fe26f8
children d6f83e2f8804
comparison
equal deleted inserted replaced
4175:b3328ed50a5e 4176:23da44e8fd05
40 #define M(a,b) (((a) * (b))>>16) 40 #define M(a,b) (((a) * (b))>>16)
41 41
42 static always_inline void idct(uint8_t *dst, int stride, int16_t *input, int type) 42 static always_inline void idct(uint8_t *dst, int stride, int16_t *input, int type)
43 { 43 {
44 int16_t *ip = input; 44 int16_t *ip = input;
45 uint8_t *cm = cropTbl + MAX_NEG_CROP; 45 uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
46 46
47 int A, B, C, D, Ad, Bd, Cd, Dd, E, F, G, H; 47 int A, B, C, D, Ad, Bd, Cd, Dd, E, F, G, H;
48 int Ed, Gd, Add, Bdd, Fd, Hd; 48 int Ed, Gd, Add, Bdd, Fd, Hd;
49 49
50 int i; 50 int i;