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)
27 lines (26 loc) • 614 B
TypeScript
/** @format */
/**
* Represents the segment features for VP8 encoding.
*/
export declare class VP8SegmentHeader {
/**
* Indicates whether segments are used.
*/
useSegment: boolean;
/**
* Indicates whether to update the segment map.
*/
updateMap: boolean;
/**
* Specifies if the values for quantizer and filter are absolute or delta.
*/
absoluteDelta: boolean;
/**
* Holds the quantization changes for each segment.
*/
quantizer: Int8Array;
/**
* Holds the filter strength for each segment.
*/
filterStrength: Int8Array;
}