tests: ALAC demuxing/decoding

This commit is contained in:
Alexander Kojevnikov 2013-03-27 10:27:30 -07:00
parent b18c0e773b
commit 4e683c3324
3 changed files with 2 additions and 0 deletions

Binary file not shown.

View File

@ -61,6 +61,7 @@ void test_audio_info()
{"2ch-48000Hz-16bps.flac", {AudioError::OK, "FLAC", 0, 48000, 16, 2, 0.1}},
{"1ch-96000Hz-24bps.ape", {AudioError::OK, "Monkey", 0, 96000, 24, 1, 0.1}},
{"2ch-48000Hz-16bps.ape", {AudioError::OK, "Monkey", 0, 48000, 16, 2, 0.1}},
{"2ch-44100Hz-16bps.m4a", {AudioError::OK, "ALAC", 0, 44100, 16, 2, 0.1}},
{"1ch-96000Hz-24bps.wv", {AudioError::OK, "WavPack", 0, 96000, 24, 1, 0.1}},
{"2ch-48000Hz-16bps.wv", {AudioError::OK, "WavPack", 0, 48000, 16, 2, 0.1}},
{"2ch-44100Hz-16bps.wav", {AudioError::OK, "PCM", 0, 44100, 16, 2, 0.1}},

View File

@ -51,6 +51,7 @@ void test_audio_read()
{"2ch-48000Hz-16bps.flac", 2 * 48000 / 10},
{"1ch-96000Hz-24bps.ape", 1 * 96000 / 10},
{"2ch-48000Hz-16bps.ape", 2 * 48000 / 10},
{"2ch-44100Hz-16bps.m4a", 2 * 44100 / 10},
{"1ch-96000Hz-24bps.wv", 1 * 96000 / 10},
{"2ch-48000Hz-16bps.wv", 2 * 48000 / 10},
{"2ch-44100Hz-16bps.wav", 2 * 44100 / 10},