/[svn]/linuxsampler/trunk/src/engines/common/Note.h
ViewVC logotype

Diff of /linuxsampler/trunk/src/engines/common/Note.h

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

revision 3250 by schoenebeck, Sun May 28 22:22:56 2017 UTC revision 3251 by schoenebeck, Mon May 29 22:19:19 2017 UTC
# Line 52  namespace LinuxSampler { Line 52  namespace LinuxSampler {
52              float PitchLFOFreq; ///< between 0.0 and 1.0              float PitchLFOFreq; ///< between 0.0 and 1.0
53              fade_curve_t VolumeCurve;              fade_curve_t VolumeCurve;
54              fade_curve_t PitchCurve;              fade_curve_t PitchCurve;
55                int SampleOffset; ///< Where the sample shall start playback in microseconds (otherwise this is -1 for being ignored).
56          } Override;          } Override;
57          /// Sampler format specific informations and variables.          /// Sampler format specific informations and variables.
58          union _Format {          union _Format {
# Line 81  namespace LinuxSampler { Line 82  namespace LinuxSampler {
82              Override.PitchLFOFreq  = 1.f;              Override.PitchLFOFreq  = 1.f;
83              Override.VolumeCurve = DEFAULT_FADE_CURVE;              Override.VolumeCurve = DEFAULT_FADE_CURVE;
84              Override.PitchCurve  = DEFAULT_FADE_CURVE;              Override.PitchCurve  = DEFAULT_FADE_CURVE;
85                Override.SampleOffset = -1;
86    
87              Format = _Format();              Format = _Format();
88    
# Line 158  namespace LinuxSampler { Line 160  namespace LinuxSampler {
160              Override.PitchLFOFreq  = 1.f;              Override.PitchLFOFreq  = 1.f;
161              Override.VolumeCurve = DEFAULT_FADE_CURVE;              Override.VolumeCurve = DEFAULT_FADE_CURVE;
162              Override.PitchCurve  = DEFAULT_FADE_CURVE;              Override.PitchCurve  = DEFAULT_FADE_CURVE;
163                Override.SampleOffset = -1;
164              Format = _Format();              Format = _Format();
165              userPar[0] = 0;              userPar[0] = 0;
166              userPar[1] = 0;              userPar[1] = 0;

Legend:
Removed from v.3250  
changed lines
  Added in v.3251

  ViewVC Help
Powered by ViewVC