Commit 3b339cab authored by diego's avatar diego

Use ABS macro from libavutil.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@6619 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent ebb21e70
......@@ -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 ABS(a) ((a) > 0 ? (a) : (-(a)))
#define SIGN(a) ((a) > 0 ? 1 : -1)
#define GET_MODE_BUFFER_SIZE 500
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment