OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MAX_CTB_SIZE
(Results
1 - 11
of
11
) sorted by null
/external/libhevc/common/
ihevc_defs.h
259
#define MIN_TILE_WD
MAX_CTB_SIZE
262
#define MIN_TILE_HT
MAX_CTB_SIZE
295
#define
MAX_CTB_SIZE
64
315
#define MAX_TU_IN_CTB_ROW ((
MAX_CTB_SIZE
/ MIN_TU_SIZE))
318
#define MAX_CU_IN_CTB_ROW ((
MAX_CTB_SIZE
/ MIN_CU_SIZE))
321
#define MAX_PU_IN_CTB_ROW ((
MAX_CTB_SIZE
/ MIN_PU_SIZE))
324
#define MAX_CU_IN_CTB ((
MAX_CTB_SIZE
/ MIN_CU_SIZE) * \
325
(
MAX_CTB_SIZE
/ MIN_CU_SIZE))
332
#define MAX_PU_IN_CTB ((
MAX_CTB_SIZE
/ MIN_PU_SIZE) * \
333
(
MAX_CTB_SIZE
/ MIN_PU_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));
428
/* WORD32 offset = (((num_rows_remaining >> 3) & (
MAX_CTB_SIZE
/ ctb_size - 1)) << (log2_ctb_size - 4));
442
/* WORD32 offset = (((num_cols_remaining >> 3) & (
MAX_CTB_SIZE
/ ctb_size - 1)) << (log2_ctb_size - 4));
603
/* shift += (((start_pos_x >> 1) & (
MAX_CTB_SIZE
/ ctb_size - 1)) << (log2_ctb_size - 1));
616
/* shift += (((start_pos_y >> 1) & (
MAX_CTB_SIZE
/ ctb_size - 1)) << (log2_ctb_size - 1));
637
/* shift += (((start_pos_x >> 1) & (
MAX_CTB_SIZE
/ ctb_size - 1)) << (log2_ctb_size - 1));
650
/* shift += (((start_pos_y >> 1) & (
MAX_CTB_SIZE
/ ctb_size - 1)) << (log2_ctb_size - 1));
665
shift += (((end_pos_x >> 1) & ((
MAX_CTB_SIZE
>> log2_ctb_size) - 1)) << (log2_ctb_size - 1));
681
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
706
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 1392 milliseconds