File: options.h

package info (click to toggle)
toolame 02h-3
  • links: PTS
  • area: main
  • in suites: woody
  • size: 596 kB
  • ctags: 551
  • sloc: ansic: 10,332; sh: 111; makefile: 96
file content (18 lines) | stat: -rw-r--r-- 670 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef OPTIONS_H
#define OPTIONS_H

typedef struct {
  int usepsy;             /* TRUE   by default, use the psy model */
  int usepadbit;          /* TRUE   by default, use a padding bit */
  int quickmode;          /* FALSE  calculate psy model for every frame */
  int quickcount;         /* 10     when quickmode = TRUE, calculate psymodel every 10th frame */
  int downmix;            /* FALSE  downmix from stereo to mono */
  int byteswap;           /* FALSE  swap the bytes */
#ifdef VBR
  int vbr;                /* FALSE  switch for VBR mode */
  int vbrlevel;           /* 0      level of VBR . higher is better */
#endif
} options;

options  glopts;
#endif