@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
15 lines (14 loc) • 490 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.LevelH262 = void 0;
/**
* Specified set of constraints that indicate a degree of required decoder performance for a profile, see: https://en.wikipedia.org/wiki/H.264/MPEG-4_AVC#Levels
* @export
* @enum {string}
*/
var LevelH262;
(function (LevelH262) {
LevelH262["MAIN"] = "MAIN";
LevelH262["HIGH"] = "HIGH";
})(LevelH262 || (exports.LevelH262 = LevelH262 = {}));
exports.default = LevelH262;