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

Diff of /linuxsampler/trunk/src/engines/EngineBase.h

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

revision 3704 by schoenebeck, Wed Jan 8 20:20:46 2020 UTC revision 3706 by schoenebeck, Wed Jan 8 20:39:59 2020 UTC
# Line 250  namespace LinuxSampler { Line 250  namespace LinuxSampler {
250                  return 0;                  return 0;
251              }              }
252    
253              virtual int MaxVoices() OVERRIDE { return pVoicePool->poolSize(); }              virtual int MaxVoices() OVERRIDE {
254                    return (int) pVoicePool->poolSize();
255                }
256    
257              virtual void SetMaxVoices(int iVoices) throw (Exception) OVERRIDE {              virtual void SetMaxVoices(int iVoices) throw (Exception) OVERRIDE {
258                  if (iVoices < 1)                  if (iVoices < 1)
# Line 1202  namespace LinuxSampler { Line 1204  namespace LinuxSampler {
1204                  // steal oldest voice on the oldest key from any other engine channel                  // steal oldest voice on the oldest key from any other engine channel
1205                  // (the smaller engine channel number, the higher priority)                  // (the smaller engine channel number, the higher priority)
1206                  EngineChannelBase<V, R, I>*  pSelectedChannel;                  EngineChannelBase<V, R, I>*  pSelectedChannel;
1207                  int                          iChannelIndex;                  ssize_t                      iChannelIndex;
1208                  VoiceIterator                itSelectedVoice;                  VoiceIterator                itSelectedVoice;
1209    
1210                  #if CONFIG_DEVMODE                  #if CONFIG_DEVMODE

Legend:
Removed from v.3704  
changed lines
  Added in v.3706

  ViewVC Help
Powered by ViewVC