/usr/include/csound/pstream.h is in libcsound64-dev 1:6.10.0~dfsg-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 | /*
pstream.h:
Copyright (C) 2001 Richard Dobson
This file is part of Csound.
The Csound Library is free software; you can redistribute it
and/or modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
Csound is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with Csound; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
02111-1307 USA
*/
#ifndef __PSTREAM_H_INCLUDED
#define __PSTREAM_H_INCLUDED
/* pstream.h. Implementation of PVOCEX streaming opcodes.
(c) Richard Dobson August 2001
NB pvoc routines based on CARL distribution (Mark Dolson).
This file is licensed according to the terms of the GNU LGPL.
*/
/* opcodes: PROVISIONAL DEFINITIONS
fsig pvsanal ain,ifftsize,ioverlap,iwinsize,iwintype[,iformat,iinit]
iwintype: 0 = HAMMING, 1 = VonHann, 2 = Kaiser(?)
iformat: only PVS_AMP_FREQ (0) supported at present
(TODO: add f-table support for custom window)
( But: really need a param to associate with the window too,
or just use a standard default value...)
fsig pvsfread ktimpt,ifn[,ichan]
asig pvsynth fsig[,iinit]
asig pvsadsyn fsig,inoscs,kfmod[,ibin,ibinoffset,iinit]
ibin: starting bin (defualt 0)
ibinoffset: distance between successive bins (default 1)
kfmod: multiplier; 1 = no change, 2 = up one octave.
fsig pvscross fsrc,fdest,kamp1,kamp2
fsig pvsmaska fsrc,ifn,kdepth
ioverlap,inumbins,iwinsize,iformat pvsinfo fsig
( will need sndinfo supporting pvocex files anyway,
to know numchans, wintype, etc.)
fdest = fsrc
( woo-hoo! operator overloading in Csound!)
( NB an init statement for fsigs is not supported. One day....)
kflag pvsftw fsig,ifna [,ifnf]
pvsftr fsig,ifna [,ifnf]
( this modifies an ~existing~ signal, does not create a new one,
hence no output)
Re iinit: not implemented yet: and I still need to establish
if it's possible...
*/
/* description of an fsig analysis frame*/
enum PVS_WINTYPE {
PVS_WIN_HAMMING = 0,
PVS_WIN_HANN,
PVS_WIN_KAISER,
PVS_WIN_CUSTOM,
PVS_WIN_BLACKMAN,
PVS_WIN_BLACKMAN_EXACT,
PVS_WIN_NUTTALLC3,
PVS_WIN_BHARRIS_3,
PVS_WIN_BHARRIS_MIN,
PVS_WIN_RECT
};
enum PVS_ANALFORMAT {
PVS_AMP_FREQ = 0,
PVS_AMP_PHASE,
PVS_COMPLEX,
PVS_TRACKS /* added VL, 24.06.2005 */
};
typedef struct {
MYFLT re;
MYFLT im;
} CMPLX;
typedef struct pvsdat {
int32 N;
int sliding; /* Flag to indicate sliding case */
int32 NB;
int32 overlap;
int32 winsize;
int wintype;
int32 format; /* fixed for now to AMP:FREQ */
uint32 framecount;
AUXCH frame; /* RWD MUST always be 32bit floats */
/* But not in sliding case when MYFLT */
} PVSDAT;
/* may be no point supporting Kaiser in an opcode unless we can support
the param too but we can have kaiser in a PVOCEX file. */
typedef struct {
OPDS h;
PVSDAT *fsig; /* output signal is an analysis frame */
MYFLT *ain; /* input sig is audio */
MYFLT *fftsize; /* params */
MYFLT *overlap;
MYFLT *winsize;
MYFLT *wintype;
MYFLT *format; /* always PVS_AMP_FREQ at present */
MYFLT *init; /* not yet implemented */
/* internal */
int32 buflen;
float fund,arate;
float RoverTwoPi,TwoPioverR,Fexact;
MYFLT *nextIn;
int32 nI,Ii,IOi; /* need all these ?; double as N and NB */
int32 inptr;
AUXCH input;
AUXCH overlapbuf;
AUXCH analbuf;
AUXCH analwinbuf; /* prewin in SDFT case */
AUXCH oldInPhase;
AUXCH trig;
double *cosine, *sine;
void *setup;
} PVSANAL;
typedef struct {
OPDS h;
MYFLT *aout; /* audio output signal */
PVSDAT *fsig; /* input signal is an analysis frame */
MYFLT *init; /* not yet implemented */
/* internal */
/* check these against fsig vals */
int32 overlap,winsize,fftsize,wintype,format;
/* can we allow variant window tpes? */
int32 buflen;
MYFLT fund,arate;
MYFLT RoverTwoPi,TwoPioverR,Fexact;
MYFLT *nextOut;
int32 nO,Ii,IOi; /* need all these ?*/
int32 outptr;
int32 bin_index; /* for phase normalization across frames */
/* renderer gets all format info from fsig */
AUXCH output;
AUXCH overlapbuf;
AUXCH synbuf;
AUXCH analwinbuf; /* may get away with a local alloc and free */
AUXCH synwinbuf;
AUXCH oldOutPhase;
void *setup;
} PVSYNTH;
/* for pvadsyn */
typedef struct {
OPDS h;
MYFLT *aout;
PVSDAT *fsig;
MYFLT *n_oscs;
MYFLT *kfmod;
MYFLT *ibin; /* default 0 */
MYFLT *ibinoffset; /* default 1 */
MYFLT *init; /* not yet implemented */
/* internal */
int32 outptr;
uint32 lastframe;
/* check these against fsig vals */
int32 overlap,winsize,fftsize,wintype,format,noscs;
int32 maxosc;
float one_over_overlap,pi_over_sr, one_over_sr;
float fmod;
AUXCH a;
AUXCH x;
AUXCH y;
AUXCH amps;
AUXCH lastamps;
AUXCH freqs;
AUXCH outbuf;
} PVADS;
/* for pvscross */
typedef struct {
OPDS h;
PVSDAT *fout;
PVSDAT *fsrc;
PVSDAT *fdest;
MYFLT *kamp1;
MYFLT *kamp2;
/* internal */
int32 overlap,winsize,fftsize,wintype,format;
uint32 lastframe;
} PVSCROSS;
/* for pvsmaska */
typedef struct {
OPDS h;
PVSDAT *fout;
PVSDAT *fsrc;
MYFLT *ifn;
MYFLT *kdepth;
/* internal*/
int32 overlap,winsize,fftsize,wintype,format;
uint32 lastframe;
int nwarned,pwarned; /* range errors for kdepth */
FUNC *maskfunc;
} PVSMASKA;
/* for pvsftw, pvsftr */
typedef struct {
OPDS h;
MYFLT *kflag;
PVSDAT *fsrc;
MYFLT *ifna; /* amp, required */
MYFLT *ifnf; /* freq: optional*/
/* internal */
int32 overlap,winsize,fftsize,wintype,format;
uint32 lastframe;
FUNC *outfna, *outfnf;
} PVSFTW;
typedef struct {
OPDS h;
/* no output var*/
PVSDAT *fdest;
MYFLT *ifna; /* amp, may be 0 */
MYFLT *ifnf; /* freq: optional*/
/* internal */
int32 overlap,winsize,fftsize,wintype,format;
uint32 lastframe;
FUNC *infna, *infnf;
MYFLT *ftablea,*ftablef;
} PVSFTR;
/* for pvsfread */
/* wsig pvsread ktimpt,ifilcod */
typedef struct {
OPDS h;
PVSDAT *fout;
MYFLT *kpos;
MYFLT *ifilno;
MYFLT *ichan;
/* internal */
int ptr;
int32 overlap,winsize,fftsize,wintype,format;
uint32 chans, nframes,lastframe,chanoffset,blockalign;
MYFLT arate;
float *membase; /* RWD MUST be 32bit: reads file */
} PVSFREAD;
/* for pvsinfo */
typedef struct {
OPDS h;
MYFLT *ioverlap;
MYFLT *inumbins;
MYFLT *iwinsize;
MYFLT *iformat;
/* internal*/
PVSDAT *fsrc;
} PVSINFO;
typedef struct {
OPDS h;
PVSDAT *fout;
PVSDAT *fsrc;
} FASSIGN;
#endif
|