Browse Source

x86: videodsp: Fix a bug in a %if statement where we used '%%' instead of '&&'.

Signed-off-by: Janne Grunau <janne-libav@jannau.net>
tags/n2.2-rc1
Ronald S. Bultje Janne Grunau 11 years ago
parent
commit
9ee9c679a7
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/x86/videodsp.asm

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

@@ -381,7 +381,7 @@ VERTICAL_EXTEND 16, 22
%endif

%if %1-%%off >= 4
%if %1 > 8 %% %1-%%off > 4
%if %1 > 8 && %1-%%off > 4
movq [%2+%1-8], m0
%assign %%off %1
%elif %1 >= 8 && %1-%%off >= 4


Loading…
Cancel
Save