@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
26 lines (25 loc) • 821 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PassthroughAudioConfiguration = void 0;
const CodecConfigType_1 = require("./CodecConfigType");
const CodecConfiguration_1 = require("./CodecConfiguration");
/**
* @export
* @class PassthroughAudioConfiguration
*/
class PassthroughAudioConfiguration extends CodecConfiguration_1.default {
constructor(obj) {
super(obj);
/**
* Discriminator property for CodecConfiguration
* @type {string}
* @memberof PassthroughAudioConfiguration
*/
this.type = CodecConfigType_1.default.AUDIO_PASSTHROUGH;
if (!obj) {
return;
}
}
}
exports.PassthroughAudioConfiguration = PassthroughAudioConfiguration;
exports.default = PassthroughAudioConfiguration;