()
| 5964 | } |
| 5965 | |
| 5966 | function writeDQT() |
| 5967 | { |
| 5968 | writeWord(0xFFDB); // marker |
| 5969 | writeWord(132); // length |
| 5970 | writeByte(0); |
| 5971 | for (var i=0; i<64; i++) { |
| 5972 | writeByte(YTable[i]); |
| 5973 | } |
| 5974 | writeByte(1); |
| 5975 | for (var j=0; j<64; j++) { |
| 5976 | writeByte(UVTable[j]); |
| 5977 | } |
| 5978 | } |
| 5979 | |
| 5980 | function writeDHT() |
| 5981 | { |
no test coverage detected