Searched refs:x_ctb (Results 1 – 3 of 3) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | hevc_filter.c | 193 int c_idx, int x_ctb, int y_ctb) in copy_CTB_to_hv() argument 206 …copy_vert(s->sao_pixel_buffer_v[c_idx] + (((2 * x_ctb) * h + y) << sh), src, sh, height, 1 << sh, … in copy_CTB_to_hv() 208 …copy_vert(s->sao_pixel_buffer_v[c_idx] + (((2 * x_ctb + 1) * h + y) << sh), src + ((width - 1) << … in copy_CTB_to_hv() 252 int x_ctb = x >> s->ps.sps->log2_ctb_size; in sao_filter_CTB() local 254 int ctb_addr_rs = y_ctb * s->ps.sps->ctb_width + x_ctb; in sao_filter_CTB() 256 SAOParams *sao = &CTB(s->sao, x_ctb, y_ctb); in sao_filter_CTB() 261 uint8_t lfase = CTB(s->filter_slice_edges, x_ctb, y_ctb); in sao_filter_CTB() 270 edges[0] = x_ctb == 0; in sao_filter_CTB() 272 edges[2] = x_ctb == s->ps.sps->ctb_width - 1; in sao_filter_CTB() 278 …t_edge[0] = (!lfase && CTB(s->tab_slice_address, x_ctb, y_ctb) != CTB(s->tab_slice_address, x_c… in sao_filter_CTB() [all …]
|
D | hevcdec.c | 2404 static void hls_decode_neighbour(HEVCContext *s, int x_ctb, int y_ctb, in hls_decode_neighbour() argument 2415 if (x_ctb == 0 && (y_ctb & (ctb_size - 1)) == 0) in hls_decode_neighbour() 2420 int idxX = s->ps.pps->col_idxX[x_ctb >> s->ps.sps->log2_ctb_size]; in hls_decode_neighbour() 2421 … lc->end_of_tiles_x = x_ctb + (s->ps.pps->column_width[idxX] << s->ps.sps->log2_ctb_size); in hls_decode_neighbour() 2432 …if (x_ctb > 0 && s->ps.pps->tile_id[ctb_addr_ts] != s->ps.pps->tile_id[s->ps.pps->ctb_addr_rs_to_t… in hls_decode_neighbour() 2434 if (x_ctb > 0 && s->tab_slice_address[ctb_addr_rs] != s->tab_slice_address[ctb_addr_rs - 1]) in hls_decode_neighbour() 2447 …lc->ctb_left_flag = ((x_ctb > 0) && (ctb_addr_in_slice > 0) && !(lc->boundary_flags & BOUNDARY_LEF… in hls_decode_neighbour() 2450 …lc->ctb_up_left_flag = ((x_ctb > 0) && (y_ctb > 0) && (ctb_addr_in_slice-1 >= s->ps.sps->ctb_widt… in hls_decode_neighbour() 2458 int x_ctb = 0; in hls_decode_entry() local 2479 …x_ctb = (ctb_addr_rs % ((s->ps.sps->width + ctb_size - 1) >> s->ps.sps->log2_ctb_size)) << s->ps.s… in hls_decode_entry() [all …]
|
D | hevcdec.h | 683 void ff_hevc_hls_filters(HEVCContext *s, int x_ctb, int y_ctb, int ctb_size);
|