diff --git a/po/spek.pot b/po/spek.pot index 32839b4..ba78c28 100644 --- a/po/spek.pot +++ b/po/spek.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-06 09:06-0800\n" +"POT-Creation-Date: 2013-03-07 10:14-0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/tests/samples/1ch-96000Hz-24bps.ape b/tests/samples/1ch-96000Hz-24bps.ape new file mode 100644 index 0000000..a57ba30 Binary files /dev/null and b/tests/samples/1ch-96000Hz-24bps.ape differ diff --git a/tests/samples/1ch-96000Hz-24bps.wv b/tests/samples/1ch-96000Hz-24bps.wv new file mode 100644 index 0000000..50e4581 Binary files /dev/null and b/tests/samples/1ch-96000Hz-24bps.wv differ diff --git a/tests/samples/2ch-48000Hz-16bps.ape b/tests/samples/2ch-48000Hz-16bps.ape new file mode 100644 index 0000000..2fcffab Binary files /dev/null and b/tests/samples/2ch-48000Hz-16bps.ape differ diff --git a/tests/samples/2ch-48000Hz-16bps.wv b/tests/samples/2ch-48000Hz-16bps.wv new file mode 100644 index 0000000..7ff1c48 Binary files /dev/null and b/tests/samples/2ch-48000Hz-16bps.wv differ diff --git a/tests/test-audio-info.cc b/tests/test-audio-info.cc index 0c8a819..522c24b 100644 --- a/tests/test-audio-info.cc +++ b/tests/test-audio-info.cc @@ -54,6 +54,10 @@ void test_audio_info() std::map files = { {"1ch-96000Hz-24bps.flac", {"FLAC", 0, 96000, 24, 1, 0.1}}, {"2ch-48000Hz-16bps.flac", {"FLAC", 0, 48000, 16, 2, 0.1}}, + {"1ch-96000Hz-24bps.ape", {"Monkey", 0, 96000, 24, 1, 0.1}}, + {"2ch-48000Hz-16bps.ape", {"Monkey", 0, 48000, 16, 2, 0.1}}, + {"1ch-96000Hz-24bps.wv", {"WavPack", 0, 96000, 24, 1, 0.1}}, + {"2ch-48000Hz-16bps.wv", {"WavPack", 0, 48000, 16, 2, 0.1}}, {"2ch-44100Hz-16bps.wav", {"PCM", 0, 44100, 16, 2, 0.1}}, {"2ch-44100Hz-128cbr.mp3", {"MP3", 128000, 44100, 0, 2, MP3_T}}, {"2ch-44100Hz-320cbr.mp3", {"MP3", 320000, 44100, 0, 2, MP3_T}}, diff --git a/tests/test-audio-read.cc b/tests/test-audio-read.cc index 80eedc3..58d24ca 100644 --- a/tests/test-audio-read.cc +++ b/tests/test-audio-read.cc @@ -49,6 +49,10 @@ void test_audio_read() std::map files = { {"1ch-96000Hz-24bps.flac", 1 * 96000 / 10}, {"2ch-48000Hz-16bps.flac", 2 * 48000 / 10}, + {"1ch-96000Hz-24bps.ape", 1 * 96000 / 10}, + {"2ch-48000Hz-16bps.ape", 2 * 48000 / 10}, + {"1ch-96000Hz-24bps.wv", 1 * 96000 / 10}, + {"2ch-48000Hz-16bps.wv", 2 * 48000 / 10}, {"2ch-44100Hz-16bps.wav", 2 * 44100 / 10}, {"2ch-44100Hz-128cbr.mp3", 2 * 1152 * 4 + 94}, {"2ch-44100Hz-320cbr.mp3", 2 * 1152 * 4 + 94},