/[svn]/linuxsampler/trunk/src/linuxsampler.cpp
ViewVC logotype

Diff of /linuxsampler/trunk/src/linuxsampler.cpp

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

revision 1895 by persson, Sun May 3 12:15:40 2009 UTC revision 2124 by schoenebeck, Sat Sep 18 09:24:41 2010 UTC
# Line 23  Line 23 
23    
24  #include <getopt.h>  #include <getopt.h>
25  #include <signal.h>  #include <signal.h>
26    #include <sys/stat.h>
27    
28  #if defined(WIN32)  #if defined(WIN32)
29  // require at least Windows 2000 for the GlobalMemoryStatusEx() call  // require at least Windows 2000 for the GlobalMemoryStatusEx() call
# Line 40  Line 41 
41  #include "plugins/InstrumentEditorFactory.h"  #include "plugins/InstrumentEditorFactory.h"
42  #include "drivers/midi/MidiInputDeviceFactory.h"  #include "drivers/midi/MidiInputDeviceFactory.h"
43  #include "drivers/audio/AudioOutputDeviceFactory.h"  #include "drivers/audio/AudioOutputDeviceFactory.h"
44    #include "effects/EffectFactory.h"
45  #include "engines/gig/Profiler.h"  #include "engines/gig/Profiler.h"
46  #include "network/lscpserver.h"  #include "network/lscpserver.h"
47  #include "common/stacktrace.h"  #include "common/stacktrace.h"
# Line 187  int main(int argc, char **argv) { Line 189  int main(int argc, char **argv) {
189      dmsg(1,("Registered MIDI input drivers: %s\n", MidiInputDeviceFactory::AvailableDriversAsString().c_str()));      dmsg(1,("Registered MIDI input drivers: %s\n", MidiInputDeviceFactory::AvailableDriversAsString().c_str()));
190      dmsg(1,("Registered audio output drivers: %s\n", AudioOutputDeviceFactory::AvailableDriversAsString().c_str()));      dmsg(1,("Registered audio output drivers: %s\n", AudioOutputDeviceFactory::AvailableDriversAsString().c_str()));
191      dmsg(1,("Registered instrument editors: %s\n", InstrumentEditorFactory::AvailableEditorsAsString().c_str()));      dmsg(1,("Registered instrument editors: %s\n", InstrumentEditorFactory::AvailableEditorsAsString().c_str()));
192        dmsg(1,("Registered internal effect systems: %s\n", EffectFactory::AvailableEffectSystemsAsString().c_str()));
193        dmsg(1,("Registered internal effects: %d\n", EffectFactory::AvailableEffectsCount()));
194    
195      // start LSCP network server      // start LSCP network server
196      struct in_addr addr;      struct in_addr addr;
# Line 344  void parse_options(int argc, char **argv Line 348  void parse_options(int argc, char **argv
348                      break;                      break;
349                  case 2: // --profile                  case 2: // --profile
350                      profile = true;                      profile = true;
351                        //FIXME: profiling code is currently broken!
352                        std::cerr << "Option '--profile' is currently not supported, since the profiling code is currently broken!"  << std::endl;
353                        exit(EXIT_FAILURE);
354                      break;                      break;
355                  case 3: // --no-tune                  case 3: // --no-tune
356                      tune = false;                      tune = false;

Legend:
Removed from v.1895  
changed lines
  Added in v.2124

  ViewVC Help
Powered by ViewVC