@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
25 lines (24 loc) • 881 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ColorPrimaries = void 0;
/**
* @export
* @enum {string}
*/
var ColorPrimaries;
(function (ColorPrimaries) {
ColorPrimaries["UNSPECIFIED"] = "UNSPECIFIED";
ColorPrimaries["BT709"] = "BT709";
ColorPrimaries["BT470M"] = "BT470M";
ColorPrimaries["BT470BG"] = "BT470BG";
ColorPrimaries["SMPTE170M"] = "SMPTE170M";
ColorPrimaries["SMPTE240M"] = "SMPTE240M";
ColorPrimaries["FILM"] = "FILM";
ColorPrimaries["BT2020"] = "BT2020";
ColorPrimaries["SMPTE428"] = "SMPTE428";
ColorPrimaries["SMPTEST428_1"] = "SMPTEST428_1";
ColorPrimaries["SMPTE431"] = "SMPTE431";
ColorPrimaries["SMPTE432"] = "SMPTE432";
ColorPrimaries["JEDEC_P22"] = "JEDEC_P22";
})(ColorPrimaries || (exports.ColorPrimaries = ColorPrimaries = {}));
exports.default = ColorPrimaries;