mirror of
https://github.com/alexkay/spek.git
synced 2025-04-20 10:27:38 +03:00
Test .ape and .wv samples
This commit is contained in:
parent
9e7c6156b9
commit
cc8615db9c
@ -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"
|
||||
|
BIN
tests/samples/1ch-96000Hz-24bps.ape
Normal file
BIN
tests/samples/1ch-96000Hz-24bps.ape
Normal file
Binary file not shown.
BIN
tests/samples/1ch-96000Hz-24bps.wv
Normal file
BIN
tests/samples/1ch-96000Hz-24bps.wv
Normal file
Binary file not shown.
BIN
tests/samples/2ch-48000Hz-16bps.ape
Normal file
BIN
tests/samples/2ch-48000Hz-16bps.ape
Normal file
Binary file not shown.
BIN
tests/samples/2ch-48000Hz-16bps.wv
Normal file
BIN
tests/samples/2ch-48000Hz-16bps.wv
Normal file
Binary file not shown.
@ -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}},
|
||||
|
@ -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},
|
||||
|
Loading…
x
Reference in New Issue
Block a user