mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-24 19:59:46 +00:00
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
This commit is contained in:
parent
caaeefc591
commit
125af02243
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user