Add truncf() replacement function.
authorMichael Kostylev <michael.kostylev@gmail.com>
Sun, 11 Jan 2009 22:10:04 +0000 (22:10 +0000)
committerRamiro Polla <ramiro.polla@gmail.com>
Sun, 11 Jan 2009 22:10:04 +0000 (22:10 +0000)
Patch by Michael Kostylev <mik at it-1 dot ru>

Originally committed as revision 16555 to svn://svn.ffmpeg.org/ffmpeg/trunk

configure
libavutil/internal.h

index 37af6c4bca0e4882b946ab8ecb69d54589b782de..f07e92283997dc30a1205459da01fb034849980a 100755 (executable)
--- a/configure
+++ b/configure
@@ -886,6 +886,7 @@ HAVE_LIST="
     sys_videoio_h
     termios_h
     threads
+    truncf
     winsock2_h
     yasm
 "
@@ -1875,7 +1876,7 @@ done
 check_lib math.h sin -lm
 
 # test for C99 functions in math.h
-for func in llrint lrint lrintf round roundf; do
+for func in llrint lrint lrintf round roundf truncf; do
     check_exec <<EOF && enable $func || disable $func
 #include <math.h>
 int main(void) { return ($func(3.999f) > 0)?0:1; }
index bbf44071392dc6c2864a24bff3ce13fadeb5ed9d..957566026d8c1433edfeb7d33e5c61d90fd40f44 100644 (file)
@@ -294,4 +294,11 @@ static av_always_inline av_const float roundf(float x)
 }
 #endif /* HAVE_ROUNDF */
 
+#ifndef HAVE_TRUNCF
+static av_always_inline av_const float truncf(float x)
+{
+    return (x > 0) ? floor(x) : ceil(x);
+}
+#endif /* HAVE_TRUNCF */
+
 #endif /* AVUTIL_INTERNAL_H */