sinch-rtc
Version:
RTC JavaScript/Web SDK
17 lines • 734 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ConstantInboundAudioLevelWarningEvent = void 0;
/**
* Warning issued when standard deviation of audio level measurements of the inbound audio rtp stream
* from last 20 seconds is lower then 0.5% of the maximum possible audio level value.
*
* @param type - `Trigger` when the warning is emitted, `Recover` when the warning is recovered.
*/
class ConstantInboundAudioLevelWarningEvent {
constructor(type) {
this.type = type;
this.name = "constantInboundAudioLevel";
}
}
exports.ConstantInboundAudioLevelWarningEvent = ConstantInboundAudioLevelWarningEvent;
//# sourceMappingURL=ConstantInboundAudioLevelWarningEvent.js.map