aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/test_pcm_pack.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_pcm_pack.c b/test/test_pcm_pack.c
index 85cbe5bf..de5d8b6e 100644
--- a/test/test_pcm_pack.c
+++ b/test/test_pcm_pack.c
@@ -45,7 +45,7 @@ test_pcm_pack_24(void)
uint8_t dest[N * 3];
- pcm_pack_24(dest, src, src + N, false);
+ pcm_pack_24(dest, src, src + N);
for (unsigned i = 0; i < N; ++i) {
int32_t d;
@@ -72,7 +72,7 @@ test_pcm_unpack_24(void)
int32_t dest[N];
- pcm_unpack_24(dest, src, src + G_N_ELEMENTS(src), false);
+ pcm_unpack_24(dest, src, src + G_N_ELEMENTS(src));
for (unsigned i = 0; i < N; ++i) {
int32_t s;