|
FFmpeg
|
#include "libavutil/cpu.h"#include "libavutil/aarch64/cpu.h"#include "libavcodec/aarch64/h26x/dsp.h"#include "libavcodec/vvc/dsp.h"#include "libavcodec/vvc/dec.h"#include "libavcodec/vvc/ctu.h"#include "alf_template.c"Go to the source code of this file.
Macros | |
| #define | BDOF_BLOCK_SIZE 16 |
| #define | BDOF_MIN_BLOCK_SIZE 4 |
| #define | BIT_DEPTH 8 |
| #define | BIT_DEPTH 10 |
| #define | BIT_DEPTH 12 |
| #define | W_AVG_FUN(bit_depth) |
| #define | DMVR_FUN(fn, bd) |
| #define | APPLY_BDOF_FUNC(bd) |
Functions | |
| void | ff_alf_classify_sum_neon (int *sum0, int *sum1, int16_t *grad, uint32_t gshift, uint32_t steps) |
| int | ff_vvc_sad_neon (const int16_t *src0, const int16_t *src1, int dx, int dy, const int block_w, const int block_h) |
| void | ff_vvc_avg_8_neon (uint8_t *dst, ptrdiff_t dst_stride, const int16_t *src0, const int16_t *src1, int width, int height) |
| void | ff_vvc_avg_10_neon (uint8_t *dst, ptrdiff_t dst_stride, const int16_t *src0, const int16_t *src1, int width, int height) |
| void | ff_vvc_avg_12_neon (uint8_t *dst, ptrdiff_t dst_stride, const int16_t *src0, const int16_t *src1, int width, int height) |
| void | ff_vvc_w_avg_8_neon (uint8_t *_dst, ptrdiff_t _dst_stride, const int16_t *src0, const int16_t *src1, int width, int height, uintptr_t w0_w1, uintptr_t offset_shift) |
| void | ff_vvc_w_avg_10_neon (uint8_t *_dst, ptrdiff_t _dst_stride, const int16_t *src0, const int16_t *src1, int width, int height, uintptr_t w0_w1, uintptr_t offset_shift) |
| void | ff_vvc_w_avg_12_neon (uint8_t *_dst, ptrdiff_t _dst_stride, const int16_t *src0, const int16_t *src1, int width, int height, uintptr_t w0_w1, uintptr_t offset_shift) |
| void | ff_vvc_dsp_init_aarch64 (VVCDSPContext *const c, const int bd) |
| #define BDOF_BLOCK_SIZE 16 |
Definition at line 30 of file dsp_init.c.
| #define BDOF_MIN_BLOCK_SIZE 4 |
Definition at line 31 of file dsp_init.c.
| #define BIT_DEPTH 8 |
Definition at line 44 of file dsp_init.c.
| #define BIT_DEPTH 10 |
Definition at line 44 of file dsp_init.c.
| #define BIT_DEPTH 12 |
Definition at line 44 of file dsp_init.c.
| #define W_AVG_FUN | ( | bit_depth | ) |
| #define DMVR_FUN | ( | fn, | |
| bd | |||
| ) |
| #define APPLY_BDOF_FUNC | ( | bd | ) |
Definition at line 109 of file dsp_init.c.
| void ff_alf_classify_sum_neon | ( | int * | sum0, |
| int * | sum1, | ||
| int16_t * | grad, | ||
| uint32_t | gshift, | ||
| uint32_t | steps | ||
| ) |
Referenced by alf_classify().
| int ff_vvc_sad_neon | ( | const int16_t * | src0, |
| const int16_t * | src1, | ||
| int | dx, | ||
| int | dy, | ||
| const int | block_w, | ||
| const int | block_h | ||
| ) |
Referenced by ff_vvc_dsp_init_aarch64().
| void ff_vvc_avg_8_neon | ( | uint8_t * | dst, |
| ptrdiff_t | dst_stride, | ||
| const int16_t * | src0, | ||
| const int16_t * | src1, | ||
| int | width, | ||
| int | height | ||
| ) |
Referenced by ff_vvc_dsp_init_aarch64().
| void ff_vvc_avg_10_neon | ( | uint8_t * | dst, |
| ptrdiff_t | dst_stride, | ||
| const int16_t * | src0, | ||
| const int16_t * | src1, | ||
| int | width, | ||
| int | height | ||
| ) |
Referenced by ff_vvc_dsp_init_aarch64().
| void ff_vvc_avg_12_neon | ( | uint8_t * | dst, |
| ptrdiff_t | dst_stride, | ||
| const int16_t * | src0, | ||
| const int16_t * | src1, | ||
| int | width, | ||
| int | height | ||
| ) |
Referenced by ff_vvc_dsp_init_aarch64().
| void ff_vvc_w_avg_8_neon | ( | uint8_t * | _dst, |
| ptrdiff_t | _dst_stride, | ||
| const int16_t * | src0, | ||
| const int16_t * | src1, | ||
| int | width, | ||
| int | height, | ||
| uintptr_t | w0_w1, | ||
| uintptr_t | offset_shift | ||
| ) |
| void ff_vvc_w_avg_10_neon | ( | uint8_t * | _dst, |
| ptrdiff_t | _dst_stride, | ||
| const int16_t * | src0, | ||
| const int16_t * | src1, | ||
| int | width, | ||
| int | height, | ||
| uintptr_t | w0_w1, | ||
| uintptr_t | offset_shift | ||
| ) |
| void ff_vvc_w_avg_12_neon | ( | uint8_t * | _dst, |
| ptrdiff_t | _dst_stride, | ||
| const int16_t * | src0, | ||
| const int16_t * | src1, | ||
| int | width, | ||
| int | height, | ||
| uintptr_t | w0_w1, | ||
| uintptr_t | offset_shift | ||
| ) |
| void ff_vvc_dsp_init_aarch64 | ( | VVCDSPContext *const | c, |
| const int | bd | ||
| ) |
Definition at line 118 of file dsp_init.c.
Referenced by ff_vvc_dsp_init().
1.8.17