mirror of
https://github.com/alexkay/spek.git
synced 2025-04-15 16:20:33 +03:00
tests: ALAC demuxing/decoding
This commit is contained in:
parent
b18c0e773b
commit
4e683c3324
BIN
tests/samples/2ch-44100Hz-16bps.m4a
Normal file
BIN
tests/samples/2ch-44100Hz-16bps.m4a
Normal file
Binary file not shown.
@ -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}},
|
||||
|
@ -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},
|
||||
|
Loading…
x
Reference in New Issue
Block a user