@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
15 lines (14 loc) • 561 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Vp9DynamicRangeFormat = void 0;
/**
* Configures what kind of dynamic range the output should conform to. Can be used to convert from SDR to HLG, from HLG to SDR.
* @export
* @enum {string}
*/
var Vp9DynamicRangeFormat;
(function (Vp9DynamicRangeFormat) {
Vp9DynamicRangeFormat["HLG"] = "HLG";
Vp9DynamicRangeFormat["SDR"] = "SDR";
})(Vp9DynamicRangeFormat || (exports.Vp9DynamicRangeFormat = Vp9DynamicRangeFormat = {}));
exports.default = Vp9DynamicRangeFormat;