Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2022-09-22 19:41:29 +0300
committerJames Almer <jamrial@gmail.com>2022-09-23 00:17:26 +0300
commitc8c4a162fc18c0fd99bada66d9ea3b48c64b2450 (patch)
treeb3647ca804d37cb10ae2eeac413ed53ae61c0402 /tests
parenta2d95928c3584e7224a06b73845755f45c13c7f7 (diff)
avcodec/lpc: use ptrdiff_t for length parameters
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/checkasm/lpc.c2
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);