/[svn]/linuxsampler/trunk/src/drivers/audio/AudioOutputDeviceJack.h
ViewVC logotype

Diff of /linuxsampler/trunk/src/drivers/audio/AudioOutputDeviceJack.h

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

revision 2434 by schoenebeck, Thu Mar 7 19:23:24 2013 UTC revision 2478 by persson, Sat Oct 19 07:52:33 2013 UTC
# Line 191  namespace LinuxSampler { Line 191  namespace LinuxSampler {
191              ~JackClient();              ~JackClient();
192                    
193              // Callback functions for the libjack API              // Callback functions for the libjack API
194              static void libjackShutdownCallback(void* arg);  #if HAVE_JACK_ON_INFO_SHUTDOWN
195                static void libjackShutdownCallback(jack_status_t code, const char* reason, void *arg);
196    #else
197                static void libjackShutdownCallback(void *arg);
198    #endif
199              static int libjackSampleRateCallback(jack_nframes_t nframes, void *arg);              static int libjackSampleRateCallback(jack_nframes_t nframes, void *arg);
200              static int libjackBufferSizeCallback(jack_nframes_t nframes, void *arg);              static int libjackBufferSizeCallback(jack_nframes_t nframes, void *arg);
201      };      };
# Line 206  namespace LinuxSampler { Line 210  namespace LinuxSampler {
210       */       */
211      class JackListener {      class JackListener {
212      public:      public:
213          virtual void onJackShutdown() = 0;          virtual void onJackShutdown(jack_status_t code, const char* reason) = 0;
214      };      };
215  }  }
216    

Legend:
Removed from v.2434  
changed lines
  Added in v.2478

  ViewVC Help
Powered by ViewVC