[FFmpeg-cvslog] r12767 - in trunk/libavcodec: asv1.c dv.c mdec.c mjpegdec.h wmv2.h

superdump subversion
Tue Apr 8 03:09:33 CEST 2008


Author: superdump
Date: Tue Apr  8 03:09:33 2008
New Revision: 12767

Log:
Increase alignment for DCT block arrays from 8 to 16

Patch by Alexander Strange ( astrange ithinksw com )


Modified:
   trunk/libavcodec/asv1.c
   trunk/libavcodec/dv.c
   trunk/libavcodec/mdec.c
   trunk/libavcodec/mjpegdec.h
   trunk/libavcodec/wmv2.h

Modified: trunk/libavcodec/asv1.c
==============================================================================
--- trunk/libavcodec/asv1.c	(original)
+++ trunk/libavcodec/asv1.c	Tue Apr  8 03:09:33 2008
@@ -47,7 +47,7 @@ typedef struct ASV1Context{
     int mb_height;
     int mb_width2;
     int mb_height2;
-    DECLARE_ALIGNED_8(DCTELEM, block[6][64]);
+    DECLARE_ALIGNED_16(DCTELEM, block[6][64]);
     DECLARE_ALIGNED_8(uint16_t, intra_matrix[64]);
     DECLARE_ALIGNED_8(int, q_intra_matrix[64]);
     uint8_t *bitstream_buffer;

Modified: trunk/libavcodec/dv.c
==============================================================================
--- trunk/libavcodec/dv.c	(original)
+++ trunk/libavcodec/dv.c	Tue Apr  8 03:09:33 2008
@@ -376,7 +376,7 @@ static inline void dv_decode_video_segme
     PutBitContext pb, vs_pb;
     GetBitContext gb;
     BlockInfo mb_data[5 * 6], *mb, *mb1;
-    DECLARE_ALIGNED_8(DCTELEM, sblock[5*6][64]);
+    DECLARE_ALIGNED_16(DCTELEM, sblock[5*6][64]);
     DECLARE_ALIGNED_8(uint8_t, mb_bit_buffer[80 + 4]); /* allow some slack */
     DECLARE_ALIGNED_8(uint8_t, vs_bit_buffer[5 * 80 + 4]); /* allow some slack */
     const int log2_blocksize= 3-s->avctx->lowres;

Modified: trunk/libavcodec/mdec.c
==============================================================================
--- trunk/libavcodec/mdec.c	(original)
+++ trunk/libavcodec/mdec.c	Tue Apr  8 03:09:33 2008
@@ -47,7 +47,7 @@ typedef struct MDECContext{
     int mb_width;
     int mb_height;
     int mb_x, mb_y;
-    DECLARE_ALIGNED_8(DCTELEM, block[6][64]);
+    DECLARE_ALIGNED_16(DCTELEM, block[6][64]);
     DECLARE_ALIGNED_8(uint16_t, intra_matrix[64]);
     DECLARE_ALIGNED_8(int, q_intra_matrix[64]);
     uint8_t *bitstream_buffer;

Modified: trunk/libavcodec/mjpegdec.h
==============================================================================
--- trunk/libavcodec/mjpegdec.h	(original)
+++ trunk/libavcodec/mjpegdec.h	Tue Apr  8 03:09:33 2008
@@ -82,7 +82,7 @@ typedef struct MJpegDecodeContext {
     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;
 

Modified: trunk/libavcodec/wmv2.h
==============================================================================
--- trunk/libavcodec/wmv2.h	(original)
+++ trunk/libavcodec/wmv2.h	Tue Apr  8 03:09:33 2008
@@ -50,7 +50,7 @@ typedef struct Wmv2Context{
     int hshift;
 
     ScanTable abt_scantable[2];
-    DECLARE_ALIGNED_8(DCTELEM, abt_block2[6][64]);
+    DECLARE_ALIGNED_16(DCTELEM, abt_block2[6][64]);
 }Wmv2Context;
 
 void ff_wmv2_common_init(Wmv2Context * w);




More information about the ffmpeg-cvslog mailing list