Browse Source

x86: hevc_mc: replace one lea by add

Should have been in 036f11bdb5.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.3.1
Christophe Gisquet Michael Niedermayer 11 years ago
parent
commit
65259b4d68
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/x86/hevc_mc.asm

+ 1
- 1
libavcodec/x86/hevc_mc.asm View File

@@ -342,7 +342,7 @@ QPEL_TABLE 10, 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


Loading…
Cancel
Save