~ubuntu-branches/debian/sid/jackd2/sid

« back to all changes in this revision

Viewing changes to windows/winmme/JackWinMMEDriver.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Adrian Knoth
  • Date: 2011-03-31 13:54:50 UTC
  • mfrom: (1.1.3 upstream) (2.1.4 experimental)
  • Revision ID: james.westby@ubuntu.com-20110331135450-zafc1di024kzeu31
Tags: 1.9.7~dfsg-1
* New upstream version 1.9.7 (ALSA resume, new latency API)
* Build with --mixed on i386 to be compatible with amd64.
* Don't patch jack_connect for fast consecutive calls anymore, it's now
  using the same code as in jackd1 and waits for the port connection to
  appear.

Show diffs side-by-side

added added

removed removed

Lines of Context:
264
264
{
265
265
    jack_log("JackWinMMEDriver::Close");
266
266
 
 
267
    // Generic midi driver close
 
268
    int res = JackMidiDriver::Close();
 
269
 
267
270
    // Close input
268
271
    if (fMidiDestination) {
269
272
        for (int i = 0; i < fRealCaptureChannels; i++)  {
280
283
        delete[] fMidiSource;
281
284
    }
282
285
 
283
 
    return 0;
 
286
    return res;
284
287
}
285
288
 
286
289
int JackWinMMEDriver::Attach()