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.

86 lines
2.7KB

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