@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
15 lines (14 loc) • 576 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AutoLevelSetup = void 0;
/**
* Enable/disable automatic calculation of level, maxBitrate, and bufsize based on the least level that satisfies maximum property values for picture resolution, frame rate, and bit rate.
* @export
* @enum {string}
*/
var AutoLevelSetup;
(function (AutoLevelSetup) {
AutoLevelSetup["ENABLED"] = "ENABLED";
AutoLevelSetup["DISABLED"] = "DISABLED";
})(AutoLevelSetup || (exports.AutoLevelSetup = AutoLevelSetup = {}));
exports.default = AutoLevelSetup;