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

Diff of /linuxsampler/trunk/src/engines/gig/EngineGlobals.h

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

revision 554 by schoenebeck, Thu May 19 19:25:14 2005 UTC revision 563 by schoenebeck, Sun May 22 20:43:32 2005 UTC
# Line 31  namespace LinuxSampler { namespace gig { Line 31  namespace LinuxSampler { namespace gig {
31    
32      class Voice;      class Voice;
33    
34        /** @brief Voice Stealing Algorithms
35         *
36         * Enumeration of all possible voice stealing algorithms.
37         */
38      enum voice_steal_algo_t {      enum voice_steal_algo_t {
39          voice_steal_algo_none,          voice_steal_algo_none,              ///< Voice stealing disabled.
40          voice_steal_algo_oldestvoiceonkey,          voice_steal_algo_oldestvoiceonkey,  ///< Try to kill the oldest voice from same key where the new voice should be spawned.
41          voice_steal_algo_oldestkey          voice_steal_algo_oldestkey          ///< Try to kill the oldest voice from the oldest active key.
42      };      };
43    
44        /** @brief MIDI key runtime informations
45         *
46         * Reflects runtime informations for one MIDI key.
47         */
48      struct midi_key_info_t {      struct midi_key_info_t {
49          RTList<Voice>*  pActiveVoices;  ///< Contains the active voices associated with the MIDI key.          RTList<Voice>*  pActiveVoices;  ///< Contains the active voices associated with the MIDI key.
50          bool            KeyPressed;     ///< Is true if the respective MIDI key is currently pressed.          bool            KeyPressed;     ///< Is true if the respective MIDI key is currently pressed.

Legend:
Removed from v.554  
changed lines
  Added in v.563

  ViewVC Help
Powered by ViewVC