1 11 package org.eclipse.swt.internal.image; 12 13 14 final class JPEGRestartInterval extends JPEGFixedSizeSegment { 15 16 public JPEGRestartInterval(LEDataInputStream byteStream) { 17 super(byteStream); 18 } 19 20 public int signature() { 21 return JPEGFileFormat.DRI; 22 } 23 24 public int getRestartInterval() { 25 return ((reference[4] & 0xFF) << 8 | (reference[5] & 0xFF)); 26 } 27 28 public int fixedSize() { 29 return 6; 30 } 31 } 32 | Popular Tags |