diff options
author | Daniel Kang <daniel.d.kang@gmail.com> | 2013-02-11 13:45:10 -0500 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-02-11 20:17:15 +0100 |
commit | b3f2a3fe3fe4e2a752fa2ef26d1e39d51f30cc52 (patch) | |
tree | e9745b777ee18e46688173a9ccc7887d5418eb70 /libavcodec | |
parent | 4c51fe48ba6dde059360b7451db7f6bbf2f11db3 (diff) | |
download | ffmpeg-b3f2a3fe3fe4e2a752fa2ef26d1e39d51f30cc52.tar.gz |
x86: mpeg4qpel: Make movsxifnidn do the right thing
Fixes an instruction that does nothing by changing the
source to dword.
Signed-off-by: Diego Biurrun <diego@biurrun.de>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/x86/mpeg4qpel.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/mpeg4qpel.asm b/libavcodec/x86/mpeg4qpel.asm index 6b5d20326d..df20ea9dc6 100644 --- a/libavcodec/x86/mpeg4qpel.asm +++ b/libavcodec/x86/mpeg4qpel.asm @@ -100,7 +100,7 @@ PUT_NO_RND_PIXELS8_L2 ; put_no_rnd_pixels16_l2(uint8_t *dst, uint8_t *src1, uint8_t *src2, int dstStride, int src1Stride, int h) %macro PUT_NO_RND_PIXELS16_l2 0 cglobal put_no_rnd_pixels16_l2, 6,6 - movsxdifnidn r3, r3 + movsxdifnidn r3, r3d movsxdifnidn r4, r4d pcmpeqb m6, m6 test r5d, 1 |