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

« back to all changes in this revision

Viewing changes to windows/portaudio/JackPortAudioAdapter.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:
35
35
                                    void* userData)
36
36
    {
37
37
        JackPortAudioAdapter* adapter = static_cast<JackPortAudioAdapter*>(userData);
38
 
        adapter->PushAndPull((float**)inputBuffer, (float**)outputBuffer, framesPerBuffer);
 
38
        adapter->PushAndPull((jack_default_audio_sample_t**)inputBuffer, (jack_default_audio_sample_t**)outputBuffer, framesPerBuffer);
39
39
        return paContinue;
40
40
    }
41
41