Browse Source

Allow portaudio driver on any system, use device reservation too

Signed-off-by: falkTX <falktx@falktx.com>
pull/854/merge
falkTX 1 year ago
parent
commit
806da09a12
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
3 changed files with 99 additions and 5 deletions
  1. +85
    -1
      windows/portaudio/JackPortAudioDriver.cpp
  2. +14
    -3
      windows/portaudio/JackPortAudioDriver.h
  3. +0
    -1
      wscript

+ 85
- 1
windows/portaudio/JackPortAudioDriver.cpp View File

@@ -29,11 +29,43 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#include <iostream> #include <iostream>
#include <assert.h> #include <assert.h>


#ifdef __linux__
#include "JackServerGlobals.h"
#endif

using namespace std; using namespace std;


namespace Jack namespace Jack
{ {


#ifdef __linux__
static volatile bool device_reservation_loop_running = false;

static void* on_device_reservation_loop(void*)
{
while (device_reservation_loop_running && JackServerGlobals::on_device_reservation_loop != NULL) {
JackServerGlobals::on_device_reservation_loop();
usleep(50*1000);
}

return NULL;
}

static bool name_to_num(const char* paDeviceName, char* entry)
{
if (const char* sep = strstr(paDeviceName, " (hw:"))
{
sep += 5;
while (*sep != '\0' && *sep != ',' && *sep != ')')
*entry++ = *sep++;
*entry = '\0';
return true;
}

return false;
}
#endif

int JackPortAudioDriver::Render(const void* inputBuffer, void* outputBuffer, int JackPortAudioDriver::Render(const void* inputBuffer, void* outputBuffer,
unsigned long framesPerBuffer, unsigned long framesPerBuffer,
const PaStreamCallbackTimeInfo* timeInfo, const PaStreamCallbackTimeInfo* timeInfo,
@@ -231,6 +263,27 @@ int JackPortAudioDriver::Open(jack_nframes_t buffer_size,
fCaptureChannels = inchannels; fCaptureChannels = inchannels;
fPlaybackChannels = outchannels; fPlaybackChannels = outchannels;


#ifdef __linux__
if (JackServerGlobals::on_device_acquire != NULL) {
char audio_name[32];
snprintf(audio_name, sizeof(audio_name), "Audio");

if (name_to_num(capture_driver_name, audio_name+5)) {
if (!JackServerGlobals::on_device_acquire(audio_name)) {
jack_error("Audio device %s cannot be acquired...", capture_driver_name);
return -1;
}
}

if (strcmp(capture_driver_name, playback_driver_name) && name_to_num(playback_driver_name, audio_name+5)) {
if (!JackServerGlobals::on_device_acquire(audio_name)) {
jack_error("Audio device %s cannot be acquired...", playback_driver_name);
return -1;
}
}
}
#endif

err = OpenStream(buffer_size); err = OpenStream(buffer_size);
if (err != paNoError) { if (err != paNoError) {
jack_error("Pa_OpenStream error = %s", Pa_GetErrorText(err)); jack_error("Pa_OpenStream error = %s", Pa_GetErrorText(err));
@@ -243,6 +296,15 @@ int JackPortAudioDriver::Open(jack_nframes_t buffer_size,
fEngineControl->fConstraint = fEngineControl->fPeriodUsecs * 1000; fEngineControl->fConstraint = fEngineControl->fPeriodUsecs * 1000;
#endif #endif


#ifdef __linux__
if (JackServerGlobals::on_device_reservation_loop != NULL) {
device_reservation_loop_running = true;
if (JackPosixThread::StartImp(&fReservationLoopThread, 0, 0, on_device_reservation_loop, NULL) != 0) {
device_reservation_loop_running = false;
}
}
#endif

return 0; return 0;


error: error:
@@ -260,6 +322,28 @@ int JackPortAudioDriver::Close()
if (err != paNoError) { if (err != paNoError) {
jack_error("Pa_CloseStream error = %s", Pa_GetErrorText(err)); jack_error("Pa_CloseStream error = %s", Pa_GetErrorText(err));
} }

#ifdef __linux__
if (device_reservation_loop_running) {
device_reservation_loop_running = false;
JackPosixThread::StopImp(fReservationLoopThread);
}

if (JackServerGlobals::on_device_release != NULL)
{
char audio_name[32];
snprintf(audio_name, sizeof(audio_name), "Audio");

if (name_to_num(fCaptureDriverName, audio_name+5)) {
JackServerGlobals::on_device_release(audio_name);
}

if (strcmp(fCaptureDriverName, fPlaybackDriverName) && name_to_num(fPlaybackDriverName, audio_name+5)) {
JackServerGlobals::on_device_release(audio_name);
}
}
#endif

delete fPaDevices; delete fPaDevices;
fPaDevices = NULL; fPaDevices = NULL;
return (err != paNoError) ? -1 : 0; return (err != paNoError) ? -1 : 0;
@@ -269,9 +353,9 @@ int JackPortAudioDriver::Attach()
{ {
if (JackAudioDriver::Attach() == 0) { if (JackAudioDriver::Attach() == 0) {


#if defined(HAVE_ASIO)
const char* alias; const char* alias;


#if defined(HAVE_ASIO)
if (fInputDevice != paNoDevice && fPaDevices->GetHostFromDevice(fInputDevice) == "ASIO") { if (fInputDevice != paNoDevice && fPaDevices->GetHostFromDevice(fInputDevice) == "ASIO") {
for (int i = 0; i < fCaptureChannels; i++) { for (int i = 0; i < fCaptureChannels; i++) {
if (PaAsio_GetInputChannelName(fInputDevice, i, &alias) == paNoError) { if (PaAsio_GetInputChannelName(fInputDevice, i, &alias) == paNoError) {


+ 14
- 3
windows/portaudio/JackPortAudioDriver.h View File

@@ -22,7 +22,10 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.


#include "JackAudioDriver.h" #include "JackAudioDriver.h"
#include "JackPortAudioDevices.h" #include "JackPortAudioDevices.h"

#ifdef _WIN32
#include "JackMMCSS.h" #include "JackMMCSS.h"
#endif


namespace Jack namespace Jack
{ {
@@ -31,7 +34,11 @@ namespace Jack
\brief The PortAudio driver. \brief The PortAudio driver.
*/ */


class JackPortAudioDriver : public JackMMCSS, public JackAudioDriver
class JackPortAudioDriver :
#ifdef _WIN32
public JackMMCSS,
#endif
public JackAudioDriver
{ {


private: private:
@@ -42,6 +49,7 @@ class JackPortAudioDriver : public JackMMCSS, public JackAudioDriver
PaDeviceIndex fInputDevice; PaDeviceIndex fInputDevice;
PaDeviceIndex fOutputDevice; PaDeviceIndex fOutputDevice;
PortAudioDevices* fPaDevices; PortAudioDevices* fPaDevices;
jack_native_thread_t fReservationLoopThread;


static int Render(const void* inputBuffer, void* outputBuffer, static int Render(const void* inputBuffer, void* outputBuffer,
unsigned long framesPerBuffer, unsigned long framesPerBuffer,
@@ -55,8 +63,11 @@ class JackPortAudioDriver : public JackMMCSS, public JackAudioDriver


public: public:


JackPortAudioDriver(const char* name, const char* alias, JackLockedEngine* engine, JackSynchro* table, PortAudioDevices* pa_devices)
: JackMMCSS(), JackAudioDriver(name, alias, engine, table), fStream(NULL), fInputBuffer(NULL), fOutputBuffer(NULL),
JackPortAudioDriver(const char* name, const char* alias, JackLockedEngine* engine, JackSynchro* table, PortAudioDevices* pa_devices) :
#ifdef _WIN32
JackMMCSS(),
#endif
JackAudioDriver(name, alias, engine, table), fStream(NULL), fInputBuffer(NULL), fOutputBuffer(NULL),
fInputDevice(paNoDevice), fOutputDevice(paNoDevice), fPaDevices(pa_devices) fInputDevice(paNoDevice), fOutputDevice(paNoDevice), fPaDevices(pa_devices)
{} {}




+ 0
- 1
wscript View File

@@ -151,7 +151,6 @@ def options(opt):
'portaudio', 'portaudio',
help='Enable Portaudio driver', help='Enable Portaudio driver',
conf_dest='BUILD_DRIVER_PORTAUDIO') conf_dest='BUILD_DRIVER_PORTAUDIO')
portaudio.check(header_name='windows.h') # only build portaudio on windows
portaudio.check_cfg( portaudio.check_cfg(
package='portaudio-2.0 >= 19', package='portaudio-2.0 >= 19',
uselib_store='PORTAUDIO', uselib_store='PORTAUDIO',


Loading…
Cancel
Save