diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-01-27 15:50:26 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-01-27 15:50:26 +0100 |
commit | edde562130feb901f29d7cef930c4b5b133661b9 (patch) | |
tree | a7f4aee183c90b083187dbe11dc395d941a4aa8a | |
parent | 5327a455529e6dc8f2dad1ef20fc89f2f32f136c (diff) | |
download | ffmpeg-edde562130feb901f29d7cef930c4b5b133661b9.tar.gz |
AVG_PIXELS8_XY2: fix typo, make code actually work
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-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 98decb649f..ea366a65c5 100644 --- a/libavcodec/x86/hpeldsp.asm +++ b/libavcodec/x86/hpeldsp.asm @@ -458,7 +458,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 |