comparison postprocess_template.c @ 38:63d07317cd7a libpostproc

rename always_inline to av_always_inline and move to common.h
author mru
date Fri, 08 Dec 2006 00:35:08 +0000
parents cb746db3fd32
children 2c0d7e00db4d
comparison
equal deleted inserted replaced
37:ef705b924335 38:63d07317cd7a
2643 2643
2644 #ifdef HAVE_MMX 2644 #ifdef HAVE_MMX
2645 /** 2645 /**
2646 * accurate deblock filter 2646 * accurate deblock filter
2647 */ 2647 */
2648 static always_inline void RENAME(do_a_deblock)(uint8_t *src, int step, int stride, PPContext *c){ 2648 static av_always_inline void RENAME(do_a_deblock)(uint8_t *src, int step, int stride, PPContext *c){
2649 int64_t dc_mask, eq_mask, both_masks; 2649 int64_t dc_mask, eq_mask, both_masks;
2650 int64_t sums[10*8*2]; 2650 int64_t sums[10*8*2];
2651 src+= step*3; // src points to begin of the 8x8 Block 2651 src+= step*3; // src points to begin of the 8x8 Block
2652 //START_TIMER 2652 //START_TIMER
2653 asm volatile( 2653 asm volatile(