Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2015-11-10 05:16:17 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2015-11-27 17:01:22 +0300
commit644296e736ee219cd02f7b7d7b7b4c7c5a464217 (patch)
treeada4eac9974ab110ce0f8f8dba02c85e1042f59e
parenta353cc44a654257d321a307406cb10cd03148171 (diff)
avutil/softfloat: use abort() instead of av_assert0(0)n2.8.3
Fixes compilation of host tool aacps_fixed_tablegen. Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: James Almer <jamrial@gmail.com> (cherry picked from commit 9f4a41bf991916e105be9d78ed38612d3ffa4881) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r--libavutil/softfloat.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/softfloat.h b/libavutil/softfloat.h
index 5b285e3d9b..7488753d64 100644
--- a/libavutil/softfloat.h
+++ b/libavutil/softfloat.h
@@ -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;