| 145 | uint8_t cropTbl[256 + 2 * MAX_NEG_CROP]; |
| 146 | |
| 147 | static int64_t gettime(void) |
| 148 | { |
| 149 | struct timeval tv; |
| 150 | gettimeofday(&tv,NULL); |
| 151 | return (int64_t)tv.tv_sec * 1000000 + tv.tv_usec; |
| 152 | } |
| 153 | |
| 154 | #define NB_ITS 20000 |
| 155 | #define NB_ITS_SPEED 50000 |
no outgoing calls
no test coverage detected