12#ifndef AOM_AV1_COMMON_AV1_LOOPFILTER_H_
13#define AOM_AV1_COMMON_AV1_LOOPFILTER_H_
15#include "config/aom_config.h"
17#include "aom/internal/aom_codec_internal.h"
19#include "aom_ports/mem.h"
20#include "av1/common/blockd.h"
21#include "av1/common/seg_common.h"
27#define MAX_LOOP_FILTER 63
28#define MAX_SHARPNESS 7
39enum { VERT_EDGE = 0, HORZ_EDGE = 1, NUM_EDGE_DIRS } UENUM1BYTE(EDGE_DIR);
51 uint8_t mode_ref_delta_enabled;
52 uint8_t mode_ref_delta_update;
56 int8_t ref_deltas[REF_FRAMES];
59 int8_t mode_deltas[MAX_MODE_LF_DELTAS];
65 DECLARE_ALIGNED(SIMD_WIDTH, uint8_t, mblim[SIMD_WIDTH]);
66 DECLARE_ALIGNED(SIMD_WIDTH, uint8_t, lim[SIMD_WIDTH]);
67 DECLARE_ALIGNED(SIMD_WIDTH, uint8_t, hev_thr[SIMD_WIDTH]);
71 loop_filter_thresh lfthr[MAX_LOOP_FILTER + 1];
72 uint8_t lvl[MAX_MB_PLANE][MAX_SEGMENTS][2][REF_FRAMES][MAX_MODE_LF_DELTAS];
75typedef struct AV1_DEBLOCKING_PARAMETERS {
77 uint8_t filter_length;
79 const loop_filter_thresh *lfthr;
80} AV1_DEBLOCKING_PARAMETERS;
82typedef struct LoopFilterWorkerData {
85 struct macroblockd_plane planes[MAX_MB_PLANE];
90 AV1_DEBLOCKING_PARAMETERS params_buf[MAX_MIB_SIZE];
91 TX_SIZE tx_buf[MAX_MIB_SIZE];
92 struct aom_internal_error_info error_info;
101void av1_loop_filter_init(
struct AV1Common *cm);
103void av1_loop_filter_frame_init(
struct AV1Common *cm,
int plane_start,
106void av1_filter_block_plane_vert(
const struct AV1Common *
const cm,
108 const MACROBLOCKD_PLANE *
const plane_ptr,
109 const uint32_t mi_row,
const uint32_t mi_col);
111void av1_filter_block_plane_horz(
const struct AV1Common *
const cm,
113 const MACROBLOCKD_PLANE *
const plane_ptr,
114 const uint32_t mi_row,
const uint32_t mi_col);
116void av1_filter_block_plane_vert_opt(
118 const MACROBLOCKD_PLANE *
const plane_ptr,
const uint32_t mi_row,
119 const uint32_t mi_col, AV1_DEBLOCKING_PARAMETERS *params_buf,
120 TX_SIZE *tx_buf,
int num_mis_in_lpf_unit_height_log2);
122void av1_filter_block_plane_vert_opt_chroma(
124 const MACROBLOCKD_PLANE *
const plane_ptr,
const uint32_t mi_row,
125 const uint32_t mi_col, AV1_DEBLOCKING_PARAMETERS *params_buf,
126 TX_SIZE *tx_buf,
int plane,
bool joint_filter_chroma,
127 int num_mis_in_lpf_unit_height_log2);
129void av1_filter_block_plane_horz_opt(
131 const MACROBLOCKD_PLANE *
const plane_ptr,
const uint32_t mi_row,
132 const uint32_t mi_col, AV1_DEBLOCKING_PARAMETERS *params_buf,
133 TX_SIZE *tx_buf,
int num_mis_in_lpf_unit_height_log2);
135void av1_filter_block_plane_horz_opt_chroma(
137 const MACROBLOCKD_PLANE *
const plane_ptr,
const uint32_t mi_row,
138 const uint32_t mi_col, AV1_DEBLOCKING_PARAMETERS *params_buf,
139 TX_SIZE *tx_buf,
int plane,
bool joint_filter_chroma,
140 int num_mis_in_lpf_unit_height_log2);
Top level common structure used by both encoder and decoder.
Definition av1_common_int.h:757
Variables related to current coding block.
Definition blockd.h:570
YV12 frame buffer data structure.
Definition yv12config.h:46