[x264-devel] commit: Fix a use of ALIGNED_ARRAY_16 on ARM (David Conrad )

git at videolan.org git at videolan.org
Wed Jun 9 20:38:06 CEST 2010


x264 | branch: stable | David Conrad <lessen42 at gmail.com> | Thu Jun  3 19:02:24 2010 -0400| [2fafcb50c2266a58fe25030c10c5840cab8fbc8f] | committer: Jason Garrett-Glaser 

Fix a use of ALIGNED_ARRAY_16 on ARM

> http://git.videolan.org/gitweb.cgi/x264.git/?a=commit;h=2fafcb50c2266a58fe25030c10c5840cab8fbc8f
---

 tools/checkasm.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/checkasm.c b/tools/checkasm.c
index a09d088..e11b515 100644
--- a/tools/checkasm.c
+++ b/tools/checkasm.c
@@ -1156,8 +1156,8 @@ static int check_deblock( int cpu_ref, int cpu_new )
         {
             ALIGNED_ARRAY_16( uint8_t, nnz, [X264_SCAN8_SIZE] );
             ALIGNED_4( int8_t ref[2][X264_SCAN8_LUMA_SIZE] );
-            ALIGNED_ARRAY_16( int16_t, mv, [2][X264_SCAN8_LUMA_SIZE][2] );
-            ALIGNED_ARRAY_16( uint8_t, bs, [2][2][4][4] );
+            ALIGNED_ARRAY_16( int16_t, mv, [2],[X264_SCAN8_LUMA_SIZE][2] );
+            ALIGNED_ARRAY_16( uint8_t, bs, [2],[2][4][4] );
             for( int j = 0; j < X264_SCAN8_SIZE; j++ )
                 nnz[j] = ((rand()&7) == 7) * rand() & 0xf;
             for( int j = 0; j < 2; j++ )



More information about the x264-devel mailing list