|
FFmpeg
|
#include <string.h>#include "checkasm.h"#include "libavcodec/vvc/ctu.h"#include "libavcodec/vvc/data.h"#include "libavcodec/vvc/dsp.h"#include "libavutil/common.h"#include "libavutil/intreadwrite.h"#include "libavutil/mem_internal.h"Go to the source code of this file.
Macros | |
| #define | SIZEOF_PIXEL ((bit_depth + 7) / 8) |
| #define | SRC_PIXEL_STRIDE (MAX_CTU_SIZE + 2 * ALF_PADDING_SIZE) |
| #define | DST_PIXEL_STRIDE (SRC_PIXEL_STRIDE + 4) |
| #define | SRC_BUF_SIZE (SRC_PIXEL_STRIDE * (MAX_CTU_SIZE + 3 * 2) * 2) |
| #define | DST_BUF_SIZE (DST_PIXEL_STRIDE * (MAX_CTU_SIZE + 3 * 2) * 2) |
| #define | LUMA_PARAMS_SIZE (MAX_CTU_SIZE * MAX_CTU_SIZE / ALF_BLOCK_SIZE / ALF_BLOCK_SIZE * ALF_NUM_COEFF_LUMA) |
| #define | randomize_buffers(buf0, buf1, size) |
| #define | randomize_buffers2(buf, size, filter) |
Functions | |
| static int | get_alf_vb_pos (const int h, const int vb_pos_above) |
| static void | check_alf_filter (VVCDSPContext *c, const int bit_depth) |
| static void | check_alf_classify (VVCDSPContext *c, const int bit_depth) |
| void | checkasm_check_vvc_alf (void) |
Variables | |
| static const uint32_t | pixel_mask [3] = { 0xffffffff, 0x03ff03ff, 0x0fff0fff } |
| #define SRC_PIXEL_STRIDE (MAX_CTU_SIZE + 2 * ALF_PADDING_SIZE) |
Definition at line 36 of file vvc_alf.c.
Referenced by check_alf_classify(), and check_alf_filter().
| #define DST_PIXEL_STRIDE (SRC_PIXEL_STRIDE + 4) |
Definition at line 37 of file vvc_alf.c.
Referenced by check_alf_filter().
| #define SRC_BUF_SIZE (SRC_PIXEL_STRIDE * (MAX_CTU_SIZE + 3 * 2) * 2) |
| #define DST_BUF_SIZE (DST_PIXEL_STRIDE * (MAX_CTU_SIZE + 3 * 2) * 2) |
| #define LUMA_PARAMS_SIZE (MAX_CTU_SIZE * MAX_CTU_SIZE / ALF_BLOCK_SIZE / ALF_BLOCK_SIZE * ALF_NUM_COEFF_LUMA) |
Definition at line 40 of file vvc_alf.c.
Referenced by check_alf_filter().
| #define randomize_buffers | ( | buf0, | |
| buf1, | |||
| size ) |
Definition at line 42 of file vvc_alf.c.
Referenced by check_alf_classify(), and check_alf_filter().
|
static |
Definition at line 69 of file vvc_alf.c.
Referenced by check_alf_classify(), and check_alf_filter().
|
static |
Definition at line 77 of file vvc_alf.c.
Referenced by checkasm_check_vvc_alf().
|
static |
Definition at line 134 of file vvc_alf.c.
Referenced by checkasm_check_vvc_alf().