@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
20 lines (19 loc) • 516 B
TypeScript
/**
* Determines the algorithm used for scaling
* @export
* @enum {string}
*/
export declare enum ScalingAlgorithm {
FAST_BILINEAR = "FAST_BILINEAR",
BILINEAR = "BILINEAR",
BICUBIC = "BICUBIC",
EXPERIMENTAL = "EXPERIMENTAL",
NEAREST_NEIGHBOR = "NEAREST_NEIGHBOR",
AVERAGING_AREA = "AVERAGING_AREA",
BICUBIC_LUMA_BILINEAR_CHROMA = "BICUBIC_LUMA_BILINEAR_CHROMA",
GAUSS = "GAUSS",
SINC = "SINC",
LANCZOS = "LANCZOS",
SPLINE = "SPLINE"
}
export default ScalingAlgorithm;