comparison jfdctfst.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 9b98e18a1b1c
children f7cbb7733146
comparison
equal deleted inserted replaced
4282:9d64f6eacc7b 4283:d6f83e2f8804
143 * descale to yield a DCTELEM result. 143 * descale to yield a DCTELEM result.
144 */ 144 */
145 145
146 #define MULTIPLY(var,const) ((DCTELEM) DESCALE((var) * (const), CONST_BITS)) 146 #define MULTIPLY(var,const) ((DCTELEM) DESCALE((var) * (const), CONST_BITS))
147 147
148 static always_inline void row_fdct(DCTELEM * data){ 148 static av_always_inline void row_fdct(DCTELEM * data){
149 int_fast16_t tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; 149 int_fast16_t tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7;
150 int_fast16_t tmp10, tmp11, tmp12, tmp13; 150 int_fast16_t tmp10, tmp11, tmp12, tmp13;
151 int_fast16_t z1, z2, z3, z4, z5, z11, z13; 151 int_fast16_t z1, z2, z3, z4, z5, z11, z13;
152 DCTELEM *dataptr; 152 DCTELEM *dataptr;
153 int ctr; 153 int ctr;