fmod Questions
3
Solved
fmod(1001.0, 0.0001) is giving 0.00009999999995, which seems like a very low precision (10-5), given the expected result of 0.
According to cppreference, fmod() is implementable using remainder(), ...
Rillis asked 5/10, 2020 at 15:28
1
Solved
I'm trying to compile a program that links to the FMOD library in the Eclipse C/C++ IDE. I haven't even included any of the library's headers, I've only added the shared library to the projects dep...
Alfred asked 26/1, 2020 at 6:2
2
Solved
I'm using FMOD to develop an application which would immediately start playing the recording of the next/previous sentence exactly from its beginning in a MP3 file which contains speech, without mu...
Medici asked 20/2, 2015 at 15:38
4
Solved
I know that for unsigned integers, I can replace the modulo operation with a bitmask, if the divisor is a power of two. Do any numbers have a similar property for floats? That is, are there any num...
Almeta asked 6/3, 2018 at 20:17
4
Solved
How can I pad out a vector with 0's if it is not a multiple of 8 bytes?
In the following code I work out the offset and add to the vector to make sure it always has 8 values. I would like to pad t...
1
Solved
Given:
#include <iostream>
#include <cmath>
#include <limits>
using namespace std;
int main() {
// your code goes here
double h = .1;
double x = 1;
int nSteps = abs(x / h);
...
Itinerancy asked 10/10, 2016 at 20:25
2
I'm trying to load a video via url, but I keep getting the same error. I'm using Unity 5.3 and the example code from http://docs.unity3d.com/ScriptReference/WWW-movie.html (heavily modified because...
Pero asked 18/12, 2015 at 22:14
1
I am fairly new to C programming and I haven't used Visual Studio or a third party library before. I'm trying to do something simple with FMOD and need to link fmodvclib, fmod.h, and of cours...
Dropper asked 26/1, 2016 at 6:59
2
Solved
Been messing around with FMOD for C# game development and I've hit a snag early on that I can't seem to get around. I want to do some branching audio stuff and sync some gameplay action to beats an...
Threepence asked 4/9, 2011 at 20:50
1
Solved
I found an example called nativeactivity in FMOD example folder, but unfortunately it use some java code:
package org.fmod.nativeactivity;
public class Example extends android.app.NativeActivity ...
Warila asked 11/7, 2012 at 6:49
3
Solved
My project is a standalone C++ application that uses FMOD for playing sound. I've previously developed the same project with Visual Studio 2010 without any problems, but 2012 gives me the classic e...
Shell asked 20/9, 2012 at 17:51
4
Solved
I'm working with FMOD in C#. I've tried importing the fmodex.dll file by selecting Project->Add Reference and browsing for the fmodex.dll, but I am getting an error:
A reference to ... could not...
5
Solved
So, I'm using the FMOD api and it really is a C api.
Not that that's bad or anything. Its just it doesn't interface well with C++ code.
For example, using
FMOD_Channel_SetCallback( channel, cal...
Otisotitis asked 10/3, 2010 at 20:30
1
© 2022 - 2024 — McMap. All rights reserved.