summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorMilan Cutka <cutka@szm.sk>2004-10-08 10:37:45 +0000
committerMichael Niedermayer <michaelni@gmx.at>2004-10-08 10:37:45 +0000
commit125af022434fbb6a61ba8244eb19d3a43f9687e9 (patch)
treed8fa29f541d96053bffbbbd37f9a82355d998c01 /libavcodec
parentcaaeefc5917fb625375c46ad2c03c992c234569f (diff)
Quantizer noise shaping crashes on SSE2 machines patch by (Milan Cutka <cutka at szm dot sk>)
Originally committed as revision 3571 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/mpegvideo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c
index c89926ff3e..c27e8fe1a3 100644
--- a/libavcodec/mpegvideo.c
+++ b/libavcodec/mpegvideo.c
@@ -5494,7 +5494,7 @@ static int dct_quantize_refine(MpegEncContext *s, //FIXME breaks denoise?
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;