@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
16 lines (15 loc) • 455 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.H264NalHrd = void 0;
/**
* Signal hypothetical reference decoder (HRD) information (requires bufsize to be set)
* @export
* @enum {string}
*/
var H264NalHrd;
(function (H264NalHrd) {
H264NalHrd["NONE"] = "NONE";
H264NalHrd["VBR"] = "VBR";
H264NalHrd["CBR"] = "CBR";
})(H264NalHrd || (exports.H264NalHrd = H264NalHrd = {}));
exports.default = H264NalHrd;