diff options
author | Christophe GISQUET <christophe.gisquet@gmail.com> | 2012-01-03 20:38:29 +0100 |
---|---|---|
committer | Janne Grunau <janne-libav@jannau.net> | 2012-01-16 19:26:41 +0100 |
commit | 9ba9c3402499d90e54f8aa111b62c278206d11af (patch) | |
tree | ac059d08bf032cfbf7454c02e72bd5175a2e5b70 /libavcodec/x86/rv34dsp.asm | |
parent | ffa0923eee7707acf07a0847b6bac89b86e227dc (diff) | |
download | ffmpeg-9ba9c3402499d90e54f8aa111b62c278206d11af.tar.gz |
rv34: 1-pass inter MB reconstruction
Implement 1-pass inverse transform and reconstruction for inter blocks.
Diffstat (limited to 'libavcodec/x86/rv34dsp.asm')
-rw-r--r-- | libavcodec/x86/rv34dsp.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/x86/rv34dsp.asm b/libavcodec/x86/rv34dsp.asm index c8eeebbfeb..2d2f6e19e6 100644 --- a/libavcodec/x86/rv34dsp.asm +++ b/libavcodec/x86/rv34dsp.asm @@ -42,9 +42,9 @@ cglobal rv34_idct_%1_mmx2, 1, 2, 0 movd m0, r1 pshufw m0, m0, 0 movq [r0+ 0], m0 + movq [r0+ 8], m0 movq [r0+16], m0 - movq [r0+32], m0 - movq [r0+48], m0 + movq [r0+24], m0 REP_RET %endmacro |