[x264-devel] commit: Fix compilation on ARM w/ Apple ABI (Jason Garrett-Glaser )
git at videolan.org
git at videolan.org
Fri Jun 25 09:58:10 CEST 2010
x264 | branch: stable | Jason Garrett-Glaser <darkshikari at gmail.com> | Tue Jun 15 05:15:42 2010 -0700| [4fa7d539c1a09a0779194c7971495e966ff7de1e] | committer: Jason Garrett-Glaser
Fix compilation on ARM w/ Apple ABI
> http://git.videolan.org/gitweb.cgi/x264.git/?a=commit;h=4fa7d539c1a09a0779194c7971495e966ff7de1e
---
encoder/me.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/encoder/me.c b/encoder/me.c
index 2914eb3..291104a 100644
--- a/encoder/me.c
+++ b/encoder/me.c
@@ -245,7 +245,7 @@ void x264_me_search_ref( x264_t *h, x264_me_t *m, int16_t (*mvc)[2], int i_mvc,
pmv = pack16to32_mask( bmx, bmy );
if( i_mvc > 0 )
{
- ALIGNED_ARRAY_8( int16_t, mvc_fpel,[16][2] );
+ ALIGNED_ARRAY_8( int16_t, mvc_fpel,[16],[2] );
x264_predictor_roundclip( mvc_fpel, mvc, i_mvc, mv_x_min, mv_x_max, mv_y_min, mv_y_max );
bcost <<= 4;
for( int i = 1; i <= i_mvc; i++ )
More information about the x264-devel
mailing list