(int[] tableGroup, int tableIdx, State s)
| 428 | } |
| 429 | |
| 430 | private static int readBlockLength(int[] tableGroup, int tableIdx, State s) { |
| 431 | BitReader.fillBitWindow(s); |
| 432 | final int code = readSymbol(tableGroup, tableIdx, s); |
| 433 | final int n = BLOCK_LENGTH_N_BITS[code]; |
| 434 | BitReader.fillBitWindow(s); |
| 435 | return BLOCK_LENGTH_OFFSET[code] + BitReader.readBits(s, n); |
| 436 | } |
| 437 | |
| 438 | private static void moveToFront(int[] v, int index) { |
| 439 | int i = index; |
no test coverage detected