fix typo of bitrate-mode option

This commit is contained in:
nu774 2013-01-07 20:11:52 +09:00
parent 158dc13cc8
commit 34b319e08b
2 changed files with 2 additions and 2 deletions

View File

@ -148,7 +148,7 @@ int parse_options(int argc, char **argv, aacenc_param_ex_t *params)
{ "help", no_argument, 0, 'h' },
{ "profile", required_argument, 0, 'p' },
{ "bitrate", required_argument, 0, 'b' },
{ "biterate-mode", required_argument, 0, 'm' },
{ "bitrate-mode", required_argument, 0, 'm' },
{ "bandwidth", required_argument, 0, 'w' },
{ "afterburner", required_argument, 0, 'a' },
{ "lowdelay-sbr", no_argument, 0, 'L' },

View File

@ -1,4 +1,4 @@
#ifndef VERSION_H
#define VERSION_H
const char *fdkaac_version = "0.0.7";
const char *fdkaac_version = "0.0.8";
#endif