Searched refs:x_cb (Results 1 – 5 of 5) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | hevc_cabac.c | 625 int ff_hevc_skip_flag_decode(HEVCContext *s, int x0, int y0, int x_cb, int y_cb) in ff_hevc_skip_flag_decode() argument 633 inc = !!SAMPLE_CTB(s->skip_flag, x_cb - 1, y_cb); in ff_hevc_skip_flag_decode() 635 inc += !!SAMPLE_CTB(s->skip_flag, x_cb, y_cb - 1); in ff_hevc_skip_flag_decode() 698 int x_cb = x0 >> s->ps.sps->log2_min_cb_size; in ff_hevc_split_coding_unit_flag_decode() local 702 depth_left = s->tab_ct_depth[(y_cb) * s->ps.sps->min_cb_width + x_cb - 1]; in ff_hevc_split_coding_unit_flag_decode() 704 depth_top = s->tab_ct_depth[(y_cb - 1) * s->ps.sps->min_cb_width + x_cb]; in ff_hevc_split_coding_unit_flag_decode()
|
D | hevc_refs.c | 59 int x_cb = x0 >> s->ps.sps->log2_ctb_size; in ff_hevc_get_ref_list() local 62 int ctb_addr_ts = s->ps.pps->ctb_addr_rs_to_ts[y_cb * pic_width_cb + x_cb]; in ff_hevc_get_ref_list()
|
D | hevcdec.c | 1863 int x_cb = x0 >> log2_min_cb_size; in hls_prediction_unit() local 1868 int skip_flag = SAMPLE_CTB(s->skip_flag, x_cb, y_cb); in hls_prediction_unit() 2052 int x_cb = x0 >> s->ps.sps->log2_min_cb_size; in set_ct_depth() local 2057 memset(&s->tab_ct_depth[(y_cb + y) * s->ps.sps->min_cb_width + x_cb], in set_ct_depth() 2163 int x_cb = x0 >> log2_min_cb_size; in hls_coding_unit() local 2175 SAMPLE_CTB(s->skip_flag, x_cb, y_cb) = 0; in hls_coding_unit() 2186 uint8_t skip_flag = ff_hevc_skip_flag_decode(s, x0, y0, x_cb, y_cb); in hls_coding_unit() 2188 x = y_cb * min_cb_width + x_cb; in hls_coding_unit() 2195 x = y_cb * min_cb_width + x_cb; in hls_coding_unit() 2202 if (SAMPLE_CTB(s->skip_flag, x_cb, y_cb)) { in hls_coding_unit() [all …]
|
D | hevc_filter.c | 87 int x_cb = xQgBase >> s->ps.sps->log2_min_cb_size; in get_qPy_pred() local 107 qPy_a = s->qp_y_tab[(x_cb - 1) + y_cb * min_cb_width]; in get_qPy_pred() 113 qPy_b = s->qp_y_tab[x_cb + (y_cb - 1) * min_cb_width]; in get_qPy_pred()
|
D | hevcdec.h | 609 int x_cb, int y_cb);
|