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

« back to all changes in this revision

Viewing changes to windows/portaudio/JackPortAudioDriver.h

  • 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:
37
37
 
38
38
        PortAudioDevices* fPaDevices;
39
39
        PaStream* fStream;
40
 
        float** fInputBuffer;
41
 
        float** fOutputBuffer;
 
40
        jack_default_audio_sample_t** fInputBuffer;
 
41
        jack_default_audio_sample_t** fOutputBuffer;
42
42
        PaDeviceIndex fInputDevice;
43
43
        PaDeviceIndex fOutputDevice;
44
44
 
82
82
        int Read();
83
83
        int Write();
84
84
 
 
85
        // BufferSize can be changed
 
86
        bool IsFixedBufferSize()
 
87
        {
 
88
            return false;
 
89
        }
 
90
 
85
91
        int SetBufferSize(jack_nframes_t buffer_size);
86
92
};
87
93