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.

77 lines
2.4KB

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