test/test_pcm: add unit test for pcm_mix()

This commit is contained in:
Max Kellermann
2013-02-01 15:52:03 +01:00
parent ef99d6ce3d
commit a7a10d03c9
5 changed files with 119 additions and 0 deletions

View File

@@ -43,5 +43,10 @@ main(int argc, char **argv)
g_test_add_func("/pcm/format/16_to_32", test_pcm_format_16_to_32);
g_test_add_func("/pcm/format/float", test_pcm_format_float);
g_test_add_func("/pcm/mix/8", test_pcm_mix_8);
g_test_add_func("/pcm/mix/16", test_pcm_mix_16);
g_test_add_func("/pcm/mix/24", test_pcm_mix_24);
g_test_add_func("/pcm/mix/32", test_pcm_mix_32);
g_test_run();
}