Searched defs:qTables (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/imageio/plugins/jpeg/
H A DJPEGImageReadParam.java83 private JPEGQTable[] qTables = null; field in class:JPEGImageReadParam
100 return (qTables != null);
114 * @param qTables an array of quantization table objects.
124 public void setDecodeTables(JPEGQTable[] qTables, argument
127 if ((qTables == null) ||
130 (qTables.length > 4) ||
137 this.qTables = (JPEGQTable[])qTables.clone();
149 this.qTables = null;
165 return (qTables !
[all...]
H A DJPEGImageWriteParam.java94 private JPEGQTable[] qTables = null; field in class:JPEGImageWriteParam
190 return (qTables != null);
203 * @param qTables An array of quantization table objects.
213 public void setEncodeTables(JPEGQTable[] qTables, argument
216 if ((qTables == null) ||
219 (qTables.length > 4) ||
225 this.qTables = (JPEGQTable[])qTables.clone();
237 this.qTables = null;
253 return (qTables !
[all...]

Completed in 30 milliseconds