You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
Altivec and SSE2 require 16-byte alignment, so make sure they get it
patch by Alexander Strange %astrange A ithinksw P com% Originally committed as revision 12629 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
committed by
Guillaume Poirier
parent
3794b92819
commit
55727a835b
@@ -169,7 +169,7 @@ void idct_mmx_init(void)
|
||||
}
|
||||
}
|
||||
|
||||
static DCTELEM block[64] __attribute__ ((aligned (8)));
|
||||
static DCTELEM block[64] __attribute__ ((aligned (16)));
|
||||
static DCTELEM block1[64] __attribute__ ((aligned (8)));
|
||||
static DCTELEM block_org[64] __attribute__ ((aligned (8)));
|
||||
|
||||
|
Reference in New Issue
Block a user