Commit cd86eb26 authored by Ronald S. Bultje's avatar Ronald S. Bultje Committed by Michael Niedermayer

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

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 696aa74b
......@@ -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