Speex benchmark

This commit is contained in:
Serial 2022-01-31 18:22:09 -05:00
parent c1725de93d
commit 8449dbd7b9
No known key found for this signature in database
GPG key ID: DA95198DC17C4568

View file

@ -23,9 +23,10 @@ fn path_infer_read(c: &mut Criterion) {
("FLAC", "tests/files/assets/full_test.flac"),
("MP4", "tests/files/assets/m4a_codec_aac.m4a"),
("MP3", "tests/files/assets/full_test.mp3"),
("VORBIS", "tests/files/assets/full_test.ogg"),
("OPUS", "tests/files/assets/full_test.opus"),
("RIFF", "tests/files/assets/wav_format_pcm.wav")
("RIFF", "tests/files/assets/wav_format_pcm.wav"),
("SPEEX", "tests/files/assets/full_test.spx"),
("VORBIS", "tests/files/assets/full_test.ogg")
]
);
}
@ -60,9 +61,10 @@ fn content_infer_read(c: &mut Criterion) {
(FLAC, "../tests/files/assets/full_test.flac"),
(MP4, "../tests/files/assets/m4a_codec_aac.m4a"),
(MP3, "../tests/files/assets/full_test.mp3"),
(VORBIS, "../tests/files/assets/full_test.ogg"),
(OPUS, "../tests/files/assets/full_test.opus"),
(RIFF, "../tests/files/assets/wav_format_pcm.wav")
(RIFF, "../tests/files/assets/wav_format_pcm.wav"),
(SPEEX, "../tests/files/assets/full_test.spx"),
(VORBIS, "../tests/files/assets/full_test.ogg")
]
);
}