diff options
| author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-03-07 21:32:53 +0100 | 
|---|---|---|
| committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-03-07 21:32:53 +0100 | 
| commit | 3fbf8b0332418cbf019c23e6bed9b7d9708e6784 (patch) | |
| tree | 9b872a3b3f3f2fdd5321444207c6bdc3c4d280f2 | |
| parent | 4adcfd1aba980d7d50bff824dded9de4f71d6857 (diff) | |
| download | ODR-AudioEnc-3fbf8b0332418cbf019c23e6bed9b7d9708e6784.tar.gz ODR-AudioEnc-3fbf8b0332418cbf019c23e6bed9b7d9708e6784.tar.bz2 ODR-AudioEnc-3fbf8b0332418cbf019c23e6bed9b7d9708e6784.zip | |
Remove channelswap and input_select from toolame
| -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;  }  /************************************************************************ | 
