Lines Matching defs:quant_idx
651 int quant_idx;
724 quant_idx = get_bits(gb, 4);
726 quant_idx = q;
727 if (quant_idx > 15U) {
728 av_log(c->avctx, AV_LOG_ERROR, "quant_index %d out of range\n", quant_idx);
735 return quant_idx;
866 int qp, quant_idx, coef_count, coef_idx[64];
921 if ((quant_idx = read_dct_coeffs(c, gb, dctblock, bink_scan, &coef_count, coef_idx, qp)) < 0)
922 return quant_idx;
923 unquantize_dct_coeffs(dctblock, binkb_intra_quant[quant_idx], coef_count, coef_idx, bink_scan);
956 if ((quant_idx = read_dct_coeffs(c, gb, dctblock, bink_scan, &coef_count, coef_idx, qp)) < 0)
957 return quant_idx;
958 unquantize_dct_coeffs(dctblock, binkb_inter_quant[quant_idx], coef_count, coef_idx, bink_scan);
1032 int coordmap[64], quant_idx, coef_count, coef_idx[64];
1132 if ((quant_idx = read_dct_coeffs(c, gb, dctblock, bink_scan, &coef_count, coef_idx, -1)) < 0)
1133 return quant_idx;
1134 unquantize_dct_coeffs(dctblock, bink_intra_quant[quant_idx], coef_count, coef_idx, bink_scan);
1207 if ((quant_idx = read_dct_coeffs(c, gb, dctblock, bink_scan, &coef_count, coef_idx, -1)) < 0)
1208 return quant_idx;
1209 unquantize_dct_coeffs(dctblock, bink_intra_quant[quant_idx], coef_count, coef_idx, bink_scan);
1223 if ((quant_idx = read_dct_coeffs(c, gb, dctblock, bink_scan, &coef_count, coef_idx, -1)) < 0)
1224 return quant_idx;
1225 unquantize_dct_coeffs(dctblock, bink_inter_quant[quant_idx], coef_count, coef_idx, bink_scan);