@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
19 lines (18 loc) • 876 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.H265DynamicRangeFormat = void 0;
/**
* Configures what kind of dynamic range the output should conform to. Can be used to convert from SDR to HDR, from HDR to SDR or between different HDR formats
* @export
* @enum {string}
*/
var H265DynamicRangeFormat;
(function (H265DynamicRangeFormat) {
H265DynamicRangeFormat["DOLBY_VISION"] = "DOLBY_VISION";
H265DynamicRangeFormat["DOLBY_VISION_PROFILE_5"] = "DOLBY_VISION_PROFILE_5";
H265DynamicRangeFormat["DOLBY_VISION_PROFILE_8_1"] = "DOLBY_VISION_PROFILE_8_1";
H265DynamicRangeFormat["HDR10"] = "HDR10";
H265DynamicRangeFormat["HLG"] = "HLG";
H265DynamicRangeFormat["SDR"] = "SDR";
})(H265DynamicRangeFormat || (exports.H265DynamicRangeFormat = H265DynamicRangeFormat = {}));
exports.default = H265DynamicRangeFormat;