Browse Source

New server/client data transfer model. Fix a device name reversal in ALSA driver.

git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@1337 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/0.61
sletz 19 years ago
parent
commit
e8f813ae02
2 changed files with 5 additions and 1 deletions
  1. +4
    -0
      ChangeLog
  2. +1
    -1
      linux/alsa/JackAlsaDriver.cpp

+ 4
- 0
ChangeLog View File

@@ -2,6 +2,10 @@
Jackdmp changes log
---------------------------

2007-01-09 Stephane Letz <letz@grame.fr>

* New server/client data transfer model. Fix a device name reversal in ALSA driver.

2007-01-04 Stephane Letz <letz@grame.fr>
* Add call to the init callback (set up using the jack_set_thread_init_callback API) in Real-Time and Notification threads. Define a new 'kActivateClient' notification.


+ 1
- 1
linux/alsa/JackAlsaDriver.cpp View File

@@ -2164,7 +2164,7 @@ int JackAlsaDriver::Open(jack_nframes_t nframes,
return -1;
}

fDriver = alsa_driver_new ("alsa_pcm", (char*)capture_driver_name, (char*)playback_driver_name,
fDriver = alsa_driver_new ("alsa_pcm", (char*)playback_driver_name, (char*)capture_driver_name,
NULL,
nframes,
user_nperiods,


Loading…
Cancel
Save