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.

35 lines
1010B

  1. /*
  2. JAaudiooutput.h - Audio output for JACK
  3. Copyright (C) 2002 Nasca Octavian Paul
  4. Author: Robin Gareus <robin@gareus.org>
  5. This program is free software; you can redistribute it and/or modify
  6. it under the terms of version 2 of the GNU General Public License
  7. as published by the Free Software Foundation.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License (version 2) for more details.
  12. You should have received a copy of the GNU General Public License (version 2)
  13. along with this program; if not, write to the Free Software Foundation,
  14. Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  15. */
  16. #ifndef JACK_AUDIO_OUTPUT_H
  17. #define JACK_AUDIO_OUTPUT_H
  18. #ifdef HAVE_JACK
  19. #include "Player.h"
  20. void JACKaudiooutputinit(Player *player_,int samplerate);
  21. void JACKclose();
  22. #endif
  23. #endif
  24. /* vim: set ts=8 sw=4: */