diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-10-10 07:49:10 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-10-10 07:49:10 +0000 |
commit | a22b7322ccd286223064026af301e37f6e02bb38 (patch) | |
tree | 4c61a1ddbb9db31563e7f1a0d9e5e632b0e88ecf /libpostproc | |
parent | e0296b9a2e4678fb5d13685d02dd022333bbf730 (diff) | |
download | ffmpeg-a22b7322ccd286223064026af301e37f6e02bb38.tar.gz |
Move sign macro to libavutil.
Originally committed as revision 6620 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libpostproc')
-rw-r--r-- | libpostproc/postprocess.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libpostproc/postprocess.c b/libpostproc/postprocess.c index dabe9e1c67..358656b76b 100644 --- a/libpostproc/postprocess.c +++ b/libpostproc/postprocess.c @@ -101,7 +101,6 @@ try to unroll inner for(x=0 ... loop to avoid these damn if(x ... checks #define MIN(a,b) ((a) > (b) ? (b) : (a)) #define MAX(a,b) ((a) < (b) ? (b) : (a)) -#define SIGN(a) ((a) > 0 ? 1 : -1) #define GET_MODE_BUFFER_SIZE 500 #define OPTIONS_ARRAY_SIZE 10 |