/[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 203 by schoenebeck, Tue Jul 13 22:44:13 2004 UTC revision 207 by schoenebeck, Thu Jul 15 21:51:15 2004 UTC
# Line 24  Line 24 
24  #include <signal.h>  #include <signal.h>
25    
26  #include "Sampler.h"  #include "Sampler.h"
27    #include "drivers/midi/MidiInputDeviceFactory.h"
28  #include "drivers/audio/AudioOutputDeviceFactory.h"  #include "drivers/audio/AudioOutputDeviceFactory.h"
29  #include "network/lscpserver.h"  #include "network/lscpserver.h"
30    
# Line 76  int main(int argc, char **argv) { Line 77  int main(int argc, char **argv) {
77          return EXIT_FAILURE;          return EXIT_FAILURE;
78      }*/      }*/
79    
80        dmsg(1,("LinuxSampler %s\n", VERSION));
81        dmsg(1,("Copyright (C) 2003, 2004 by Benno Senoner and Christian Schoenebeck\n"));
82    
83      // create LinuxSampler instance      // create LinuxSampler instance
84      dmsg(1,("Creating Sampler..."));      dmsg(1,("Creating Sampler..."));
85      pSampler = new Sampler;      pSampler = new Sampler;
86      dmsg(1,("OK\n"));      dmsg(1,("OK\n"));
87    
88        dmsg(1,("Registered MIDI input drivers: %s\n", MidiInputDeviceFactory::AvailableDriversAsString().c_str()));
89      dmsg(1,("Registered audio output drivers: %s\n", AudioOutputDeviceFactory::AvailableDriversAsString().c_str()));      dmsg(1,("Registered audio output drivers: %s\n", AudioOutputDeviceFactory::AvailableDriversAsString().c_str()));
90    
91      // create an audio output device      // create an audio output device
# Line 113  int main(int argc, char **argv) { Line 117  int main(int argc, char **argv) {
117      dmsg(1,("OK\n"));*/      dmsg(1,("OK\n"));*/
118    
119      // start LSCP network server      // start LSCP network server
120      dmsg(1,("Starting network server..."));      dmsg(1,("Starting LSCP network server..."));
121      pLSCPServer = new LSCPServer(pSampler);      pLSCPServer = new LSCPServer(pSampler);
122      pLSCPServer->StartThread();      pLSCPServer->StartThread();
123      dmsg(1,("OK\n"));      dmsg(1,("OK\n"));

Legend:
Removed from v.203  
changed lines
  Added in v.207

  ViewVC Help
Powered by ViewVC