diff --git a/README.md b/README.md
index 6abd646..cc49f96 100644
--- a/README.md
+++ b/README.md
@@ -1,13 +1,11 @@
# Libnyquist
Libnyquist is a small C++11 library for reading sampled audio data from disk or memory. It's ideal to use as an audio asset frontend for games, audio sequencers, music players, and more.
-*The library is under active development and the API should be considered unstable. Check the Github issues queue for the state of the alpha.*
-
The library steers away from patent-encumbered formats and those with non-BSD licensed codec implementations (such as MP3 and AAC, respectively).
Libnyquist is meant to be statically linked, which is not the case with other popular libraries like libsndfile (LGPL). Furthermore, the library is not concerned with legacy format support (for instance, A-law PCM encoding or SND files).
-While untested, there are no technical conditions that preclude compilation on other platforms with C++11 support (Android 4.4+, Linux, iOS, etc).
+While untested, there are no technical conditions that preclude compilation on other platforms with C++11 support (Android NDK r10e+, Linux, iOS, etc).
## Format Support
@@ -20,16 +18,16 @@ Regardless of input bit depth, the library hands over an interleaved float array
* WavPack
* Core Audio Format (Apple Lossless / AIFF) (WIP)
-## Platform Support
-* Windows & Visual Studio 2013+
-* OSX & XCode 5+
+## Supported Project Files
+* Visual Studio 2013
+* XCode 6
## Known Issues
* Ogg and Opus have conflicting mdct files. Their sources were modified such that they compile cleanly together in the same project.
* Streaming is not supported for any file formats.
## Encoding
-WIP for 1.0-beta
+Simple but robust WAV format encoder now included. Extentions in the near future might include Ogg.
## License
Libyquist is released under the 2-Clause BSD license. All dependencies and codecs are under similar open licenses.
diff --git a/examples/libnyquist-examples.vcxproj/libnyquist-examples.vcxproj b/examples/libnyquist-examples.vcxproj/libnyquist-examples.vcxproj
index 96e9a56..2f29138 100644
--- a/examples/libnyquist-examples.vcxproj/libnyquist-examples.vcxproj
+++ b/examples/libnyquist-examples.vcxproj/libnyquist-examples.vcxproj
@@ -81,7 +81,7 @@
truefalsetrue
- true
+ false
diff --git a/examples/src/Main.cpp b/examples/src/Main.cpp
index 567a578..f7c9a4f 100644
--- a/examples/src/Main.cpp
+++ b/examples/src/Main.cpp
@@ -33,7 +33,7 @@ int main()
//auto result = loader.Load(fileData, "test_data/1ch/44100/8/test.wav");
//auto result = loader.Load(fileData, "test_data/1ch/44100/16/test.wav");
//auto result = loader.Load(fileData, "test_data/1ch/44100/24/test.wav");
- auto result = loader.Load(fileData, "test_data/1ch/44100/32/test.wav");
+ //auto result = loader.Load(fileData, "test_data/1ch/44100/32/test.wav");
//auto result = loader.Load(fileData, "test_data/1ch/44100/64/test.wav");
//auto result = loader.Load(fileData, "test_data/2ch/44100/8/test.wav");
@@ -51,7 +51,7 @@ int main()
//auto result = loader.Load(fileData, "test_data/ad_hoc/BlockWoosh_Stereo.ogg");
//auto result = loader.Load(fileData, "test_data/ad_hoc/KittyPurr8_Stereo_Dithered.flac");
- //auto result = loader.Load(fileData, "test_data/ad_hoc/KittyPurr16_Stereo.flac");
+ auto result = loader.Load(fileData, "test_data/ad_hoc/KittyPurr16_Stereo.flac");
//auto result = loader.Load(fileData, "test_data/ad_hoc/KittyPurr16_Mono.flac");
//auto result = loader.Load(fileData, "test_data/ad_hoc/KittyPurr24_Stereo.flac");
diff --git a/include/libnyquist/AudioDecoder.h b/include/libnyquist/AudioDecoder.h
index a9cdd7f..a1ef51c 100644
--- a/include/libnyquist/AudioDecoder.h
+++ b/include/libnyquist/AudioDecoder.h
@@ -64,6 +64,7 @@ public:
~NyquistIO();
int Load(AudioData * data, const std::string & path);
+ int Load(AudioData *data, std::string extension, const std::vector & buffer);
bool IsFileSupported(const std::string path) const;
diff --git a/include/libnyquist/FlacDecoder.h b/include/libnyquist/FlacDecoder.h
index 2ea2fba..392478f 100644
--- a/include/libnyquist/FlacDecoder.h
+++ b/include/libnyquist/FlacDecoder.h
@@ -26,6 +26,9 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef FLAC_DECODER_H
#define FLAC_DECODER_H
+// http://lists.xiph.org/pipermail/flac-dev/2012-March/003276.html
+#define FLAC__NO_DLL
+
#include "AudioDecoder.h"
#include