mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 19:30:05 +00:00
avutil/softfloat: use abort() instead of av_assert0(0)
Fixes compilation of host tool aacps_fixed_tablegen. Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
6e3244fb09
commit
9f4a41bf99
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user