search for: fmod

Displaying 20 results from an estimated 118 matches for "fmod".

Did you mean: fmad
2011 Jun 15
2
[LLVMdev] LLVM interpreter does not support fmod
It seems llvm interpreter only supports a limited number of external functions. fmod, in particular is not supported. any reason why it is not supported ? "lli -force-interpreter test.bc LLVM ERROR: Tried to execute an unknown external function: double (double, double)* fmod " -- Kind Regards Xin Tong -------------- next part -------------- An HTML attachment was scru...
2011 Jun 15
0
[LLVMdev] LLVM interpreter does not support fmod
Hi, > It seems llvm interpreter only supports a limited number of external > functions. fmod, in particular is not supported. any reason why it is not > supported ? > > "lli -force-interpreter test.bc > LLVM ERROR: Tried to execute an unknown external function: double (double, > double)* fmod > " You can check out the comments in lib/ExecutionEngine/Interpre...
2009 Nov 06
0
FMOD released with CELT support.
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> </head> <body bgcolor="#ffffff" text="#000000"> Hi Guys,<br> <br> Just thought I might let you guys know that the latest development version of the FMOD API (4.29.01) has been released with support for CELT as a bank format. <br> <br> Windows only at the moment, console support is coming soon.<br> <br> Thanks for all your help,<br> <br> <div class="moz-signature">-- <br> <span style=&quo...
2012 Dec 21
1
Problem compiling Samba4, Python installed in nonstandard location
...nalmodule.o): In function `timeval_from_double':/usr/src/Python-2.7.3/./Modules/signalmodule.c:112: undefined reference to `floor'/usr/src/Python-2.7.3/./Modules/signalmodule.c:112: undefined reference to `floor'/usr/src/Python-2.7.3/./Modules/signalmodule.c:113: undefined reference to `fmod'/usr/src/Python-2.7.3/./Modules/signalmodule.c:113: undefined reference to `fmod'/opt/python2/lib/libpython2.7.a(posixmodule.o): In function `posix_openpty':/usr/src/Python-2.7.3/./Modules/posixmodule.c:3756: undefined reference to `openpty'/opt/python2/lib/libpython2.7.a(posixmodul...
2001 Feb 27
1
using fmod in C code to be loaded into R
...oad this into R using dyn.load("mycode.so") I got the error > dyn.load("mycode.so") Error in dyn.load(x, as.logical(local), as.logical(now)) : unable to load shared library "/home/faheem/research/mycode.so": /home/faheem/research/mycode.so: undefined symbol: Rf_fmod "Writing R extension" says this function is available as an entry point. I have only a vague undertstanding of entry points, but I understand this to mean that if I am going to load the compiled code into R to be called from R, then I can stick such a function in my code, and provided I...
2011 Jun 15
1
[LLVMdev] LLVM interpreter does not support fmod
On Jun 14, 2011, at 7:57 PM, 陳韋任 wrote: > Hi, > >> It seems llvm interpreter only supports a limited number of external >> functions. fmod, in particular is not supported. any reason why it is not >> supported ? >> >> "lli -force-interpreter test.bc >> LLVM ERROR: Tried to execute an unknown external function: double (double, >> double)* fmod >> " > > You can check out the comment...
2009 Oct 23
1
Implications of reducing MAX_PERIOD
...t;>-- <br> <span style="font-size: 10pt; font-family: "Arial","sans-serif"; color: rgb(102, 102, 102);"><font color="#000000"><b>Chen-Po Sun</b></font> | Programmer <br> Firelight Technologies Pty Ltd. <br> FMOD Sound System | <a class="moz-txt-link-abbreviated" href="http://www.fmod.org">www.fmod.org</a> <br> PH: <font color="#000000">+61 3 96635947</font> Fax: <font color="#000000">+61 3 96635951</font> <br> </spa...
2000 Dec 17
1
Date: Mon, 18 Dec 2000 05:48:21 -0000
I just put up a new version of fmod soundsystem.. it now supports ogg vorbis for streaming and samples transparently amongst the other formats.. hopefully this might give ogg vorbis a bit of extra attention considering the large user base.. it can be checked out at www.fmod.org cheers Brett --- >8 ---- List archives: http://w...
2010 Jan 12
1
Seamless Looping
...t;>-- <br> <span style="font-size: 10pt; font-family: "Arial","sans-serif"; color: rgb(102, 102, 102);"><font color="#000000"><b>Chen-Po Sun</b></font> | Programmer <br> Firelight Technologies Pty Ltd. <br> FMOD Sound System | <a class="moz-txt-link-abbreviated" href="http://www.fmod.org">www.fmod.org</a> <br> PH: <font color="#000000">+61 3 96635947</font> Fax: <font color="#000000">+61 3 96635951</font> <br> </spa...
2016 Dec 01
2
Different results for cos,sin,tan and cospi,sinpi,tanpi
...ll right. diff -ruN R-3.3.2.orig/src/nmath/cospi.c R-3.3.2/src/nmath/cospi.c --- R-3.3.2.orig/src/nmath/cospi.c 2016-09-15 07:15:31.000000000 +0900 +++ R-3.3.2/src/nmath/cospi.c 2016-12-01 13:54:38.863357149 +0900 @@ -35,7 +35,11 @@ #endif if(!R_FINITE(x)) ML_ERR_return_NAN; - x = fmod(fabs(x), 2.);// cos() symmetric; cos(pi(x + 2k)) == cos(pi x) for all integer k + x = fabs(x); + if ( x > 9007199254740991 ) /* 2^53-1 */ + return cos(M_PI * x); + + x = fmod(x, 2.);// cos() symmetric; cos(pi(x + 2k)) == cos(pi x) for all integer k if(fmod(x, 1.) == 0.5) ret...
2009 Jul 22
2
Allocating all memory up front
Hi guys, I'm currently working on a CELT implementation for FMOD, and one of the things we want to do is have all memory required allocated beforehand. This is before we have any information about what sounds will be played. We would like to create all of our CELTDecode instances up front. Because celt_mode_create() requires a sample rate and number of chann...
2010 Feb 12
2
Optimisation Help
...t;>-- <br> <span style="font-size: 10pt; font-family: "Arial","sans-serif"; color: rgb(102, 102, 102);"><font color="#000000"><b>Chen-Po Sun</b></font> | Programmer <br> Firelight Technologies Pty Ltd. <br> FMOD Sound System | <a class="moz-txt-link-abbreviated" href="http://www.fmod.org">www.fmod.org</a> <br> PH: <font color="#000000">+61 3 96635947</font> Fax: <font color="#000000">+61 3 96635951</font> <br> </spa...
2008 Jul 03
1
Sins of Solar Empire: crash
...d080000 00:00 0 > 0f700000-0f920000 rwxp 0f700000 00:00 0 > 0f920000-0fa30000 rwxp 0f920000 00:00 0 > 0fa30000-0ff80000 rwxp 0fa30000 00:00 0 > 0ff80000-10000000 ---p 0ff80000 00:00 0 > 10000000-10013000 r-xp 00000000 08:04 223799 /home/foo/games/sins/fmod.dll > 10013000-10015000 rwxp 00013000 08:04 223799 /home/foo/games/sins/fmod.dll > 10015000-10068000 r-xp 00015000 08:04 223799 /home/foo/games/sins/fmod.dll > 10068000-10079000 rwxp 00068000 08:04 223799 /...
2016 Dec 01
1
Different results for cos,sin,tan and cospi,sinpi,tanpi
hi, my environment... > sessionInfo() R version 3.3.2 (2016-10-31) Platform: x86_64-pc-linux-gnu (64-bit) Running under: Debian GNU/Linux 8 (jessie) locale: [1] LC_CTYPE=ja_JP.UTF-8 LC_NUMERIC=C [3] LC_TIME=ja_JP.UTF-8 LC_COLLATE=ja_JP.UTF-8 [5] LC_MONETARY=ja_JP.UTF-8 LC_MESSAGES=ja_JP.UTF-8 [7] LC_PAPER=ja_JP.UTF-8 LC_NAME=C [9] LC_ADDRESS=C
2008 Jul 04
1
Sins of Solar Empire: crash
Jochen wrote: > > then I would imagine the problem is in the nvidia driver...yes? Now I > heard there were problems with the game and older dirvers, so I can not > go back to one to "fix" this problem--- any ideas? Then go forward. Newest driver version is 173.14.09. It does fix some problems.
2006 Jun 22
2
How to get audio data from microphone on pocketPC ?
Hi, My name is Patrick, i am french, and i am developping a softphone for pocket PC using speex. Sorry in advance for my bad english. So i have make an GUI in C# that use the speex functions through dll write in C++. And the encoding and the decoding using speex seems to work not too badly.(i test with a wave file) My problem is that i need to get audio data from the microphone. In order to do
2006 Jun 09
4
c++ Wav->ogg encoder
...I need a simple wav->ogg encoder function. But as I have tried to use ogg vorbis libraries I don't know what or how to use them. I think that best way would be to use libogg 1.1.3 and libvorbis 1.1.2. Do I even need both of them, since I only need to have capability of encoding? (I have FMOD for everything else.) I have tried to make some dlls and libs out of them with Visual Studio 2005, but no success. Would it be possible to copy and include .c and .h files directly from lib folder to my project? If so then how and what files do I need? I have also downloaded oggvorbis-win32sdk-...
2006 Jun 23
1
How to get audio data from microphone on pocketPC ?
...ose buid/configuration manager in active solution platform, choose <new..> then select smartphone (ARMV4) compile... normally you should have libspeex.lib in the debug directory. Patrick . 2006/6/23, Jere Malinen <majemi00@students.oamk.fi>: > > Hi > > You should try using fmod(www.fmod.org) for recording. You need fmodce for > pocketpc, and there is recording sample included. Also you should download > fmodex, because there is record to disk sample. I have developed > application for pocket pc which records sound in a wav file. > > My problem is that I hav...
2006 Jul 26
2
make world generates error :"ERROR: QEMU requires SDL or Cocoa for graphical output"
I downloaded xen-unstable-src.tar and did a make world in RH EL4. I get the following error and want to know how and where to add "--disable-gfx-check" Adlib support no CoreAudio support no ALSA support no DSound support no FMOD support no kqemu support no Documentation no ERROR: QEMU requires SDL or Cocoa for graphical output To build QEMU without graphical output configure with --disable-gfx-check Note that this will disable all output from the virtual graphics card. make[3]: *** [ioemuinstall] Error 1 make[...
2006 Jul 26
2
make world generates error :"ERROR: QEMU requires SDL or Cocoa for graphical output"
I downloaded xen-unstable-src.tar and did a make world in RH EL4. I get the following error and want to know how and where to add "--disable-gfx-check" Adlib support no CoreAudio support no ALSA support no DSound support no FMOD support no kqemu support no Documentation no ERROR: QEMU requires SDL or Cocoa for graphical output To build QEMU without graphical output configure with --disable-gfx-check Note that this will disable all output from the virtual graphics card. make[3]: *** [ioemuinstall] Error 1 make[...