#include <assert.h>
#include <stddef.h>
#include <stdint.h>
#include "checkasm.h"
#include "libavfilter/vf_pp7dsp.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/mem_internal.h"
Go to the source code of this file.
◆ randomize_buffer
| #define randomize_buffer |
( |
|
buf | ) |
|
Value: do { \
static_assert(!(sizeof(buf) % 4), "Tail handling needed"); \
for (size_t k = 0; k < sizeof(buf); k += 4) { \
AV_WN32A((
char*)buf + k,
rnd()); \
} \
} while (0)
Definition at line 28 of file vf_pp7.c.
◆ check_dctB()
◆ checkasm_check_vf_pp7()
| void checkasm_check_vf_pp7 |
( |
void |
| ) |
|