UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

48 lines (41 loc) 653 B
export class JpegFrameComponent { /** * * @type {number} */ h = 0 /** * * @type {number} */ v = 0 /** * @type {number} */ pred = 0 /** * @type {Int32Array[][]} */ blocks blocksPerLine = 0 blocksPerColumn = 0 /** * * @type {number} */ quantizationIdx = 0 /** * @type {Int32Array} */ quantizationTable; /** * @see buildHuffmanTable * @type {[]} */ huffmanTableDC /** * @see buildHuffmanTable * @type {[]} */ huffmanTableAC }