aacdec: no need to read the offset table.
[paraslash.git] / time.c
diff --git a/time.c b/time.c
index f659b16f09a6abb39c853d915c529a42dfe732b2..34e3de9523cb91a6c4142cf36ec6d540d21d7fe6 100644 (file)
--- a/time.c
+++ b/time.c
@@ -141,7 +141,7 @@ int tv_convex_combination(const long a, const struct timeval *tv1,
 {
        struct timeval tmp1, tmp2, tmp3;
        int ret = 1, subtract = ((a > 0 && b < 0) || (a < 0 && b > 0));
-       unsigned long a1 = ABS(a), b1 = ABS(b);
+       unsigned long a1 = PARA_ABS(a), b1 = PARA_ABS(b);
 
        tv_scale(a1, tv1, &tmp1);
        tv_scale(b1, tv2, &tmp2);