Searched refs:y_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 200 memcpy(s->sao_pixel_buffer_h[c_idx] + (((2 * y_ctb) * w + x) << sh), in copy_CTB_to_hv() 202 memcpy(s->sao_pixel_buffer_h[c_idx] + (((2 * y_ctb + 1) * w + x) << sh), in copy_CTB_to_hv() 253 int y_ctb = y >> 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() 271 edges[1] = y_ctb == 0; in sao_filter_CTB() 273 edges[3] = y_ctb == s->ps.sps->ctb_height - 1; in sao_filter_CTB() 278 … = (!lfase && CTB(s->tab_slice_address, x_ctb, y_ctb) != CTB(s->tab_slice_address, x_ctb - 1, y… in sao_filter_CTB() [all …]
|
D | hevcdec.c | 1984 int y_ctb = (y0 >> (s->ps.sps->log2_ctb_size)) << (s->ps.sps->log2_ctb_size); in luma_intra_pred_mode() local 1992 if ((y0 - 1) < y_ctb) in luma_intra_pred_mode() 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() 2428 lc->end_of_tiles_y = FFMIN(y_ctb + ctb_size, s->ps.sps->height); in hls_decode_neighbour() 2436 …if (y_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() 2438 …if (y_ctb > 0 && s->tab_slice_address[ctb_addr_rs] != s->tab_slice_address[ctb_addr_rs - s->ps.sps… in hls_decode_neighbour() 2448 …lc->ctb_up_flag = ((y_ctb > 0) && (ctb_addr_in_slice >= s->ps.sps->ctb_width) && !(lc->boundary_… in hls_decode_neighbour() 2449 …lc->ctb_up_right_flag = ((y_ctb > 0) && (ctb_addr_in_slice+1 >= s->ps.sps->ctb_width) && (s->ps.p… 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() [all …]
|
D | hevcdec.h | 683 void ff_hevc_hls_filters(HEVCContext *s, int x_ctb, int y_ctb, int ctb_size);
|