diff options
-rw-r--r-- | libtoolame-dab/options.h | 2 | ||||
-rw-r--r-- | libtoolame-dab/toolame.c | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/libtoolame-dab/options.h b/libtoolame-dab/options.h index 899a6f1..b12e549 100644 --- a/libtoolame-dab/options.h +++ b/libtoolame-dab/options.h @@ -13,14 +13,12 @@ typedef struct 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 */ - int channelswap; /* FALSE swap the channels */ 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 input_select; /* 1=use JACK input, 2=use wav input, 3=use VLC input */ int show_level; /* 1=show the sox-like audio level measurement */ } options; diff --git a/libtoolame-dab/toolame.c b/libtoolame-dab/toolame.c index 1c18497..c975e4b 100644 --- a/libtoolame-dab/toolame.c +++ b/libtoolame-dab/toolame.c @@ -35,12 +35,10 @@ void global_init (void) glopts.quickcount = 10; glopts.downmix = FALSE; glopts.byteswap = FALSE; - glopts.channelswap = FALSE; glopts.vbr = FALSE; glopts.vbrlevel = 0; glopts.athlevel = 0; glopts.verbosity = 2; - glopts.input_select = 0; } /************************************************************************ |