Package de.sciss.jcollider

Examples of de.sciss.jcollider.Synth.newMsg()


            ));
            off += ct.chanMaps[ i ].length;
          }

          if( ct.numFiles > 0 ) {
            f.write( synthPhasor.newMsg( nrtGrpInput, new String[] {
              "i_aInBf",           "rate",   "i_aPhBs"          }, new float[] {
              bufsDisk[ 0 ].getBufNum(), realRate, busPh.getIndex() }));
          }
         
        } else {
View Full Code Here


    bndl.addPacket( grpGain.freeAllMsg() );
    bndl.addPacket( grpLimiter.freeAllMsg() );
    for( int ch = 0; ch < oCfg.numChannels; ch++ ) {
      if( oCfg.mapping[ ch ] < server.getOptions().getNumOutputBusChannels() ) {
        synth  = Synth.basicNew( "eisk-limiter", server );
        bndl.addPacket( synth.newMsg( grpLimiter, new String[] { "i_aBus" }, new float[] { oCfg.mapping[ ch ]}));
        nw.register( synth );
        synth  = Synth.basicNew( "eisk-gain", server );
        bndl.addPacket( synth.newMsg( grpGain, new String[] { "i_aBus", "volume" }, new float[] { oCfg.mapping[ ch ], volume }));
        nw.register( synth );
      }
View Full Code Here

      if( oCfg.mapping[ ch ] < server.getOptions().getNumOutputBusChannels() ) {
        synth  = Synth.basicNew( "eisk-limiter", server );
        bndl.addPacket( synth.newMsg( grpLimiter, new String[] { "i_aBus" }, new float[] { oCfg.mapping[ ch ]}));
        nw.register( synth );
        synth  = Synth.basicNew( "eisk-gain", server );
        bndl.addPacket( synth.newMsg( grpGain, new String[] { "i_aBus", "volume" }, new float[] { oCfg.mapping[ ch ], volume }));
        nw.register( synth );
      }
    }
   
    try {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.