# HG changeset patch # User michael # Date 1097231865 0 # Node ID 5443c3fc24487525870b42ebe2251eabf94c02fe # Parent 3d4a1f8e6a27cd3442012c8c98a2add0b8530c33 Quantizer noise shaping crashes on SSE2 machines patch by (Milan Cutka ) diff -r 3d4a1f8e6a27 -r 5443c3fc2448 mpegvideo.c --- 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;