diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-01-27 15:50:26 +0100 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2013-01-28 12:49:37 +0200 |
commit | 834e9fb0563956630e4d9bf61c9242ad134334da (patch) | |
tree | 7dd15f45090eb4d66b35ae1d61ac774e54a438af /libavcodec | |
parent | 4839fbe2d1b922b387e1a58261eeba2efe164a4e (diff) | |
download | ffmpeg-834e9fb0563956630e4d9bf61c9242ad134334da.tar.gz |
x86: hpeldsp: Fix a typo, use the right register
This makes the code actually work.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/x86/hpeldsp.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/hpeldsp.asm b/libavcodec/x86/hpeldsp.asm index 85594c1395..ee5d56293e 100644 --- a/libavcodec/x86/hpeldsp.asm +++ b/libavcodec/x86/hpeldsp.asm @@ -452,7 +452,7 @@ cglobal avg_pixels8_xy2, 4,5 pavgb m2, [r0] pavgb m1, [r0+r2] mova [r0], m2 - mova [r0+r2], m2 + mova [r0+r2], m1 add r0, r4 sub r3d, 4 jne .loop |