From 0766291a669281f556d7a0b32e8a920650dd93db Mon Sep 17 00:00:00 2001 From: Reimar Döffinger Date: Sun, 24 May 2009 08:36:52 +0000 Subject: Move "block" variable in rtjpeg decoder to context to ensure sufficient alignment for idct_put on architectures/compilers that have problems aligning on the stack. Originally committed as revision 18924 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/rtjpeg.h | 1 + 1 file changed, 1 insertion(+) (limited to 'libavcodec/rtjpeg.h') diff --git a/libavcodec/rtjpeg.h b/libavcodec/rtjpeg.h index 02f2058b2c..d2745f824b 100644 --- a/libavcodec/rtjpeg.h +++ b/libavcodec/rtjpeg.h @@ -31,6 +31,7 @@ typedef struct { uint8_t scan[64]; uint32_t lquant[64]; uint32_t cquant[64]; + DECLARE_ALIGNED_16(DCTELEM, block[64]); } RTJpegContext; void rtjpeg_decode_init(RTJpegContext *c, DSPContext *dsp, -- cgit v1.2.3