3 /********************************************************************
5 * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
6 * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
7 * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
8 * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
10 * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001 *
11 * by the XIPHOPHORUS Company http://www.xiph.org/ *
13 ********************************************************************
15 function: #ifdef jail to whip a few platforms into the UNIX ideal.
16 last mod: $Id: os.h,v 1.30 2002/06/28 22:19:37 xiphmont Exp $
18 ********************************************************************/
21 #include <ogg/os_types.h>
23 #ifndef _V_IFDEFJAIL_H_
24 # define _V_IFDEFJAIL_H_
27 # define STIN static __inline__
29 # define STIN static __inline
35 # define M_PI (3.1415926536f)
40 # define rint(x) (floor((x)+0.5f))
41 # define NO_FLOAT_MATH_LIB
42 # define FAST_HYPOT(a, b) sqrt((a)*(a) + (b)*(b))
46 # define FAST_HYPOT hypot
60 # define min(x,y) ((x)>(y)?(y):(x))
64 # define max(x,y) ((x)<(y)?(y):(x))
67 #if defined(__i386__) && defined(__GNUC__) && !defined(__BEOS__)
68 # define VORBIS_FPU_CONTROL
69 /* both GCC and MSVC are kinda stupid about rounding/casting to int.
70 Because of encapsulation constraints (GCC can't see inside the asm
71 block and so we end up doing stupid things like a store/load that
72 is collectively a noop), we do it this way */
74 /* we must set up the fpu before this works!! */
76 typedef ogg_int16_t vorbis_fpu_control;
78 static inline void vorbis_fpu_setround(vorbis_fpu_control *fpu){
81 __asm__ __volatile__("fnstcw %0\n\t"
85 "fldcw %1\n\t":"=m"(ret):"m"(temp): "dx");
89 static inline void vorbis_fpu_restore(vorbis_fpu_control fpu){
90 __asm__ __volatile__("fldcw %0":: "m"(fpu));
93 /* assumes the FPU is in round mode! */
94 static inline int vorbis_ftoi(double f){ /* yes, double! Otherwise,
95 we get extra fst/fld to
98 __asm__("fistl %0": "=m"(i) : "t"(f));
104 #if defined(_WIN32) && !defined(__GNUC__)
105 # define VORBIS_FPU_CONTROL
107 typedef ogg_int16_t vorbis_fpu_control;
109 static __inline int vorbis_ftoi(double f){
118 static __inline void vorbis_fpu_setround(vorbis_fpu_control *fpu){
121 static __inline void vorbis_fpu_restore(vorbis_fpu_control fpu){
127 #ifndef VORBIS_FPU_CONTROL
129 typedef int vorbis_fpu_control;
131 static int vorbis_ftoi(double f){
135 /* We don't have special code for this compiler/arch, so do it the slow way */
136 # define vorbis_fpu_setround(vorbis_fpu_control) {}
137 # define vorbis_fpu_restore(vorbis_fpu_control) {}