diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2020-01-30 22:04:06 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2020-07-01 12:49:26 +0200 |
commit | 10e807c8607ff4841a5465cf91249937dee6ef19 (patch) | |
tree | 2b669b12cb630cc06c76d11b67551f3584d64fb0 | |
parent | 753d8e48548acc750264fc9e9d4e5e75e782f6f4 (diff) | |
download | ffmpeg-10e807c8607ff4841a5465cf91249937dee6ef19.tar.gz |
avcodec/x86/diracdsp: Fix high bits on Windows x86_64
Found-by: james
(cherry picked from commit 24af459d1e568fd134476f305f4fba23bf2c386a)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavcodec/x86/diracdsp.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/diracdsp.asm b/libavcodec/x86/diracdsp.asm index bd8775bd4d..00c64cd087 100644 --- a/libavcodec/x86/diracdsp.asm +++ b/libavcodec/x86/diracdsp.asm @@ -274,7 +274,7 @@ cglobal dequant_subband_32, 7, 7, 4, src, dst, stride, qf, qs, tot_v, tot_h movd m3, qsd SPLATD m2 SPLATD m3 - mov r4, tot_hq + mov r4d, tot_hd mov r3, dstq .loop_v: |