You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
601 B

  1. --- a/libavutil/libm.h
  2. +++ b/libavutil/libm.h
  3. @@ -82,6 +82,7 @@ static av_always_inline float cbrtf(floa
  4. #define exp2f(x) ((float)exp2(x))
  5. #endif /* HAVE_EXP2F */
  6. +/* ---------- BROKEN: Defined in math.h but not present in uClibc 0.9.33.2
  7. #if !HAVE_FMINF
  8. #undef fminf
  9. static av_always_inline av_const float fminf(float x, float y)
  10. @@ -91,6 +92,7 @@ static av_always_inline av_const float f
  11. return x > y ? y : (x == x ? x : y);
  12. }
  13. #endif
  14. +------------------------------------------------------------------------- */
  15. #if !HAVE_ISINF
  16. static av_always_inline av_const int isinf(float x)