diff options
author | James Almer | 2017-06-30 22:33:04 -0300 |
---|---|---|
committer | James Almer | 2017-06-30 22:49:54 -0300 |
commit | 0eb783eb0613af69001cf284407b2f48f0f9afb5 (patch) | |
tree | 7a319bc5c368337619f08009e8f5501ab379801b /tests | |
parent | fb7b477a91feea1a5d1faf62e516878e388c3057 (diff) |
checkasm: randomize the full input buffer in test_hybrid_analysis
Missed in the last commit.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/checkasm/aacpsdsp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/checkasm/aacpsdsp.c b/tests/checkasm/aacpsdsp.c index f96e73898d..2b051f65da 100644 --- a/tests/checkasm/aacpsdsp.c +++ b/tests/checkasm/aacpsdsp.c @@ -83,7 +83,7 @@ static void test_hybrid_analysis(void) const INTFLOAT (*filter)[8][2], ptrdiff_t stride, int n); - randomize((INTFLOAT *)in, 12 * 2); + randomize((INTFLOAT *)in, 13 * 2); randomize((INTFLOAT *)filter, N * 8 * 2); randomize((INTFLOAT *)dst0, BUF_SIZE * 2); |