[FFmpeg-cvslog] checkasm: fix size of input buffer in test_hybrid_analysis
James Almer
git at videolan.org
Sat Jul 1 02:49:53 EEST 2017
ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Fri Jun 30 20:37:06 2017 -0300| [fb7b477a91feea1a5d1faf62e516878e388c3057] | committer: James Almer
checkasm: fix size of input buffer in test_hybrid_analysis
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=fb7b477a91feea1a5d1faf62e516878e388c3057
---
tests/checkasm/aacpsdsp.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/checkasm/aacpsdsp.c b/tests/checkasm/aacpsdsp.c
index daaf5a5df4..f96e73898d 100644
--- a/tests/checkasm/aacpsdsp.c
+++ b/tests/checkasm/aacpsdsp.c
@@ -76,7 +76,7 @@ static void test_hybrid_analysis(void)
{
LOCAL_ALIGNED_16(INTFLOAT, dst0, [BUF_SIZE], [2]);
LOCAL_ALIGNED_16(INTFLOAT, dst1, [BUF_SIZE], [2]);
- LOCAL_ALIGNED_16(INTFLOAT, in, [12], [2]);
+ LOCAL_ALIGNED_16(INTFLOAT, in, [13], [2]);
LOCAL_ALIGNED_16(INTFLOAT, filter, [N], [8][2]);
declare_func(void, INTFLOAT (*out)[2], INTFLOAT (*in)[2],
More information about the ffmpeg-cvslog
mailing list