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.

111 lines
3.3KB

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