summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorClément Bœsch <cboesch@gopro.com>2017-06-22 11:24:13 +0200
committerClément Bœsch <u@pkh.me>2017-06-28 12:22:39 +0200
commitb12a36170b1314a991cff0d618a96259d4b172f4 (patch)
tree4e33d5cb39b7cee91e5281e9c80444d32607311b /tests
parentff0ecef624e933bc73e28c41823f4de04c274edd (diff)
lavc/aacpsdsp: use ptrdiff_t for stride in hybrid_analysis
Diffstat (limited to 'tests')
-rw-r--r--tests/checkasm/aacpsdsp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/checkasm/aacpsdsp.c b/tests/checkasm/aacpsdsp.c
index a0dfa162de..daaf5a5df4 100644
--- a/tests/checkasm/aacpsdsp.c
+++ b/tests/checkasm/aacpsdsp.c
@@ -81,7 +81,7 @@ static void test_hybrid_analysis(void)
declare_func(void, INTFLOAT (*out)[2], INTFLOAT (*in)[2],
const INTFLOAT (*filter)[8][2],
- int stride, int n);
+ ptrdiff_t stride, int n);
randomize((INTFLOAT *)in, 12 * 2);
randomize((INTFLOAT *)filter, N * 8 * 2);