Searched refs:N_TAPS (Results 1 – 2 of 2) sorted by relevance
/external/libhevc/encoder/arm/ |
D | ihevce_decomp_pre_intra_pass_neon.c | 70 #define N_TAPS 7 in ihevce_scaling_filter_mxn() macro 71 const WORD16 i4_ftaps[N_TAPS] = { -18, 0, 80, 132, 80, 0, -18 }; in ihevce_scaling_filter_mxn() 129 #define MAX_BLK_SZ (MAX_CTB_SIZE + ((N_TAPS >> 1) << 1)) in ihevce_scale_by_2_neon() 132 UWORD8 *pu1_cpy = au1_cpy + cpy_strd * (N_TAPS >> 1) + (N_TAPS >> 1); in ihevce_scale_by_2_neon() 153 col_start = (wd_offset < (N_TAPS >> 1)) ? 1 : 0; in ihevce_scale_by_2_neon() 154 row_start = (ht_offset < (N_TAPS >> 1)) ? 1 : 0; in ihevce_scale_by_2_neon() 155 col_end = ((wd_offset + block_wd) > (wd - (N_TAPS >> 1))) ? 1 : 0; in ihevce_scale_by_2_neon() 156 row_end = ((ht_offset + block_ht) > (ht - (N_TAPS >> 1))) ? 1 : 0; in ihevce_scale_by_2_neon()
|
/external/libhevc/encoder/ |
D | ihevce_decomp_pre_intra_pass.c | 955 #define N_TAPS 7 in ihevce_scaling_filter_mxn() macro 956 const WORD16 i4_ftaps[N_TAPS] = { -18, 0, 80, 132, 80, 0, -18 }; in ihevce_scaling_filter_mxn() 1015 #define N_TAPS 7 in ihevce_scale_by_2() macro 1016 #define MAX_BLK_SZ (MAX_CTB_SIZE + ((N_TAPS >> 1) << 1)) in ihevce_scale_by_2() 1019 UWORD8 *pu1_cpy = au1_cpy + cpy_strd * (N_TAPS >> 1) + (N_TAPS >> 1); in ihevce_scale_by_2() 1040 col_start = (wd_offset < (N_TAPS >> 1)) ? 1 : 0; in ihevce_scale_by_2() 1041 row_start = (ht_offset < (N_TAPS >> 1)) ? 1 : 0; in ihevce_scale_by_2() 1042 col_end = ((wd_offset + block_wd) > (wd - (N_TAPS >> 1))) ? 1 : 0; in ihevce_scale_by_2() 1043 row_end = ((ht_offset + block_ht) > (ht - (N_TAPS >> 1))) ? 1 : 0; in ihevce_scale_by_2()
|