Test .ape and .wv samples

This commit is contained in:
Alexander Kojevnikov 2013-03-07 10:16:07 -08:00
parent 9e7c6156b9
commit cc8615db9c
7 changed files with 9 additions and 1 deletions

View File

@ -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 <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -54,6 +54,10 @@ void test_audio_info()
std::map<std::string, FileInfo> 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}},

View File

@ -49,6 +49,10 @@ void test_audio_read()
std::map<std::string, int> 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},