Commit 9ee9c679 authored by Ronald S. Bultje's avatar Ronald S. Bultje Committed by Janne Grunau

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

Signed-off-by: 's avatarJanne Grunau <janne-libav@jannau.net>
parent 51daafb0
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment