avcodec/lpc: use ptrdiff_t for length parameters

Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer
2022-09-22 13:41:29 -03:00
parent a2d95928c3
commit c8c4a162fc
5 changed files with 9 additions and 9 deletions

View File

@@ -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);