diff options
author | Christophe Gisquet <christophe.gisquet@gmail.com> | 2014-07-25 19:07:27 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-07-27 17:42:56 +0200 |
commit | 36284ae981538b9582ff69a488efa26f5ba70b1e (patch) | |
tree | 01afa8afcf58216d5601b149e745a43b320bfd1e | |
parent | e3fac208246f5f94cfc4d3abdb1a4770272f96ee (diff) | |
download | ffmpeg-36284ae981538b9582ff69a488efa26f5ba70b1e.tar.gz |
x86: hevc_mc: replace one lea by add
Should have been in 036f11bdb565.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/x86/hevc_mc.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/hevc_mc.asm b/libavcodec/x86/hevc_mc.asm index a4b7a033de..545f556079 100644 --- a/libavcodec/x86/hevc_mc.asm +++ b/libavcodec/x86/hevc_mc.asm @@ -370,7 +370,7 @@ QPEL_TABLE 12, 4, w, sse4 %macro LOOP_END 4 lea %1q, [%1q+2*%2q] ; dst += dststride - lea %3q, [%3q+ %4q] ; src += srcstride + add %3q, %4q ; src += srcstride dec heightd ; cmp height jnz .loop ; height loop %endmacro |