summaryrefslogtreecommitdiffstats
path: root/libtoolame-dab/options.h
blob: 497f3044ac48cc07b84e79f16757d299cebe2de1 (plain)
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
#ifndef OPTIONS_H
#define OPTIONS_H

#define INPUT_SELECT_JACK 1
#define INPUT_SELECT_WAV 2
#define INPUT_SELECT_VLC 3

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 byteswap;			/* FALSE  swap the bytes */
  int dab;			/* FALSE  DAB extensions */
  int vbr;			/* FALSE  switch for VBR mode */
  float vbrlevel;			/* 0      level of VBR . higher is better */
  float athlevel;                 /* 0      extra argument to the ATH equation - 
				          used for VBR in LAME */
  int verbosity;                /* 2 by default. 0 is no output at all */
  int show_level; /* 1=show the sox-like audio level measurement */
}
options;

extern options glopts;
#endif