comparison dsputil.h @ 2024:f65d87bfdd5a libavcodec

some of the warning fixes by (Michael Roitzsch <mroi at users dot sourceforge dot net>)
author michael
date Tue, 18 May 2004 17:09:46 +0000
parents ef919e9ef73e
children b6f2add2511e
comparison
equal deleted inserted replaced
2023:50e92cec1b84 2024:f65d87bfdd5a
562 return (int)(x); 562 return (int)(x);
563 #else 563 #else
564 return (int)(rint(x)); 564 return (int)(rint(x));
565 #endif 565 #endif
566 } 566 }
567 #else
568 #ifndef _ISOC9X_SOURCE
569 #define _ISOC9X_SOURCE
567 #endif 570 #endif
568 571 #include <math.h>
569 #endif 572 #endif
573
574 #endif