changeset 2289:5443c3fc2448 libavcodec

Quantizer noise shaping crashes on SSE2 machines patch by (Milan Cutka <cutka at szm dot sk>)
author michael
date Fri, 08 Oct 2004 10:37:45 +0000
parents 3d4a1f8e6a27
children 89a5e4601343
files mpegvideo.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mpegvideo.c	Wed Oct 06 08:50:46 2004 +0000
+++ b/mpegvideo.c	Fri Oct 08 10:37:45 2004 +0000
@@ -5494,7 +5494,7 @@
                         DCTELEM *block, int16_t *weight, DCTELEM *orig,
                         int n, int qscale){
     int16_t rem[64];
-    DCTELEM d1[64];
+    DCTELEM d1[64] __align16;
     const int *qmat;
     const uint8_t *scantable= s->intra_scantable.scantable;
     const uint8_t *perm_scantable= s->intra_scantable.permutated;