HomeSort by relevance Sort by last modified time
    Searched refs:quants (Results 1 - 7 of 7) sorted by null

  /external/libvpx/libvpx/vp9/encoder/
vp9_quantize.c 219 QUANTS *const quants = &cpi->quants; local
240 invert_quant(&quants->y_quant[q][i], &quants->y_quant_shift[q][i], quant);
241 quants->y_quant_fp[q][i] = (1 << 16) / quant;
242 quants->y_round_fp[q][i] = (qrounding_factor_fp * quant) >> 7;
243 quants->y_zbin[q][i] = ROUND_POWER_OF_TWO(qzbin_factor * quant, 7);
244 quants->y_round[q][i] = (qrounding_factor * quant) >> 7;
250 invert_quant(&quants->uv_quant[q][i], &quants->uv_quant_shift[q][i]
282 QUANTS *const quants = &cpi->quants; local
    [all...]
vp9_encoder.h 565 QUANTS quants; member in struct:VP9_COMP
  /external/libaom/libaom/av1/encoder/
av1_quantize.c 583 int v_ac_delta_q, QUANTS *const quants,
599 invert_quant(&quants->y_quant[q][i], &quants->y_quant_shift[q][i],
601 quants->y_quant_fp[q][i] = (1 << 16) / quant_QTX;
602 quants->y_round_fp[q][i] = (qrounding_factor_fp * quant_QTX) >> 7;
603 quants->y_zbin[q][i] = ROUND_POWER_OF_TWO(qzbin_factor * quant_QTX, 7);
604 quants->y_round[q][i] = (qrounding_factor * quant_QTX) >> 7;
614 invert_quant(&quants->u_quant[q][i], &quants->u_quant_shift[q][i]
671 QUANTS *const quants = &cpi->quants; local
682 const QUANTS *const quants = &cpi->quants; local
    [all...]
av1_quantize.h 43 // The QUANTS structure is used only for internal quantizer setup in
70 } QUANTS;
98 int v_ac_delta_q, QUANTS *const quants,
encoder.h 715 QUANTS quants; member in struct:AV1_COMP
    [all...]
  /external/v4l2_codec2/vda/
vp9_uncompressed_header_parser.h 33 void ReadQuantizationParams(Vp9QuantizationParams* quants);
vp9_uncompressed_header_parser.cc 801 Vp9QuantizationParams* quants) {
802 quants->base_q_idx = reader_.ReadLiteral(8);
804 quants->delta_q_y_dc = ReadDeltaQ();
805 quants->delta_q_uv_dc = ReadDeltaQ();
806 quants->delta_q_uv_ac = ReadDeltaQ();

Completed in 91 milliseconds