(byte[] input, int firstByte)
| 69 | |
| 70 | |
| 71 | static int getThreeBytes(byte[] input, int firstByte) { |
| 72 | return ((input[firstByte] & 0xFF) << 16) + ((input[firstByte + 1] & 0xFF) << 8) + (input[firstByte + 2] & 0xFF); |
| 73 | } |
| 74 | |
| 75 | |
| 76 | static int getThreeBytes(ByteBuffer input, int firstByte) { |