From 9d85cbd93ab39a284f56d1ac1d6e036014d34f63 Mon Sep 17 00:00:00 2001 From: Fabrice Bellard Date: Tue, 29 Oct 2002 22:38:21 +0000 Subject: [PATCH] added lrintf for non ISOC libcs (fixme: find a better test) Originally committed as revision 1106 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/dsputil.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index 2eb8651..f57d4aa 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -269,4 +269,13 @@ void ff_mdct_calc(MDCTContext *s, FFTSample *out, const FFTSample *input, FFTSample *tmp); void ff_mdct_end(MDCTContext *s); +#if defined(__FreeBSD__) || (__bsdi__) +/* XXX: add ISOC specific test to avoid specific BSD testing. */ +/* better than nothing implementation. */ +static inline long int lrintf(float x) +{ + return (int)(rint(x)); +} +#endif + #endif -- 2.7.4