changeset 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 ef705b924335
children 2c0d7e00db4d
files postprocess.c postprocess_template.c
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/postprocess.c	Wed Nov 08 00:02:15 2006 +0000
+++ b/postprocess.c	Fri Dec 08 00:35:08 2006 +0000
@@ -466,7 +466,7 @@
 /**
  * accurate deblock filter
  */
-static always_inline void do_a_deblock_C(uint8_t *src, int step, int stride, PPContext *c){
+static av_always_inline void do_a_deblock_C(uint8_t *src, int step, int stride, PPContext *c){
         int y;
         const int QP= c->QP;
         const int dcOffset= ((c->nonBQP*c->ppMode.baseDcDiff)>>8) + 1;
--- a/postprocess_template.c	Wed Nov 08 00:02:15 2006 +0000
+++ b/postprocess_template.c	Fri Dec 08 00:35:08 2006 +0000
@@ -2645,7 +2645,7 @@
 /**
  * accurate deblock filter
  */
-static always_inline void RENAME(do_a_deblock)(uint8_t *src, int step, int stride, PPContext *c){
+static av_always_inline void RENAME(do_a_deblock)(uint8_t *src, int step, int stride, PPContext *c){
         int64_t dc_mask, eq_mask, both_masks;
         int64_t sums[10*8*2];
         src+= step*3; // src points to begin of the 8x8 Block