comparison h264idct.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 2b72f9bc4f06
comparison
equal deleted inserted replaced
4282:9d64f6eacc7b 4283:d6f83e2f8804
26 * @author Michael Niedermayer <michaelni@gmx.at> 26 * @author Michael Niedermayer <michaelni@gmx.at>
27 */ 27 */
28 28
29 #include "dsputil.h" 29 #include "dsputil.h"
30 30
31 static always_inline void idct_internal(uint8_t *dst, DCTELEM *block, int stride, int block_stride, int shift, int add){ 31 static av_always_inline void idct_internal(uint8_t *dst, DCTELEM *block, int stride, int block_stride, int shift, int add){
32 int i; 32 int i;
33 uint8_t *cm = ff_cropTbl + MAX_NEG_CROP; 33 uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
34 34
35 block[0] += 1<<(shift-1); 35 block[0] += 1<<(shift-1);
36 36