mirror of
https://github.com/haraldk/TwelveMonkeys.git
synced 2026-04-25 00:00:03 -04:00
Invert EOF check
This commit is contained in:
+2
-4
@@ -174,13 +174,11 @@ final class CCITTFaxDecoderStream extends FilterInputStream {
|
|||||||
for (int i = 12; i < limitBits; i++) {
|
for (int i = 12; i < limitBits; i++) {
|
||||||
if (i % 8 == 0) {
|
if (i % 8 == 0) {
|
||||||
read = in.read();
|
read = in.read();
|
||||||
if (read > -1) {
|
if (read == -1) {
|
||||||
streamByte = (byte) read;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
// no EOL before stream end
|
// no EOL before stream end
|
||||||
return TIFFBaseline.COMPRESSION_CCITT_MODIFIED_HUFFMAN_RLE;
|
return TIFFBaseline.COMPRESSION_CCITT_MODIFIED_HUFFMAN_RLE;
|
||||||
}
|
}
|
||||||
|
streamByte = (byte) read;
|
||||||
}
|
}
|
||||||
|
|
||||||
b = (short) ((b << 1) + ((streamByte >> (7 - (i % 8))) & 0x01));
|
b = (short) ((b << 1) + ((streamByte >> (7 - (i % 8))) & 0x01));
|
||||||
|
|||||||
Reference in New Issue
Block a user