comparison vp3dsp.c @ 4283:d6f83e2f8804 libavcodec

rename always_inline to av_always_inline and move to common.h
author mru
date Fri, 08 Dec 2006 00:35:08 +0000
parents 23da44e8fd05
children f99e40a7155b
comparison
equal deleted inserted replaced
4282:9d64f6eacc7b 4283:d6f83e2f8804
37 #define xC6S2 25080 37 #define xC6S2 25080
38 #define xC7S1 12785 38 #define xC7S1 12785
39 39
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 av_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 = ff_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;