1 /*
2     pvread.h:
3 
4     Copyright (C) 1992 Richard Karpen
5 
6     This file is part of Csound.
7 
8     The Csound Library is free software; you can redistribute it
9     and/or modify it under the terms of the GNU Lesser General Public
10     License as published by the Free Software Foundation; either
11     version 2.1 of the License, or (at your option) any later version.
12 
13     Csound is distributed in the hope that it will be useful,
14     but WITHOUT ANY WARRANTY; without even the implied warranty of
15     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16     GNU Lesser General Public License for more details.
17 
18     You should have received a copy of the GNU Lesser General Public
19     License along with Csound; if not, write to the Free Software
20     Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21     02110-1301 USA
22 */
23 
24 /*                                                              PVREAD.H    */
25 
26 typedef struct {
27     OPDS    h;
28     MYFLT   *kfreq, *kamp, *ktimpnt,  *ifilno, *ibin;
29     int32   kcnt;
30     int32   baseFr, maxFr, frSiz, prFlg;
31     /* base Frame (in frameData0) and maximum frame on file, ptr to fr, size */
32     MYFLT   frPrtim, asr;
33     float   *frPtr;
34     int32   mybin;
35 } PVREAD;
36 
37