Reads next 16-bit value, LSB first
()
| 657 | * Reads next 16-bit value, LSB first |
| 658 | */ |
| 659 | protected int readShort() { |
| 660 | // read 16-bit value, LSB first |
| 661 | return read() | (read() << 8); |
| 662 | } |
| 663 | |
| 664 | /** |
| 665 | * Resets frame state for reading next image. |
no test coverage detected