UNPKG

image-in-browser

Version:

Package for encoding / decoding images, transforming images, applying filters, drawing primitives on images on the client side (no need for server Node.js)

11 lines 361 B
import { VP8 } from './vp8.js'; export class VP8SegmentHeader { constructor() { this.useSegment = false; this.updateMap = false; this.absoluteDelta = true; this.quantizer = new Int8Array(VP8.numMbSegments); this.filterStrength = new Int8Array(VP8.numMbSegments); } } //# sourceMappingURL=vp8-segment-header.js.map