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)
15 lines (14 loc) • 387 B
TypeScript
/** @format */
/**
* Represents the header of a VP8 frame.
*/
export declare class VP8FrameHeader {
/** Indicates if the frame is a key frame. */
keyFrame: boolean;
/** The profile of the VP8 frame. */
profile: number;
/** The show value of the VP8 frame. */
show: number;
/** The length of the partition in the VP8 frame. */
partitionLength: number;
}