Mercurial > hg > aim92
comparison model/model.h @ 0:5242703e91d3 tip
Initial checkin for AIM92 aimR8.2 (last updated May 1997).
author | tomwalters |
---|---|
date | Fri, 20 May 2011 15:19:45 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:5242703e91d3 |
---|---|
1 /* | |
2 model.h | |
3 ======= | |
4 | |
5 inteface to Auditory model software | |
6 | |
7 */ | |
8 | |
9 struct _stage { | |
10 char *ident ; | |
11 Source (*entry)() ; | |
12 Option *options ; | |
13 char **defaults ; | |
14 char *help ; | |
15 } ; | |
16 | |
17 extern struct _stage *FindStage( /* char *which */ ) ; | |
18 | |
19 extern Source ModeledSource( /* Source input */ ) ; | |
20 | |
21 extern char *modelStart() ; | |
22 extern char *modelHelp() ; | |
23 | |
24 | |
25 extern char *whichstr ; | |
26 extern double *frequencies ; | |
27 | |
28 #if 00 | |
29 extern char *samplestr ; | |
30 extern char *pwidthstr ; | |
31 extern char *nwidthstr ; | |
32 #endif | |
33 | |
34 extern long Frames() ; | |
35 | |
36 extern int Framebytes() ; | |
37 extern int Framewidth() ; | |
38 extern int Frameheight() ; | |
39 extern int Framestep() ; | |
40 extern int Nwidth() ; | |
41 | |
42 extern int OptionInt() ; | |
43 extern double OptionDouble() ; | |
44 | |
45 extern double Samplerate() ; |