~ubuntu-branches/ubuntu/feisty/jamin/feisty

« back to all changes in this revision

Viewing changes to src/state.h

  • Committer: Bazaar Package Importer
  • Author(s): Robert Jordens
  • Date: 2005-03-24 17:08:30 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 hoary)
  • Revision ID: james.westby@ubuntu.com-20050324170830-3efg06mxys3gl55s
Tags: 0.9.0+0.95.0rc2-1
new upstream prerelease

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
void s_crossfade(const int nframes);
33
33
void s_crossfade_ui();
34
34
void s_suppress_push();
 
35
void s_set_crossfade_time(float ct);
 
36
float s_get_crossfade_time();
35
37
void s_suppress_pop();
36
38
int s_have_filename();
 
39
char *s_get_filename();
 
40
 
37
41
 
38
42
#define S_NONE -1
39
43
#define S_LOAD 0
57
61
#define S_NOTCH_FREQ(n) (1060 + n)
58
62
#define S_NOTCH_Q(n) (1065 + n)
59
63
#define S_NOTCH_FLAG(n) (1070 + n)
60
 
#define S_STEREO_BALANCE(n) (1075 + n)
61
 
#define S_SIZE 1078
 
64
#define S_SIZE 1075
62
65
 
63
66
typedef struct {
64
67
    char *description;
359
362
        "Notch frequency 4", "Notch frequency 5", "Notch Q 1", "Notch Q 2",
360
363
        "Notch Q 3", "Notch Q 4", "Notch Q 5", "Notch active flag 1",
361
364
        "Notch active flag 2", "Notch active flag 3",
362
 
        "Notch active flag 4", "Notch active flag 5", "Stereo balance 1",
363
 
        "Stereo balance 2", "Stereo balance 3"
 
365
        "Notch active flag 4", "Notch active flag 5"
364
366
};
365
367
 
366
368
static const char *const s_symbol[S_SIZE] = {
626
628
        "notch-gain4", "notch-freq0", "notch-freq1", "notch-freq2",
627
629
        "notch-freq3", "notch-freq4", "notch-q0", "notch-q1", "notch-q2",
628
630
        "notch-q3", "notch-q4", "notch-flag0", "notch-flag1",
629
 
        "notch-flag2", "notch-flag3", "notch-flag4", "stereo-balance0",
630
 
        "stereo-balance1", "stereo-balance2"
 
631
        "notch-flag2", "notch-flag3", "notch-flag4"
631
632
};
632
633
 
633
634
#endif