FFmpeg
|
Go to the source code of this file.
Macros | |
#define | POS(x, y) src[(x) + stride * (y)] |
#define | MAX_PICK_POS 4 |
#define | TOP 0 |
#define | LEFT 1 |
#define | EXTEND(ptr, val, len) |
#define | INTRA_LUMA_FILTER(p) CLIP((p[0] * f[0] + p[1] * f[1] + p[2] * f[2] + p[3] * f[3] + 32) >> 6) |
#define | INTRA_CHROMA_FILTER(p) (((32 - fact) * p[1] + fact * p[2] + 16) >> 5) |
Functions | |
static av_always_inline void FUNC() | cclm_linear_pred (VVCFrameContext *fc, const int x0, const int y0, const int w, const int h, const pixel *pdsy, const int *a, const int *b, const int *k) |
static av_always_inline void FUNC() | cclm_get_params_default (int *a, int *b, int *k) |
static av_always_inline int FUNC() | cclm_get_select_pos (const VVCLocalContext *lc, const int x, const int y, const int w, const int h, const int avail_t, const int avail_l, int cnt[2], int pos[2][MAX_PICK_POS]) |
static av_always_inline void FUNC() | cclm_select_luma_444 (const pixel *src, const int step, const int cnt, const int pos[MAX_PICK_POS], pixel *sel_luma) |
static av_always_inline void FUNC() | cclm_select_luma (const VVCFrameContext *fc, const int x0, const int y0, const int avail_t, const int avail_l, const int cnt[2], const int pos[2][MAX_PICK_POS], pixel *sel_luma) |
static av_always_inline void FUNC() | cclm_select_chroma (const VVCFrameContext *fc, const int x, const int y, const int cnt[2], const int pos[2][MAX_PICK_POS], pixel sel[][MAX_PICK_POS *2]) |
static av_always_inline int FUNC() | cclm_select_samples (const VVCLocalContext *lc, const int x0, const int y0, const int w, const int h, const int avail_t, const int avail_l, pixel sel[][MAX_PICK_POS *2]) |
static av_always_inline void FUNC() | cclm_get_min_max (const pixel sel[][MAX_PICK_POS *2], int *min, int *max) |
static av_always_inline void FUNC() | cclm_get_params (const VVCLocalContext *lc, const int x0, const int y0, const int w, const int h, const int avail_t, const int avail_l, int *a, int *b, int *k) |
static av_always_inline void FUNC() | cclm_get_luma_rec_pixels (const VVCFrameContext *fc, const int x0, const int y0, const int w, const int h, const int avail_t, const int avail_l, pixel *pdsy) |
static av_always_inline void FUNC() | cclm_pred_default (VVCFrameContext *fc, const int x, const int y, const int w, const int h, const int avail_t, const int avail_l) |
static void FUNC() | intra_cclm_pred (const VVCLocalContext *lc, const int x0, const int y0, const int width, const int height) |
static int FUNC() | lmcs_sum_samples (const pixel *start, ptrdiff_t stride, const int avail, const int target_size) |
static int FUNC() | lmcs_derive_chroma_scale (VVCLocalContext *lc, const int x0, const int y0) |
static void FUNC() | lmcs_scale_chroma (VVCLocalContext *lc, int *dst, const int *coeff, const int width, const int height, const int x0_cu, const int y0_cu) |
static av_always_inline void FUNC() | ref_filter (const pixel *left, const pixel *top, pixel *filtered_left, pixel *filtered_top, const int left_size, const int top_size, const int unfilter_last_one) |
static av_always_inline void FUNC() | prepare_intra_edge_params (const VVCLocalContext *lc, IntraEdgeParams *edge, const pixel *src, const ptrdiff_t stride, const int x, int y, int w, int h, int c_idx, const int is_intra_mip, const int mode, const int ref_idx, const int need_pdpc) |
static void FUNC() | intra_pred (const VVCLocalContext *lc, int x0, int y0, const int width, const int height, int c_idx) |
static av_always_inline void FUNC() | pred_planar (uint8_t *_src, const uint8_t *_top, const uint8_t *_left, const int w, const int h, const ptrdiff_t stride) |
static av_always_inline void FUNC() | mip_downsampling (int *reduced, const int boundary_size, const pixel *ref, const int n_tb_s) |
static av_always_inline void FUNC() | mip_reduced_pred (pixel *src, const ptrdiff_t stride, const int up_hor, const int up_ver, const int pred_size, const int *reduced, const int reduced_size, const int ow, const int temp0, const uint8_t *matrix, int is_transposed) |
static av_always_inline void FUNC() | mip_upsampling_1d (pixel *dst, const int dst_step, const int dst_stride, const int dst_height, const int factor, const pixel *boundary, const int boundary_step, const int pred_size) |
static av_always_inline void FUNC() | pred_mip (uint8_t *_src, const uint8_t *_top, const uint8_t *_left, const int w, const int h, const ptrdiff_t stride, int mode_id, int is_transposed) |
static av_always_inline pixel FUNC() | pred_dc_val (const pixel *top, const pixel *left, const int w, const int h) |
static av_always_inline void FUNC() | pred_dc (uint8_t *_src, const uint8_t *_top, const uint8_t *_left, const int w, const int h, const ptrdiff_t stride) |
static av_always_inline void FUNC() | pred_v (uint8_t *_src, const uint8_t *_top, const int w, const int h, const ptrdiff_t stride) |
static void FUNC() | pred_h (uint8_t *_src, const uint8_t *_left, const int w, const int h, const ptrdiff_t stride) |
static void FUNC() | pred_angular_v (uint8_t *_src, const uint8_t *_top, const uint8_t *_left, const int w, const int h, const ptrdiff_t stride, const int c_idx, const int mode, const int ref_idx, const int filter_flag, const int need_pdpc) |
static void FUNC() | pred_angular_h (uint8_t *_src, const uint8_t *_top, const uint8_t *_left, const int w, const int h, const ptrdiff_t stride, const int c_idx, const int mode, const int ref_idx, const int filter_flag, const int need_pdpc) |
static void FUNC() | ff_vvc_intra_dsp_init (VVCIntraDSPContext *const intra) |
Definition at line 27 of file intra_template.c.
#define MAX_PICK_POS 4 |
Definition at line 49 of file intra_template.c.
#define TOP 0 |
Definition at line 50 of file intra_template.c.
#define LEFT 1 |
Definition at line 51 of file intra_template.c.
#define INTRA_LUMA_FILTER | ( | p | ) | CLIP((p[0] * f[0] + p[1] * f[1] + p[2] * f[2] + p[3] * f[3] + 32) >> 6) |
Definition at line 890 of file intra_template.c.
Definition at line 891 of file intra_template.c.
|
static |
Definition at line 29 of file intra_template.c.
Referenced by intra_cclm_pred().
|
static |
Definition at line 53 of file intra_template.c.
Referenced by cclm_get_params().
|
static |
Definition at line 61 of file intra_template.c.
Referenced by cclm_select_samples().
|
static |
Definition at line 89 of file intra_template.c.
Referenced by cclm_select_luma().
|
static |
Definition at line 96 of file intra_template.c.
Referenced by cclm_select_samples().
|
static |
Definition at line 167 of file intra_template.c.
Referenced by cclm_select_samples().
|
static |
Definition at line 188 of file intra_template.c.
Referenced by cclm_get_params().
|
static |
Definition at line 215 of file intra_template.c.
Referenced by cclm_get_params().
|
static |
Definition at line 237 of file intra_template.c.
Referenced by intra_cclm_pred().
|
static |
Definition at line 282 of file intra_template.c.
Referenced by intra_cclm_pred().
|
static |
Definition at line 336 of file intra_template.c.
Referenced by intra_cclm_pred().
|
static |
Definition at line 352 of file intra_template.c.
Referenced by ff_vvc_intra_dsp_init().
|
static |
Definition at line 377 of file intra_template.c.
Referenced by lmcs_derive_chroma_scale().
|
static |
Definition at line 390 of file intra_template.c.
Referenced by lmcs_scale_chroma().
|
static |
Definition at line 431 of file intra_template.c.
Referenced by ff_vvc_intra_dsp_init().
|
static |
Definition at line 450 of file intra_template.c.
Referenced by prepare_intra_edge_params().
|
static |
Definition at line 467 of file intra_template.c.
Referenced by intra_pred().
|
static |
Definition at line 595 of file intra_template.c.
Referenced by ff_vvc_intra_dsp_init().
|
static |
Definition at line 686 of file intra_template.c.
Referenced by ff_vvc_intra_dsp_init().
|
static |
Definition at line 708 of file intra_template.c.
Referenced by pred_mip().
|
static |
Definition at line 728 of file intra_template.c.
Referenced by pred_mip().
|
static |
Definition at line 749 of file intra_template.c.
Referenced by pred_mip().
|
static |
Definition at line 773 of file intra_template.c.
Referenced by ff_vvc_intra_dsp_init().
|
static |
Definition at line 826 of file intra_template.c.
Referenced by pred_dc().
|
static |
Definition at line 847 of file intra_template.c.
Referenced by ff_vvc_intra_dsp_init().
|
static |
Definition at line 866 of file intra_template.c.
Referenced by ff_vvc_intra_dsp_init(), and pred_planar().
|
static |
Definition at line 877 of file intra_template.c.
Referenced by check_dmvr(), dmvr_mv_refine(), ff_vvc_intra_dsp_init(), and pred_planar().
|
static |
Definition at line 894 of file intra_template.c.
Referenced by ff_vvc_intra_dsp_init().
|
static |
Definition at line 950 of file intra_template.c.
Referenced by ff_vvc_intra_dsp_init().
|
static |
Definition at line 1003 of file intra_template.c.