From 5397386effba2e53e4ff82852a86f6be4d59e9c1 Mon Sep 17 00:00:00 2001 From: Vittorio Giovara Date: Sat, 1 Mar 2014 13:01:43 +0100 Subject: mathops: move macro to the only place it is used This helps in disentangling lavf and lavc too. --- libavcodec/mathops.h | 9 --------- 1 file changed, 9 deletions(-) (limited to 'libavcodec') diff --git a/libavcodec/mathops.h b/libavcodec/mathops.h index 6c216c2..0489a60 100644 --- a/libavcodec/mathops.h +++ b/libavcodec/mathops.h @@ -195,15 +195,6 @@ if ((y) < (x)) {\ # define FASTDIV(a,b) ((uint32_t)((((uint64_t)a) * ff_inverse[b]) >> 32)) #endif /* FASTDIV */ -#ifndef MOD_UNLIKELY -# define MOD_UNLIKELY(modulus, dividend, divisor, prev_dividend) \ - do { \ - if ((prev_dividend) == 0 || (dividend) - (prev_dividend) != (divisor)) \ - (modulus) = (dividend) % (divisor); \ - (prev_dividend) = (dividend); \ - } while (0) -#endif - static inline av_const unsigned int ff_sqrt(unsigned int a) { unsigned int b; -- cgit v1.1