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