/[svn]/linuxsampler/trunk/src/engines/gig/Voice.cpp
ViewVC logotype

Diff of /linuxsampler/trunk/src/engines/gig/Voice.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 411 by schoenebeck, Sat Feb 26 02:01:14 2005 UTC revision 425 by persson, Sat Mar 5 07:27:48 2005 UTC
# Line 365  namespace LinuxSampler { namespace gig { Line 365  namespace LinuxSampler { namespace gig {
365                            pDimRgn->EG1InfiniteSustain,                            pDimRgn->EG1InfiniteSustain,
366                            pDimRgn->EG1Sustain,                            pDimRgn->EG1Sustain,
367                            pDimRgn->EG1Release + eg1release,                            pDimRgn->EG1Release + eg1release,
368                            Delay);                            // the SSE synthesis implementation requires
369                              // the vca start to be 16 byte aligned
370                              SYNTHESIS_MODE_GET_IMPLEMENTATION(SynthesisMode) ?
371                              Delay & 0xfffffffc : Delay);
372          }          }
373    
374    
# Line 675  namespace LinuxSampler { namespace gig { Line 678  namespace LinuxSampler { namespace gig {
678          }          }
679    
680          if (SYNTHESIS_MODE_GET_FILTER(SynthesisMode))          if (SYNTHESIS_MODE_GET_FILTER(SynthesisMode))
681                  CalculateBiquadParameters(Samples); // calculate the final biquad filter parameters              CalculateBiquadParameters(Samples); // calculate the final biquad filter parameters
682    
683          switch (this->PlaybackState) {          switch (this->PlaybackState) {
684    

Legend:
Removed from v.411  
changed lines
  Added in v.425

  ViewVC Help
Powered by ViewVC