Browse Source

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
tags/v0.5
Milan Cutka Michael Niedermayer 21 years ago
parent
commit
125af02243
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/mpegvideo.c

+ 1
- 1
libavcodec/mpegvideo.c View File

@@ -5494,7 +5494,7 @@ static int dct_quantize_refine(MpegEncContext *s, //FIXME breaks denoise?
DCTELEM *block, int16_t *weight, DCTELEM *orig, DCTELEM *block, int16_t *weight, DCTELEM *orig,
int n, int qscale){ int n, int qscale){
int16_t rem[64]; int16_t rem[64];
DCTELEM d1[64];
DCTELEM d1[64] __align16;
const int *qmat; const int *qmat;
const uint8_t *scantable= s->intra_scantable.scantable; const uint8_t *scantable= s->intra_scantable.scantable;
const uint8_t *perm_scantable= s->intra_scantable.permutated; const uint8_t *perm_scantable= s->intra_scantable.permutated;


Loading…
Cancel
Save