decodeSZX static method

int decodeSZX(
  1. int szx
)

Gets the real block size which is 2 ^ (SZX + 4).

Implementation

static int decodeSZX(final int szx) => 1 << (szx + 4);