aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorValtteri Vuorikoski <vuori@notcom.org>2018-03-31 20:18:45 +0300
committerValtteri Vuorikoski <vuori@notcom.org>2018-03-31 20:18:45 +0300
commit4e4d73e4124701664dc715789a959a999f43e8f6 (patch)
tree45ba7ca8f9d33ede883b89f6d69f65f031d3dd4b
parentb85ed3f574be226fe5fa4ccc56bd07af33095945 (diff)
downloadatracdenc-4e4d73e4124701664dc715789a959a999f43e8f6.tar.gz
Added validation of the -e option argument and updated help strings.
-rw-r--r--src/main.cpp17
1 files changed, 12 insertions, 5 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 4a8daef..51a2cac 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -42,8 +42,8 @@ typedef std::unique_ptr<IProcessor<TFloat>> TAtracProcessorPtr;
static void printUsage(const char* myName)
{
- cout << "\tusage: " << myName << " <-e|-d> <-i input> <-o output>\n" << endl;
- cout << "-e encode mode (PCM -> ATRAC), -i wav file, -o aea file" << endl;
+ cout << "\tusage: " << myName << " <-e <atrac1|atrac3>|-d> <-i input> <-o output>\n" << endl;
+ cout << "-e atrac1|atrac3 encode mode (PCM -> ATRAC), -i wav file, -o aea/oma file" << endl;
cout << "-d decode mode (ATRAC -> PCM), -i aea file, -o wav file" << endl;
cout << "-h get help" << endl;
@@ -60,8 +60,8 @@ static void printProgress(int percent)
static string GetHelp()
{
- return "\n--encode -e \t - encode mode"
- "\n--decode -d \t - decode mode"
+ return "\n--encode [atrac1|atrac3] -e <atrac1|atrac3> \t - encode mode (default codec is ATRAC1)"
+ "\n--decode -d \t - decode mode (only ATRAC1 supported)"
"\n -i input file"
"\n -o output file"
"\n --bitrate (only if supported by codec)"
@@ -233,9 +233,16 @@ int main(int argc, char* const* argv)
switch (ch) {
case O_ENCODE:
mode |= E_ENCODE;
+ // if arg is given, it must specify the codec; otherwise use atrac1
if (optarg) {
if (strcmp(optarg, "atrac3") == 0) {
mode |= E_ATRAC3;
+ } else if (strcmp(optarg, "atrac1") == 0) {
+ // this is the default
+ } else {
+ // bad value
+ printUsage(myName);
+ return 1;
}
}
break;
@@ -283,7 +290,7 @@ int main(int argc, char* const* argv)
case O_NOGAINCONTROL:
noGainControl = true;
break;
- default:
+ default:
printUsage(myName);
return 1;
}