Lines Matching refs:inc
628 int inc = 0;
633 inc = !!SAMPLE_CTB(s->skip_flag, x_cb - 1, y_cb);
635 inc += !!SAMPLE_CTB(s->skip_flag, x_cb, y_cb - 1);
637 return GET_CABAC(elem_offset[SKIP_FLAG] + inc);
644 int inc = 0;
646 while (prefix_val < 5 && GET_CABAC(elem_offset[CU_QP_DELTA] + inc)) {
648 inc = 1;
695 int inc = 0, depth_left = 0, depth_top = 0;
706 inc += (depth_left > ct_depth);
707 inc += (depth_top > ct_depth);
709 return GET_CABAC(elem_offset[SPLIT_CODING_UNIT_FLAG] + inc);
956 int inc;
958 inc = FFMIN(ctx_cg, 1) + (c_idx>0 ? 2 : 0);
960 return GET_CABAC(elem_offset[SIGNIFICANT_COEFF_GROUP_FLAG] + inc);
965 int inc = ctx_idx_map[(y_c << 2) + x_c] + offset;
966 return GET_CABAC(elem_offset[SIGNIFICANT_COEFF_FLAG] + inc);
974 static av_always_inline int coeff_abs_level_greater1_flag_decode(HEVCContext *s, int c_idx, int inc)
978 inc += 16;
980 return GET_CABAC(elem_offset[COEFF_ABS_LEVEL_GREATER1_FLAG] + inc);
983 static av_always_inline int coeff_abs_level_greater2_flag_decode(HEVCContext *s, int c_idx, int inc)
986 inc += 4;
988 return GET_CABAC(elem_offset[COEFF_ABS_LEVEL_GREATER2_FLAG] + inc);
1383 int inc = (ctx_set << 2) + greater1_ctx;
1385 coeff_abs_level_greater1_flag_decode(s, c_idx, inc);