diff options
| -rw-r--r-- | src/dabplus-enc.cpp | 20 | 
1 files changed, 10 insertions, 10 deletions
diff --git a/src/dabplus-enc.cpp b/src/dabplus-enc.cpp index 9b1810a..8f72073 100644 --- a/src/dabplus-enc.cpp +++ b/src/dabplus-enc.cpp @@ -297,8 +297,6 @@ int main(int argc, char *argv[])          {"bitrate",        required_argument,  0, 'b'},          {"channels",       required_argument,  0, 'c'},          {"device",         required_argument,  0, 'd'}, -        {"vlc-uri",        required_argument,  0, 'v'}, -        {"write-icy-text", required_argument,  0, 'w'},          {"format",         required_argument,  0, 'f'},          {"input",          required_argument,  0, 'i'},          {"jack",           required_argument,  0, 'j'}, @@ -306,20 +304,22 @@ int main(int argc, char *argv[])          {"pad",            required_argument,  0, 'p'},          {"pad-fifo",       required_argument,  0, 'P'},          {"rate",           required_argument,  0, 'r'}, -        {"silence",        required_argument,  0, 's'},          {"secret-key",     required_argument,  0, 'k'}, -        {"no-afterburner", no_argument,        0, 'A'}, +        {"silence",        required_argument,  0, 's'}, +        {"vlc-cache",      required_argument,  0, 'C'}, +        {"vlc-gain",       required_argument,  0, 'g'}, +        {"vlc-uri",        required_argument,  0, 'v'}, +        {"write-icy-text", required_argument,  0, 'w'}, +        {"aaclc",          no_argument,        0,  0 },          {"afterburner",    no_argument,        0, 'a'},          {"drift-comp",     no_argument,        0, 'D'}, +        {"fifo-silence",   no_argument,        0,  3 },          {"help",           no_argument,        0, 'h'},          {"level",          no_argument,        0, 'l'}, -        {"verbosity",      no_argument,        0, 'V'}, -        {"aaclc",          no_argument,        0,  0 }, -        {"sbr",            no_argument,        0,  1 }, +        {"no-afterburner", no_argument,        0, 'A'},          {"ps",             no_argument,        0,  2 }, -        {"fifo-silence",   no_argument,        0,  3 }, -        {"vlc_gain",       required_argument,  0,  'g' }, -        {"vlc_cache",      required_argument,  0,  'C' }, +        {"sbr",            no_argument,        0,  1 }, +        {"verbosity",      no_argument,        0, 'V'},          {0, 0, 0, 0},      };  | 
