paulstretch_cpp

PaulStretch
Log | Files | Refs | LICENSE

JAaudiooutput.h (1010B)


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