()
| 5989 | } |
| 5990 | |
| 5991 | function writeDQT() |
| 5992 | { |
| 5993 | writeWord(0xFFDB); // marker |
| 5994 | writeWord(132); // length |
| 5995 | writeByte(0); |
| 5996 | for (var i=0; i<64; i++) { |
| 5997 | writeByte(YTable[i]); |
| 5998 | } |
| 5999 | writeByte(1); |
| 6000 | for (var j=0; j<64; j++) { |
| 6001 | writeByte(UVTable[j]); |
| 6002 | } |
| 6003 | } |
| 6004 | |
| 6005 | function writeDHT() |
| 6006 | { |
no test coverage detected