• Home
  • Raw
  • Download

Lines Matching refs:stream_format_code

336 static void imc_read_level_coeffs(IMCContext *q, int stream_format_code,  in imc_read_level_coeffs()  argument
345 s = stream_format_code >> 1; in imc_read_level_coeffs()
352 if (stream_format_code & 4) in imc_read_level_coeffs()
364 static void imc_read_level_coeffs_raw(IMCContext *q, int stream_format_code, in imc_read_level_coeffs_raw() argument
455 int stream_format_code, int freebits, int flag) in bit_allocation() argument
504 if (stream_format_code & 0x2) { in bit_allocation()
511 for (i = (stream_format_code & 0x2) ? 4 : 0; i < BANDS - 1; i++) { in bit_allocation()
531 for (j = (stream_format_code & 0x2) ? 4 : 0; j < BANDS; j++) { in bit_allocation()
553 for (i = (stream_format_code & 0x2) ? 4 : 0; i < BANDS; i++) { in bit_allocation()
597 if (stream_format_code & 0x2) { in bit_allocation()
762 int stream_format_code) in inverse_quant_coeff() argument
783 quantizer = imc_quantizer2[(stream_format_code & 2) >> 1]; in inverse_quant_coeff()
789 … quantizer = imc_quantizer1[((stream_format_code & 2) >> 1) | (chctx->bandFlagsBuf[i] << 1)]; in inverse_quant_coeff()
875 int stream_format_code; in imc_decode_block() local
890 stream_format_code = get_bits(&q->gb, 3); in imc_decode_block()
892 if (stream_format_code & 0x04) in imc_decode_block()
904 if (stream_format_code & 0x1) in imc_decode_block()
905 imc_read_level_coeffs_raw(q, stream_format_code, chctx->levlCoeffBuf); in imc_decode_block()
907 imc_read_level_coeffs(q, stream_format_code, chctx->levlCoeffBuf); in imc_decode_block()
909 if (stream_format_code & 0x1) in imc_decode_block()
912 else if (stream_format_code & 0x4) in imc_decode_block()
929 if (stream_format_code & 0x1) { in imc_decode_block()
957 if (stream_format_code & 0x2) { in imc_decode_block()
965 if (stream_format_code & 0x1) in imc_decode_block()
978 if (!(stream_format_code & 0x2)) in imc_decode_block()
982 if ((ret = bit_allocation(q, chctx, stream_format_code, in imc_decode_block()
990 if (stream_format_code & 0x1) { in imc_decode_block()
1009 if (inverse_quant_coeff(q, chctx, stream_format_code) < 0) { in imc_decode_block()