• Home
  • Raw
  • Download

Lines Matching refs:stream_format_code

338 static void imc_read_level_coeffs(IMCContext *q, int stream_format_code,  in imc_read_level_coeffs()  argument
347 s = stream_format_code >> 1; in imc_read_level_coeffs()
354 if (stream_format_code & 4) in imc_read_level_coeffs()
366 static void imc_read_level_coeffs_raw(IMCContext *q, int stream_format_code, in imc_read_level_coeffs_raw() argument
457 int stream_format_code, int freebits, int flag) in bit_allocation() argument
506 if (stream_format_code & 0x2) { in bit_allocation()
513 for (i = (stream_format_code & 0x2) ? 4 : 0; i < BANDS - 1; i++) { in bit_allocation()
533 for (j = (stream_format_code & 0x2) ? 4 : 0; j < BANDS; j++) { in bit_allocation()
555 for (i = (stream_format_code & 0x2) ? 4 : 0; i < BANDS; i++) { in bit_allocation()
599 if (stream_format_code & 0x2) { in bit_allocation()
764 int stream_format_code) in inverse_quant_coeff() argument
785 quantizer = imc_quantizer2[(stream_format_code & 2) >> 1]; in inverse_quant_coeff()
791 … quantizer = imc_quantizer1[((stream_format_code & 2) >> 1) | (chctx->bandFlagsBuf[i] << 1)]; in inverse_quant_coeff()
876 int stream_format_code; in imc_decode_block() local
891 stream_format_code = get_bits(&q->gb, 3); in imc_decode_block()
893 if (stream_format_code & 0x04) in imc_decode_block()
905 if (stream_format_code & 0x1) in imc_decode_block()
906 imc_read_level_coeffs_raw(q, stream_format_code, chctx->levlCoeffBuf); in imc_decode_block()
908 imc_read_level_coeffs(q, stream_format_code, chctx->levlCoeffBuf); in imc_decode_block()
910 if (stream_format_code & 0x1) in imc_decode_block()
913 else if (stream_format_code & 0x4) in imc_decode_block()
929 if (stream_format_code & 0x1) { in imc_decode_block()
956 if (stream_format_code & 0x2) { in imc_decode_block()
964 if (stream_format_code & 0x1) in imc_decode_block()
977 if (!(stream_format_code & 0x2)) in imc_decode_block()
981 if ((ret = bit_allocation(q, chctx, stream_format_code, in imc_decode_block()
989 if (stream_format_code & 0x1) { in imc_decode_block()
1008 if (inverse_quant_coeff(q, chctx, stream_format_code) < 0) { in imc_decode_block()