Lines Matching refs:y_c
962 static av_always_inline int significant_coeff_flag_decode(HEVCContext *s, int x_c, int y_c, in significant_coeff_flag_decode() argument
965 int inc = ctx_idx_map[(y_c << 2) + x_c] + offset; in significant_coeff_flag_decode()
1038 y_c = (y_cg << 2) + scan_y_off[n]; \ in ff_hevc_hls_residual_coding()
1229 int x_cg, y_cg, x_c, y_c, pos; in ff_hevc_hls_residual_coding() local
1316 y_c = scan_y_off[n]; in ff_hevc_hls_residual_coding()
1317 if (significant_coeff_flag_decode(s, x_c, y_c, scf_offset, ctx_idx_map_p)) { in ff_hevc_hls_residual_coding()
1461 if(y_c || x_c || log2_trafo_size < 4) { in ff_hevc_hls_residual_coding()
1463 case 3: pos = (y_c << 3) + x_c; break; in ff_hevc_hls_residual_coding()
1464 case 4: pos = ((y_c >> 1) << 3) + (x_c >> 1); break; in ff_hevc_hls_residual_coding()
1465 case 5: pos = ((y_c >> 2) << 3) + (x_c >> 2); break; in ff_hevc_hls_residual_coding()
1466 default: pos = (y_c << 2) + x_c; break; in ff_hevc_hls_residual_coding()
1482 coeffs[y_c * trafo_size + x_c] = trans_coeff_level; in ff_hevc_hls_residual_coding()