Commit 644296e7 authored by James Almer's avatar James Almer Committed by Michael Niedermayer
Browse files

avutil/softfloat: use abort() instead of av_assert0(0)


Fixes compilation of host tool aacps_fixed_tablegen.
Reviewed-by: default avatarMichael Niedermayer <michael@niedermayer.cc>
Signed-off-by: default avatarJames Almer <jamrial@gmail.com>
(cherry picked from commit 9f4a41bf

)
Signed-off-by: default avatarMichael Niedermayer <michael@niedermayer.cc>
Showing with 1 addition and 1 deletion
+1 -1
......@@ -180,7 +180,7 @@ static av_always_inline SoftFloat av_sqrt_sf(SoftFloat val)
if (val.mant == 0)
val.exp = MIN_EXP;
else if (val.mant < 0)
av_assert0(0);
abort();
else
{
tabIndex = (val.mant - 0x20000000) >> 20;
......
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