|
|
@@ -198,7 +198,7 @@ typedef uint64_t uint_fast64_t; |
|
|
|
#define FFMAX(a,b) ((a) > (b) ? (a) : (b)) |
|
|
|
#define FFMIN(a,b) ((a) > (b) ? (b) : (a)) |
|
|
|
|
|
|
|
#define SWAP(type,a,b) do{type SWAP_tmp= b; b= a; a= SWAP_tmp;}while(0) |
|
|
|
#define FFSWAP(type,a,b) do{type SWAP_tmp= b; b= a; a= SWAP_tmp;}while(0) |
|
|
|
|
|
|
|
/* misc math functions */ |
|
|
|
extern FF_IMPORT_ATTR const uint8_t ff_log2_tab[256]; |
|
|
|