From a47e9d1a4b5bd6b999eaec33624d7c96a29f24e6 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 9 Oct 2011 12:48:17 +0200 Subject: pcm_pack: pass an "end" pointer instead of a sample count --- test/test_pcm_pack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/test_pcm_pack.c b/test/test_pcm_pack.c index 81bc32575..921bb7932 100644 --- a/test/test_pcm_pack.c +++ b/test/test_pcm_pack.c @@ -44,7 +44,7 @@ test_pcm_pack_24(void) uint8_t dest[N * 3]; - pcm_pack_24(dest, src, N, false); + pcm_pack_24(dest, src, src + N, false); for (unsigned i = 0; i < N; ++i) { int32_t d; @@ -71,7 +71,7 @@ test_pcm_unpack_24(void) int32_t dest[N]; - pcm_unpack_24(dest, src, N, false); + pcm_unpack_24(dest, src, src + G_N_ELEMENTS(src), false); for (unsigned i = 0; i < N; ++i) { int32_t s; -- cgit v1.2.3