/[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 2952 by schoenebeck, Mon Jul 11 17:10:40 2016 UTC revision 2953 by schoenebeck, Sat Jul 16 11:24:39 2016 UTC
# Line 36  namespace LinuxSampler { Line 36  namespace LinuxSampler {
36              int64_t PanSources; ///< Might be used for calculating an average pan value in differential way: amount of times the Pan value had been changed and shall be calculated relatively upon.              int64_t PanSources; ///< Might be used for calculating an average pan value in differential way: amount of times the Pan value had been changed and shall be calculated relatively upon.
37              float Cutoff;       ///< between 0.0 and 1.0              float Cutoff;       ///< between 0.0 and 1.0
38              float Resonance;    ///< between 0.0 and 1.0              float Resonance;    ///< between 0.0 and 1.0
39                float Attack;       ///< between 0.0 and 1.0
40                float Decay;        ///< between 0.0 and 1.0
41                float Release;      ///< between 0.0 and 1.0
42          } Override;          } Override;
43          /// Sampler format specific informations and variables.          /// Sampler format specific informations and variables.
44          union _Format {          union _Format {
# Line 53  namespace LinuxSampler { Line 56  namespace LinuxSampler {
56              Override.PanSources = 0;              Override.PanSources = 0;
57              Override.Cutoff     = 1.f;              Override.Cutoff     = 1.f;
58              Override.Resonance  = 1.f;              Override.Resonance  = 1.f;
59                Override.Attack     = 1.f;
60                Override.Decay      = 1.f;
61                Override.Release    = 1.f;
62              Format = _Format();              Format = _Format();
63          }          }
64      };      };
# Line 109  namespace LinuxSampler { Line 115  namespace LinuxSampler {
115              Override.PanSources = 0;              Override.PanSources = 0;
116              Override.Cutoff     = 1.f;              Override.Cutoff     = 1.f;
117              Override.Resonance  = 1.f;              Override.Resonance  = 1.f;
118                Override.Attack     = 1.f;
119                Override.Decay      = 1.f;
120                Override.Release    = 1.f;
121              Format = _Format();              Format = _Format();
122              if (pActiveVoices) {              if (pActiveVoices) {
123                  typename RTList<V>::Iterator itVoice = pActiveVoices->first();                  typename RTList<V>::Iterator itVoice = pActiveVoices->first();

Legend:
Removed from v.2952  
changed lines
  Added in v.2953

  ViewVC Help
Powered by ViewVC