diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2017-01-06 09:11:30 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2017-01-06 09:11:30 +0100 |
commit | d04c019cef1d01c74820ce1d74c1965eec81c14e (patch) | |
tree | 2bd493407585374874600327d69d7a7661675ecd /libtoolame-dab | |
parent | a27ccc7a5521bc5bb881758dd6e7418da7e71c52 (diff) | |
download | ODR-AudioEnc-d04c019cef1d01c74820ce1d74c1965eec81c14e.tar.gz ODR-AudioEnc-d04c019cef1d01c74820ce1d74c1965eec81c14e.tar.bz2 ODR-AudioEnc-d04c019cef1d01c74820ce1d74c1965eec81c14e.zip |
libtoolame-dab: move glopts to toolame.c
Diffstat (limited to 'libtoolame-dab')
-rw-r--r-- | libtoolame-dab/options.h | 2 | ||||
-rw-r--r-- | libtoolame-dab/toolame.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/libtoolame-dab/options.h b/libtoolame-dab/options.h index b12e549..ea4d0e4 100644 --- a/libtoolame-dab/options.h +++ b/libtoolame-dab/options.h @@ -23,6 +23,6 @@ typedef struct } options; -options glopts; +extern options glopts; #endif diff --git a/libtoolame-dab/toolame.c b/libtoolame-dab/toolame.c index 961561f..b15e555 100644 --- a/libtoolame-dab/toolame.c +++ b/libtoolame-dab/toolame.c @@ -23,6 +23,8 @@ Bit_stream_struc bs; +options glopts; + const int FPAD_LENGTH=2; void smr_dump(double smr[2][SBLIMIT], int nch); |