From dcef49b47f4a13e735b3c8f8e35c48cc9ddc7627 Mon Sep 17 00:00:00 2001 From: Dimitri Diakopoulos Date: Sun, 20 Dec 2015 20:21:14 -0800 Subject: [PATCH 1/3] Add note about ima adpcm --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index b02e6f8..282638f 100644 --- a/README.md +++ b/README.md @@ -11,13 +11,12 @@ While untested, there are no technical conditions that preclude compilation on o Regardless of input bit depth, the library hands over an interleaved float array, normalized between [-1.0,+1.0]. At present, the library does not provide resampling functionality. -* Wave +* Wave (+ IMA-ADPCM encoding) * Ogg Vorbis * Ogg Opus * FLAC * WavPack * Musepack -* Core Audio Format (Apple Lossless / AIFF) (WIP) ## Encoding Simple but robust WAV format encoder now included. Extentions in the near future might include Ogg. From 24f68a7eb04ecd95d2e022cdce09d315c1a7c555 Mon Sep 17 00:00:00 2001 From: Dimitri Diakopoulos Date: Mon, 21 Dec 2015 11:32:28 -0800 Subject: [PATCH 2/3] add ima4util header to visual studio projects --- libnyquist.vcxproj/v120/libnyquist.vcxproj | 1 + libnyquist.vcxproj/v120/libnyquist.vcxproj.filters | 3 +++ libnyquist.vcxproj/v140/libnyquist.vcxproj | 1 + libnyquist.vcxproj/v140/libnyquist.vcxproj.filters | 3 +++ 4 files changed, 8 insertions(+) diff --git a/libnyquist.vcxproj/v120/libnyquist.vcxproj b/libnyquist.vcxproj/v120/libnyquist.vcxproj index 844a1f6..fed0004 100644 --- a/libnyquist.vcxproj/v120/libnyquist.vcxproj +++ b/libnyquist.vcxproj/v120/libnyquist.vcxproj @@ -68,6 +68,7 @@ + diff --git a/libnyquist.vcxproj/v120/libnyquist.vcxproj.filters b/libnyquist.vcxproj/v120/libnyquist.vcxproj.filters index e05fe97..4df6450 100644 --- a/libnyquist.vcxproj/v120/libnyquist.vcxproj.filters +++ b/libnyquist.vcxproj/v120/libnyquist.vcxproj.filters @@ -147,6 +147,9 @@ include + + include\util + diff --git a/libnyquist.vcxproj/v140/libnyquist.vcxproj b/libnyquist.vcxproj/v140/libnyquist.vcxproj index bb4f532..d1e8879 100644 --- a/libnyquist.vcxproj/v140/libnyquist.vcxproj +++ b/libnyquist.vcxproj/v140/libnyquist.vcxproj @@ -68,6 +68,7 @@ + diff --git a/libnyquist.vcxproj/v140/libnyquist.vcxproj.filters b/libnyquist.vcxproj/v140/libnyquist.vcxproj.filters index 3d8ba44..71458ee 100644 --- a/libnyquist.vcxproj/v140/libnyquist.vcxproj.filters +++ b/libnyquist.vcxproj/v140/libnyquist.vcxproj.filters @@ -147,6 +147,9 @@ include + + include\util + From f1e3de7a12d5fbbe4e049d1530dbbd7d8862a984 Mon Sep 17 00:00:00 2001 From: Dimitri Diakopoulos Date: Tue, 22 Dec 2015 09:45:41 -0800 Subject: [PATCH 3/3] add note about platform APIs --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 282638f..a40bcbd 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # 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 steers away from patent-encumbered formats and those with non-BSD licensed codec implementations (such as MP3 and AAC, respectively). +The library steers away from patent or GPL license encumbered formats (such as MP3 and AAC). For portability, libnyquist does not link against platform-specific APIs like Windows Media Foundation or CoreAudio, and instead bundles the source code of reference decoders as an implementation detail. 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).