search for: vorbis_fpu_control

Displaying 4 results from an estimated 4 matches for "vorbis_fpu_control".

2001 Jan 29
1
Mac OS X/Darwin patch for libvorbis
...*/ +#ifndef FAST_HYPOT # define FAST_HYPOT hypot #endif @@ -72,11 +82,9 @@ # define max(x,y) ((x)<(y)?(y):(x)) #endif - -#if defined(__i386__) && defined(__GNUC__) -#ifndef __BEOS__ - +#if defined(__i386__) && defined(__GNUC__) && !defined(__BEOS__) +#define VORBIS_FPU_CONTROL /* both GCC and MSVC are kinda stupid about rounding/casting to int. Because of encapsulation constraints (GCC can't see inside the asm block and so we end up doing stupid things like a store/load that @@ -109,27 +117,13 @@ static inline int vorbis_ftoi(double f){ __asm__("fist...
2002 Dec 27
1
Vorbisgain in ogg123
I'm considering patching my copy of ogg123 to support vorbisgain tags. Is there any interest in folding this sort of patch into the main line ogg123? Has anyone done this already (or to another command line ogg player)? John --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to
2002 Jan 22
2
Peak value
Hi, While testing ReplayGain (so it could be related to a bug), I noticed the following gain comments for a file: RG_PEAK=1.71580 RG_RADIO=-7.91 dB RG_AUDIOPHILE=-6.72 dB I've never seen such a large peak. Not that I've looked much, nor have I analyzed the file further. I just thought I should mention it. :) The file is the track Board Burner by Mixmaster Mike, available at:
2000 Dec 15
2
Ports
...-r1.17 os.h --- lib/os.h 2000/12/13 18:12:34 1.17 +++ lib/os.h 2000/12/15 09:49:16 @@ -29,7 +29,7 @@ #endif #ifndef __GNUC__ -#ifdef _WIN32 +#if defined(_WIN32) || defined(__WATCOMC__) # include <malloc.h> # define rint(x) (floor((x)+0.5)) #endif @@ -116,7 +116,7 @@ typedef int vorbis_fpu_control; -#ifdef _WIN32 +#if defined(_WIN32) || defined(__WATCOMC__) static __inline int vorbis_ftoi(double f){ int i; ===== CUT HERE ==================================================== And this for vorbis-tools: Index: oggenc/audio.c =======================================================...