summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xREADME4
-rw-r--r--src/blackwave.cpp2
2 files changed, 5 insertions, 1 deletions
diff --git a/README b/README
index 4bfdfd2..edba013 100755
--- a/README
+++ b/README
@@ -140,6 +140,10 @@ command-line utilities all respond to -h.
Change History
+2013-xx-xx - enhancements, bug fixes 2.0.x
+ o fixed a bug that caused blackwave to only produce 96kHz WAV files.
+ (thanks to Stephane W)
+
2013-07-02 - IMF/AS-02 support, bug fixes 2.0.0
o Massive refactoring of internals to allow easier implementation
of AS-02. Some API changes were made as well (note that
diff --git a/src/blackwave.cpp b/src/blackwave.cpp
index 36d3235..ac8fea2 100644
--- a/src/blackwave.cpp
+++ b/src/blackwave.cpp
@@ -100,7 +100,7 @@ public:
const char* filename; // filename prefix for files written by the extract mode
CommandOptions(int argc, const char** argv) :
- error_flag(true), verbose_flag(false), version_flag(false), help_flag(false),
+ error_flag(true), verbose_flag(false), version_flag(false), help_flag(false), s96_flag(false),
duration(1440), filename(0)
{
for ( int i = 1; i < argc; i++ )