@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
30 lines (29 loc) • 996 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.DolbyAtmosIngestInputStream = void 0;
const Mapper_1 = require("../common/Mapper");
const InputStream_1 = require("./InputStream");
const InputStreamType_1 = require("./InputStreamType");
/**
* @export
* @class DolbyAtmosIngestInputStream
*/
class DolbyAtmosIngestInputStream extends InputStream_1.default {
constructor(obj) {
super(obj);
/**
* Discriminator property for InputStream
* @type {string}
* @memberof DolbyAtmosIngestInputStream
*/
this.type = InputStreamType_1.default.DOLBY_ATMOS;
if (!obj) {
return;
}
this.inputId = (0, Mapper_1.map)(obj.inputId);
this.inputPath = (0, Mapper_1.map)(obj.inputPath);
this.inputFormat = (0, Mapper_1.map)(obj.inputFormat);
}
}
exports.DolbyAtmosIngestInputStream = DolbyAtmosIngestInputStream;
exports.default = DolbyAtmosIngestInputStream;