diff mjpegdec.h @ 6571:ad0c77d2b6ee libavcodec

Increase alignment for DCT block arrays from 8 to 16 Patch by Alexander Strange ( astrange ithinksw com )
author superdump
date Tue, 08 Apr 2008 01:09:33 +0000
parents 7fa807dd7958
children c4a4495715dd
line wrap: on
line diff
--- a/mjpegdec.h	Tue Apr 08 00:57:12 2008 +0000
+++ b/mjpegdec.h	Tue Apr 08 01:09:33 2008 +0000
@@ -82,7 +82,7 @@
     AVFrame picture; /* picture structure */
     int linesize[MAX_COMPONENTS];                   ///< linesize << interlaced
     int8_t *qscale_table;
-    DECLARE_ALIGNED_8(DCTELEM, block[64]);
+    DECLARE_ALIGNED_16(DCTELEM, block[64]);
     ScanTable scantable;
     DSPContext dsp;