Searched refs:SOI (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/jpeg/
H A DJPEGImageReaderSpi.java72 // If the first two bytes are a JPEG SOI marker, it's probably
77 if ((byte1 == 0xFF) && (byte2 == JPEG.SOI)) {
H A DJPEG.java109 public static final int SOI = 0xD8; field in class:JPEG
H A DJPEGImageReader.java420 case JPEG.SOI:
556 if (byteval == JPEG.SOI) {
566 // We hit the end of the stream before we hit an SOI, so no image
H A DJPEGMetadata.java157 // The first three bytes should be FF, SOI, FF
159 || ((buffer.buf[1] & 0xff) != JPEG.SOI)
225 ("JFIF APP0 must be first marker after SOI");

Completed in 42 milliseconds