Tone.js/Tone/core/Master.js

42 lines
1.1 KiB
JavaScript
Raw Normal View History

///////////////////////////////////////////////////////////////////////////////
//
// MASTER OUTPUT
//
// a single master output
// adds a toMaster method on AudioNodes and components
///////////////////////////////////////////////////////////////////////////////
2014-04-06 20:51:30 +00:00
define(["Tone/core/Tone"], function(Tone){
var Master = function(){
//extend audio unit
Tone.call(this);
//put a hard limiter on the output so we don't blow any eardrums
this.limiter = this.context.createDynamicsCompressor();
this.limiter.threshold.value = 0;
this.limiter.ratio.value = 20;
this.chain(this.input, this.limiter, this.output, this.context.destination);
}
Tone.extend(Master);
//a single master output
Tone.Master = new Master();
///////////////////////////////////////////////////////////////////////////
// Add toMaster methods
///////////////////////////////////////////////////////////////////////////
//@param {AudioNode|Tone=} unit
Tone.prototype.toMaster = function(){
this.connect(Tone.Master);
}
AudioNode.prototype.toMaster = function(){
this.connect(Tone.Master);
}
return Tone.Master;
})