jack1 codebase
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

97 lines
3.0KB

  1. 2003-10-15 Paul Davis <paul@linuxaudiosystems.com>
  2. * new ring buffer interface: <jack/ringbuffer.h>
  3. 2003-10-07 Paul Davis <paul@linuxaudiosystems.com>
  4. * new function jack_set_freewheel().
  5. No compatibility issues: this introduces new functionality to
  6. JACK and doesn't alter any existing functionality.
  7. 2003-09-18 Jack O'Quin <joq@io.com>
  8. * new function jack_set_buffer_size().
  9. Compatibility issues: programs that rely on the buffer size but do
  10. not register a callback will fail. Cached output buffer addresses
  11. are not valid after the buffer size changes. These rules existed
  12. before, but were never enforced.
  13. 2003-08-26 Jack O'Quin <joq@io.com>
  14. * <jack/types.h> typedefs are now defined using the C99 standard
  15. fixed-size integer typedefs. These new typedefs are binary
  16. compatible with 32-bit platforms, but not 64-bit machines.
  17. Programs using printf on these values will get GCC compiler
  18. warnings. To suppress the warnings, use the corresponding C99
  19. printf specifications defined in <inttypes.h>. That header is
  20. already implicitly included by <jack/types.h>, but can also be
  21. included explicitly to maintain compatibility with older versions
  22. of JACK without messy #ifdef's. Adding explicit casts will also
  23. work, but may suppress future warnings you might want to see.
  24. * jack_get_sample_rate() now returns jack_nframes_t rather than
  25. unsigned long. These are the same on 32-bit machines, but not on
  26. 64-bit platforms.
  27. 2003-08-13 Jack O'Quin <joq@io.com>
  28. * Many new transport interfaces. It would be silly to list them
  29. all here. Please see the new transport control section in the
  30. JACK reference manual.
  31. * jack_set_transport_info() and jack_engine_takeover_timebase(),
  32. (the old timebase master interfaces) now do nothing. Instead, use
  33. jack_set_timebase_callback().
  34. 2003-05-09 Jack O'Quin <joq@io.com>
  35. * Added new jack_is_realtime() function.
  36. 2003-02-23 Paul Davis <paul>
  37. * client.c:
  38. added deliver_request().
  39. removed all use of strncpy().
  40. changed ClientDynamic to ClientInProcess.
  41. 2003-02-10 Taybin Rutkin <trutkin@physics.clarku.edu>
  42. * client.c (jack_client_new): Checks jack_protocol_version returned
  43. from jackd.
  44. 2003-02-05 Kai Vehmanen <kai.vehmanen@wakkanet.fi>
  45. * client.c (jack_set_buffer_size_callback): This function is now
  46. deprecated.
  47. 2002-12-20 Paul Davis <paul>
  48. * error.h (jack_set_error_function): added
  49. 2002-12-16 Paul Davis <paul>
  50. * jack.h: added inclusion of pthread.h
  51. 2002-12-09 Paul Davis <paul>
  52. * jack.h (jack_client_new_inprocess): prototype for in-process client creation (not implemented)
  53. * jack.h (jack_client_thread_id): added so that clients can easily
  54. find out the pthread_t that is running the JACK client code. this
  55. turns out to be critical to handling the SIGHUP.
  56. 2002-11-15 Paul Davis <paul>
  57. * client.c: added port alias functions. untested.
  58. 2002-11-05 Kai Vehmanen <kai.vehmanen@wakkanet.fi>
  59. * Created this file. Current JACK version is
  60. 0.39.0 and libjack interface 0:5:0. See
  61. jack/README.developers for details on how to
  62. use this file.