@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
16 lines (15 loc) • 568 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.InputColorRange = void 0;
/**
* Override the color range detected in the input file. If not set the input color range will be automatically detected if possible.
* @export
* @enum {string}
*/
var InputColorRange;
(function (InputColorRange) {
InputColorRange["UNSPECIFIED"] = "UNSPECIFIED";
InputColorRange["MPEG"] = "MPEG";
InputColorRange["JPEG"] = "JPEG";
})(InputColorRange || (exports.InputColorRange = InputColorRange = {}));
exports.default = InputColorRange;