diff options
author | James Almer <jamrial@gmail.com> | 2022-09-22 13:41:29 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2022-09-22 18:17:26 -0300 |
commit | c8c4a162fc18c0fd99bada66d9ea3b48c64b2450 (patch) | |
tree | b3647ca804d37cb10ae2eeac413ed53ae61c0402 /tests/checkasm | |
parent | a2d95928c3584e7224a06b73845755f45c13c7f7 (diff) | |
download | ffmpeg-c8c4a162fc18c0fd99bada66d9ea3b48c64b2450.tar.gz |
avcodec/lpc: use ptrdiff_t for length parameters
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'tests/checkasm')
-rw-r--r-- | tests/checkasm/lpc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/checkasm/lpc.c b/tests/checkasm/lpc.c index e072599908..da5364def0 100644 --- a/tests/checkasm/lpc.c +++ b/tests/checkasm/lpc.c @@ -38,7 +38,7 @@ static void test_window(int len) LOCAL_ALIGNED(16, double, dst0, [5000]); LOCAL_ALIGNED(16, double, dst1, [5000]); - declare_func(void, int32_t *in, int len, double *out); + declare_func(void, const int32_t *in, ptrdiff_t len, double *out); randomize_int32(src, len); |