changeset 25:df7a316cafb4 libpostproc

Use ABS macro from libavutil.
author diego
date Tue, 10 Oct 2006 07:46:41 +0000
parents 177d477f3225
children 300e4c8b39ab
files postprocess.c
diffstat 1 files changed, 0 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/postprocess.c	Mon Oct 09 22:36:38 2006 +0000
+++ b/postprocess.c	Tue Oct 10 07:46:41 2006 +0000
@@ -101,7 +101,6 @@
 
 #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