r454: Fixed that the color pickers (if opened) were not updated during playback.
[cinelerra_cv.git] / toolame-02l / options.h
blob733ecaa7298f636a91f7916cea42ee54756a19d1
1 #ifndef OPTIONS_H
2 #define OPTIONS_H
4 typedef struct
6 int usepsy; /* TRUE by default, use the psy model */
7 int usepadbit; /* TRUE by default, use a padding bit */
8 int quickmode; /* FALSE calculate psy model for every frame */
9 int quickcount; /* 10 when quickmode = TRUE, calculate psymodel every 10th frame */
10 int downmix; /* FALSE downmix from stereo to mono */
11 int byteswap; /* FALSE swap the bytes */
12 int channelswap; /* FALSE swap the channels */
13 int dab; /* FALSE DAB extensions */
14 int vbr; /* FALSE switch for VBR mode */
15 float vbrlevel; /* 0 level of VBR . higher is better */
16 float athlevel; /* 0 extra argument to the ATH equation -
17 used for VBR in LAME */
18 int verbosity; /* 2 by default. 0 is no output at all */
20 options;
22 options glopts;
23 #endif