mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
tests/checkasm/lpc: correct arithmetic when randomizing buffers
Results weren't signed.
This commit is contained in:
parent
6ad39f01df
commit
668f43af20
@ -22,12 +22,12 @@
|
|||||||
|
|
||||||
#include "checkasm.h"
|
#include "checkasm.h"
|
||||||
|
|
||||||
#define randomize_int32(buf, len) \
|
#define randomize_int32(buf, len) \
|
||||||
do { \
|
do { \
|
||||||
for (int i = 0; i < len; i++) { \
|
for (int i = 0; i < len; i++) { \
|
||||||
int32_t f = (UINT32_MAX >> 8) - (rnd() >> 16); \
|
int32_t f = ((int)(UINT32_MAX >> 17)) - ((int)(rnd() >> 16)); \
|
||||||
buf[i] = f; \
|
buf[i] = f; \
|
||||||
} \
|
} \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
#define EPS 0.005
|
#define EPS 0.005
|
||||||
|
Loading…
Reference in New Issue
Block a user