HomeSort by relevance Sort by last modified time
    Searched refs:MAX_CTB_SIZE (Results 1 - 11 of 11) sorted by null

  /external/libhevc/common/
ihevc_defs.h 285 #define MAX_CTB_SIZE 64
305 #define MAX_TU_IN_CTB_ROW ((MAX_CTB_SIZE / MIN_TU_SIZE))
308 #define MAX_CU_IN_CTB_ROW ((MAX_CTB_SIZE / MIN_CU_SIZE))
311 #define MAX_PU_IN_CTB_ROW ((MAX_CTB_SIZE / MIN_PU_SIZE))
314 #define MAX_CU_IN_CTB ((MAX_CTB_SIZE / MIN_CU_SIZE) * \
315 (MAX_CTB_SIZE / MIN_CU_SIZE))
322 #define MAX_PU_IN_CTB ((MAX_CTB_SIZE / MIN_PU_SIZE) * \
323 (MAX_CTB_SIZE / MIN_PU_SIZE))
326 #define MAX_TU_IN_CTB ((MAX_CTB_SIZE / MIN_TU_SIZE) * \
327 (MAX_CTB_SIZE / MIN_TU_SIZE)
    [all...]
ihevc_sao.c 199 UWORD8 au1_mask[MAX_CTB_SIZE];
200 UWORD8 au1_src_left_tmp[MAX_CTB_SIZE];
208 memset(au1_mask, 0xFF, MAX_CTB_SIZE);
282 UWORD8 au1_mask[MAX_CTB_SIZE];
283 UWORD8 au1_src_left_tmp[2 * MAX_CTB_SIZE];
292 memset(au1_mask, 0xFF, MAX_CTB_SIZE);
378 UWORD8 au1_mask[MAX_CTB_SIZE];
379 UWORD8 au1_src_top_tmp[MAX_CTB_SIZE];
380 WORD8 au1_sign_up[MAX_CTB_SIZE];
389 memset(au1_mask, 0xFF, MAX_CTB_SIZE);
    [all...]
  /external/libhevc/decoder/
ihevcd_inter_pred.c 274 mv = CLIP3(ps_pu->mv.s_l0_mv.i2_mvx, (-((MAX_CTB_SIZE + pu_x + 7) << 2)), ((ps_sps->i2_pic_width_in_luma_samples - pu_x + 7) << 2));
278 mv = CLIP3(ps_pu->mv.s_l0_mv.i2_mvy, (-((MAX_CTB_SIZE + pu_y + 7) << 2)), ((ps_sps->i2_pic_height_in_luma_samples - pu_y + 7) << 2));
293 mv = CLIP3(ps_pu->mv.s_l1_mv.i2_mvx, (-((MAX_CTB_SIZE + pu_x + 7) << 2)), ((ps_sps->i2_pic_width_in_luma_samples - pu_x + 7) << 2));
297 mv = CLIP3(ps_pu->mv.s_l1_mv.i2_mvy, (-((MAX_CTB_SIZE + pu_y + 7) << 2)), ((ps_sps->i2_pic_height_in_luma_samples - pu_y + 7) << 2));
321 mv = CLIP3(ps_pu->mv.s_l0_mv.i2_mvx, (-((MAX_CTB_SIZE + pu_x + 7) << 2)), ((ps_sps->i2_pic_width_in_luma_samples - pu_x + 7) << 2));
325 mv = CLIP3(ps_pu->mv.s_l0_mv.i2_mvy, (-((MAX_CTB_SIZE + pu_y + 7) << 2)), ((ps_sps->i2_pic_height_in_luma_samples - pu_y + 7) << 2));
339 mv = CLIP3(ps_pu->mv.s_l1_mv.i2_mvx, (-((MAX_CTB_SIZE + pu_x + 7) << 2)), ((ps_sps->i2_pic_width_in_luma_samples - pu_x + 7) << 2));
343 mv = CLIP3(ps_pu->mv.s_l1_mv.i2_mvy, (-((MAX_CTB_SIZE + pu_y + 7) << 2)), ((ps_sps->i2_pic_height_in_luma_samples - pu_y + 7) << 2));
ihevcd_get_mv.c 125 UWORD32 au4_nbr_avail[MAX_CTB_SIZE / MIN_PU_SIZE
151 nbr_pu_idx_strd = MAX_CTB_SIZE / MIN_PU_SIZE + 2;
166 (MAX_CTB_SIZE / MIN_PU_SIZE + 2) * sizeof(UWORD32));
ihevcd_api.c     [all...]
ihevcd_boundary_strength.c 317 /* shift += (((start_pos_x >> 1) & (MAX_CTB_SIZE / ctb_size - 1)) << (log2_ctb_size - 1));
330 /* shift += (((start_pos_y >> 1) & (MAX_CTB_SIZE / ctb_size - 1)) << (log2_ctb_size - 1));
426 /* WORD32 offset = (((num_rows_remaining >> 3) & (MAX_CTB_SIZE / ctb_size - 1)) << (log2_ctb_size - 4));
440 /* WORD32 offset = (((num_cols_remaining >> 3) & (MAX_CTB_SIZE / ctb_size - 1)) << (log2_ctb_size - 4));
601 /* shift += (((start_pos_x >> 1) & (MAX_CTB_SIZE / ctb_size - 1)) << (log2_ctb_size - 1));
614 /* shift += (((start_pos_y >> 1) & (MAX_CTB_SIZE / ctb_size - 1)) << (log2_ctb_size - 1));
635 /* shift += (((start_pos_x >> 1) & (MAX_CTB_SIZE / ctb_size - 1)) << (log2_ctb_size - 1));
648 /* shift += (((start_pos_y >> 1) & (MAX_CTB_SIZE / ctb_size - 1)) << (log2_ctb_size - 1));
663 shift += (((end_pos_x >> 1) & ((MAX_CTB_SIZE >> log2_ctb_size) - 1)) << (log2_ctb_size - 1));
679 shift += (((end_pos_y >> 1) & ((MAX_CTB_SIZE >> log2_ctb_size) - 1)) << (log2_ctb_size - 1))
    [all...]
ihevcd_sao.c 234 UWORD8 au1_src_copy[(MAX_CTB_SIZE + 2) * (MAX_CTB_SIZE + 2)];
235 UWORD8 *pu1_src_copy = au1_src_copy + (MAX_CTB_SIZE + 2) + 1;
236 WORD32 tmp_strd = MAX_CTB_SIZE + 2;
383 UWORD8 au1_src_copy[(MAX_CTB_SIZE + 4) * (MAX_CTB_SIZE + 2)];
384 UWORD8 *pu1_src_copy = au1_src_copy + (MAX_CTB_SIZE + 4) + 2;
385 WORD32 tmp_strd = MAX_CTB_SIZE + 4;
612 backup_strd = 2 * MAX_CTB_SIZE;
    [all...]
ihevcd_iquant_itrans_recon_ctb.c 552 UWORD32 au4_intra_nbr_avail[MAX_CTB_SIZE / MIN_TU_SIZE
619 (MAX_CTB_SIZE / MIN_TU_SIZE + 2) * sizeof(UWORD32));
    [all...]
ihevcd_process_slice.c 704 WORD32 nbr_pu_idx_strd = MAX_CTB_SIZE / MIN_PU_SIZE + 2;
    [all...]
ihevcd_parse_slice.c     [all...]
  /external/libhevc/common/x86/
ihevc_sao_ssse3_intr.c     [all...]

Completed in 143 milliseconds