@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
28 lines (27 loc) • 1.03 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.H265V2ConstantBitrateModeConfig = void 0;
const Mapper_1 = require("../common/Mapper");
const H265V2RateControlModeConfig_1 = require("./H265V2RateControlModeConfig");
const H265V2RateControlModeConfigType_1 = require("./H265V2RateControlModeConfigType");
/**
* @export
* @class H265V2ConstantBitrateModeConfig
*/
class H265V2ConstantBitrateModeConfig extends H265V2RateControlModeConfig_1.default {
constructor(obj) {
super(obj);
/**
* Discriminator property for H265V2RateControlModeConfig
* @type {string}
* @memberof H265V2ConstantBitrateModeConfig
*/
this.type = H265V2RateControlModeConfigType_1.default.CONSTANT_BITRATE_MODE;
if (!obj) {
return;
}
this.fillerdata = (0, Mapper_1.map)(obj.fillerdata);
}
}
exports.H265V2ConstantBitrateModeConfig = H265V2ConstantBitrateModeConfig;
exports.default = H265V2ConstantBitrateModeConfig;