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.

55 lines
1.9KB

  1. /*
  2. * This is the main page of the JACK reference manual, built using
  3. * doxygen.
  4. */
  5. /**
  6. @mainpage JACK Audio Connection Kit
  7. @section intro Introduction
  8. JACK is a low-latency audio server, written primarily for the
  9. GNU/Linux operating system. It can connect several client
  10. applications to an audio device, and allow them to share audio with
  11. each other. Clients can run as separate processes like normal
  12. applications, or within the JACK server as "plugins".
  13. JACK differs from other audio servers in being designed from the
  14. ground up for professional audio work, focusing on two key areas:
  15. synchronous execution of all clients, and low latency operation.
  16. @see <http://jackit.sourceforge.net>
  17. @section contents Contents
  18. The JACK programming interfaces are described in several header files:
  19. - <jack/jack.h> defines most of the interfaces used by JACK clients.
  20. - <jack/transport.h> provides a simple transport control mechanism
  21. for starting, stopping and repositioning clients. This is described
  22. in the @ref transport-design document.
  23. - <jack/types.h> defines most of the data types for JACK.
  24. @section license License
  25. Copyright (C) 2001-2003 by Paul Davis and others.
  26. JACK is free software; you can redistribute it and/or modify it under
  27. the terms of the GNU GPL and LGPL licenses as published by the Free
  28. Software Foundation, <http://www.gnu.org>. Most of JACK uses the GPL,
  29. as noted in the source file headers. But, the library interfaces are
  30. licensed under the LGPL, allowing proprietary programs to link with
  31. JACK and call its services. You should have received a copy of these
  32. Licenses along with the program; if not, write to the Free Software
  33. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
  34. USA.
  35. This program is distributed in the hope that it will be useful, but
  36. WITHOUT ANY WARRANTY; without even the implied warranty of
  37. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  38. General Public License for more details.
  39. */