()
| 6000 | } |
| 6001 | |
| 6002 | function writeDQT() |
| 6003 | { |
| 6004 | writeWord(0xFFDB); // marker |
| 6005 | writeWord(132); // length |
| 6006 | writeByte(0); |
| 6007 | for (var i=0; i<64; i++) { |
| 6008 | writeByte(YTable[i]); |
| 6009 | } |
| 6010 | writeByte(1); |
| 6011 | for (var j=0; j<64; j++) { |
| 6012 | writeByte(UVTable[j]); |
| 6013 | } |
| 6014 | } |
| 6015 | |
| 6016 | function writeDHT() |
| 6017 | { |
no test coverage detected