/ source / audiolib / src / pitch.h
pitch.h
 1  /*
 2  Copyright (C) 1994-1995 Apogee Software, Ltd.
 3  
 4  This program is free software; you can redistribute it and/or
 5  modify it under the terms of the GNU General Public License
 6  as published by the Free Software Foundation; either version 2
 7  of the License, or (at your option) any later version.
 8  
 9  This program is distributed in the hope that it will be useful,
10  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12  
13  See the GNU General Public License for more details.
14  
15  You should have received a copy of the GNU General Public License
16  along with this program; if not, write to the Free Software
17  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
18  
19  */
20  /**********************************************************************
21     module: PITCH.H
22  
23     author: James R. Dose
24     date:   June 14, 1994
25  
26     Public header for PITCH.C
27  
28     (c) Copyright 1994 James R. Dose.  All Rights Reserved.
29  **********************************************************************/
30  
31  #ifndef PITCH_H_
32  #define PITCH_H_
33  
34  #include <inttypes.h>
35  
36  uint32_t PITCH_GetScale(int pitchoffset);
37  #endif