comparison internal.h @ 410:033099f22fc2 libavutil

Remove outdated comment.
author diego
date Thu, 27 Dec 2007 01:42:46 +0000
parents c03847b47260
children d25e027364d6
comparison
equal deleted inserted replaced
409:c03847b47260 410:033099f22fc2
269 goto fail;\ 269 goto fail;\
270 }\ 270 }\
271 } 271 }
272 272
273 #ifndef HAVE_LRINTF 273 #ifndef HAVE_LRINTF
274 /* XXX: add ISOC specific test to avoid specific BSD testing. */
275 /* better than nothing implementation. */
276 /* btw, rintf() is existing on fbsd too -- alex */
277 static av_always_inline long int lrintf(float x) 274 static av_always_inline long int lrintf(float x)
278 { 275 {
279 return (int)(rint(x)); 276 return (int)(rint(x));
280 } 277 }
281 #endif /* HAVE_LRINTF */ 278 #endif /* HAVE_LRINTF */