diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-10-11 22:59:37 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-10-11 22:59:37 +0000 |
commit | 02305ff38ffcc41a72fc1cb79c028b724d2d795d (patch) | |
tree | 2bc56b8eee4caf0c202b4a024efe5f32cf68884e /libpostproc/postprocess_template.c | |
parent | a957c27b037ae85b66405461d9541aeb9d4d2225 (diff) | |
download | ffmpeg-02305ff38ffcc41a72fc1cb79c028b724d2d795d.tar.gz |
Rename SIGN macro to FFSIGN to avoid clashes with system headers.
Originally committed as revision 6665 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libpostproc/postprocess_template.c')
-rw-r--r-- | libpostproc/postprocess_template.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libpostproc/postprocess_template.c b/libpostproc/postprocess_template.c index d09dd69d3c..f5fb249770 100644 --- a/libpostproc/postprocess_template.c +++ b/libpostproc/postprocess_template.c @@ -594,7 +594,7 @@ static inline void RENAME(vertX1Filter)(uint8_t *src, int stride, PPContext *co) if(d < co->QP*2) { - int v = d * SIGN(-b); + int v = d * FFSIGN(-b); src[l2] +=v>>3; src[l3] +=v>>2; @@ -855,7 +855,7 @@ static inline void RENAME(doVertDefFilter)(uint8_t src[], int stride, PPContext d= FFMAX(d, 0); d= (5*d + 32) >> 6; - d*= SIGN(-middleEnergy); + d*= FFSIGN(-middleEnergy); if(q>0) { @@ -1159,7 +1159,7 @@ src-=8; d= FFMAX(d, 0); d= (5*d + 32) >> 6; - d*= SIGN(-middleEnergy); + d*= FFSIGN(-middleEnergy); if(q>0) { |