~ubuntu-branches/ubuntu/raring/muse/raring

« back to all changes in this revision

Viewing changes to muse/globals.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Eric Hedekar, Eric Hedekar, Fabrice Coutadeur
  • Date: 2010-01-26 02:32:14 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20100126023214-8ez2g5d26d9p584j
Tags: 1.0.1-0ubuntu1
[ Eric Hedekar ]
* New upstream version (LP: #479688)
* Removed patches that were fixed in upstream source
  -[10_64bit_memcorruption_fix]
  -[10_gcc43_build_fixes]
  -[10_lash_private_api_fix]
  -[10_log2f_aliasing_fix]
  -[10_vamgui_init_fix]
  -[20_fix_const]

[ Fabrice Coutadeur ]
* debian/watch: added watch file
* debian/muse.desktop: deleted deprecated Encoding key, Application category
  and icon extension. This fix several warning with lintian and
  desktop-file-validate

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
//=========================================================
2
2
//  MusE
3
3
//  Linux Music Editor
4
 
//  $Id: globals.cpp,v 1.15.2.6 2006/02/11 22:21:21 spamatica Exp $
 
4
//  $Id: globals.cpp,v 1.15.2.11 2009/11/25 09:09:43 terminator356 Exp $
5
5
//
6
6
//  (C) Copyright 1999-2004 Werner Schweer (ws@seh.de)
7
7
//=========================================================
21
21
                                  // 131072 - magic number that gives a sufficient buffer size
22
22
int segmentCount = 2;
23
23
 
 
24
// denormal bias value used to eliminate the manifestation of denormals by
 
25
// lifting the zero level slightly above zero
 
26
// denormal problems occur when values get extremely close to zero
 
27
const float denormalBias=1e-18;
 
28
 
24
29
bool overrideAudioOutput = false;
25
30
bool overrideAudioInput = false;
26
31
 
68
73
QString museProject;
69
74
QString museProjectInitPath("./");
70
75
QString configName;
 
76
QString museInstruments;
 
77
QString museUserInstruments;
71
78
 
72
79
QString lastWavePath(".");
73
80
QString lastMidiPath(".");
77
84
bool midiInputTrace = false;
78
85
bool midiOutputTrace = false;
79
86
bool realTimeScheduling = false;
80
 
int realTimePriority = 80;
 
87
int realTimePriority = 40;  // 80
 
88
int midiRTPrioOverride = -1;
81
89
bool loadPlugins = true;
82
90
bool loadVST = true;
 
91
bool loadDSSI = true;
 
92
bool usePythonBridge = false;
 
93
bool useLASH = true;
83
94
 
84
95
const char* midi_file_pattern[] = {
85
96
      "Midi/Kar (*.mid *.MID *.kar *.KAR *.mid.gz *.mid.bz2)",