Browse Source

Don't access upper 32 bits of a 32-bit int on 64-bit systems.

Originally committed as revision 25140 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/n0.8
Ronald S. Bultje 14 years ago
parent
commit
ada65af9d1
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/x86/dsputilenc_yasm.asm

+ 1
- 1
libavcodec/x86/dsputilenc_yasm.asm View File

@@ -284,7 +284,7 @@ HADAMARD8_DIFF_SSE2 ssse3, 9
INIT_XMM
; sse16_sse2(void *v, uint8_t * pix1, uint8_t * pix2, int line_size, int h)
cglobal sse16_sse2, 5, 5, 8
shr r4, 1
shr r4d, 1
pxor m0, m0 ; mm0 = 0
pxor m7, m7 ; mm7 holds the sum



Loading…
Cancel
Save