diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2012-01-14 17:42:57 +0100 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2012-01-14 17:43:47 +0100 |
commit | 83b12c16af4f75ff21faaa6c4bff5c71edff3ba0 (patch) | |
tree | df33a61883a15b8bb96221fdfa193a9206ef7395 /libavcodec/x86 | |
parent | c4ba5198ea48f8f648d85a853ea46e29001c12c8 (diff) | |
download | ffmpeg-83b12c16af4f75ff21faaa6c4bff5c71edff3ba0.tar.gz |
Use correct register size, fixes compilation with NASM.
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
Diffstat (limited to 'libavcodec/x86')
-rw-r--r-- | libavcodec/x86/rv34dsp.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/rv34dsp.asm b/libavcodec/x86/rv34dsp.asm index 58f1af0495..a70ad07e87 100644 --- a/libavcodec/x86/rv34dsp.asm +++ b/libavcodec/x86/rv34dsp.asm @@ -39,7 +39,7 @@ SECTION .text cglobal rv34_idct_dequant4x4_%1_mmx2, 1, 2, 0 movsx r1, word [r0] IDCT_DC r1 - movd mm0, r1 + movd mm0, r1d pshufw mm0, mm0, 0 movq [r0+ 0], mm0 movq [r0+16], mm0 |