consitency in options and doc

This commit is contained in:
Mathias Panzenböck 2013-01-09 03:27:10 +01:00
parent bbe03d4306
commit 6a4eb13ce0
2 changed files with 1 additions and 5 deletions

View File

@ -41,7 +41,7 @@ Usage
Extract .wav, .aif and .ogg (might actually be .ogg, .opus or .ogm) files from Extract .wav, .aif and .ogg (might actually be .ogg, .opus or .ogm) files from
the file `data.bin` and store them in the `~/Music` directory. the file `data.bin` and store them in the `~/Music` directory.
audioextract -f wave,ogg -o ~/Music data.bin audioextract -f riff,aiff,ogg -o ~/Music data.bin
This will then write files like such into `~/Music`: This will then write files like such into `~/Music`:

View File

@ -519,10 +519,6 @@ int parse_formats(const char *formats)
{ {
mask = AIFF; mask = AIFF;
} }
else if (strncasecmp("wave", start, len) == 0)
{
mask = RIFF | AIFF;
}
else if (strncasecmp("mpg123", start, len) == 0) else if (strncasecmp("mpg123", start, len) == 0)
{ {
mask = MPG123; mask = MPG123;