-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFMOD_DSP_RESAMPLER.html
47 lines (47 loc) · 2.15 KB
/
FMOD_DSP_RESAMPLER.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<LINK REL="stylesheet" HREF="../static/styles.css">
<HTML>
<HEAD>
<TITLE>FMOD_DSP_RESAMPLER</TITLE>
</HEAD>
<BODY TOPMARGIN="0" class="api_reference">
<p class="header">Firelight Technologies FMOD Studio API</p>
<H1>FMOD_DSP_RESAMPLER</H1>
<P>
<p>List of interpolation types that the FMOD Studio software mixer supports.</p>
</P>
<h3>Enumeration</h3>
<PRE class=syntax><CODE>typedef enum {
FMOD_DSP_RESAMPLER_DEFAULT,
FMOD_DSP_RESAMPLER_NOINTERP,
FMOD_DSP_RESAMPLER_LINEAR,
FMOD_DSP_RESAMPLER_CUBIC,
FMOD_DSP_RESAMPLER_SPLINE,
FMOD_DSP_RESAMPLER_MAX
} FMOD_DSP_RESAMPLER;
</CODE></PRE>
<h2>Values</h2>
<P class=dt><I>FMOD_DSP_RESAMPLER_DEFAULT</I></P>
<P class=indent>Default interpolation method. Currently equal to <A HREF="FMOD_DSP_RESAMPLER.html">FMOD_DSP_RESAMPLER_LINEAR</A>. </P>
<P class=dt><I>FMOD_DSP_RESAMPLER_NOINTERP</I></P>
<P class=indent>No interpolation. High frequency aliasing hiss will be audible depending on the sample rate of the sound. </P>
<P class=dt><I>FMOD_DSP_RESAMPLER_LINEAR</I></P>
<P class=indent>Linear interpolation (default method). Fast and good quality, causes very slight lowpass effect on low frequency sounds. </P>
<P class=dt><I>FMOD_DSP_RESAMPLER_CUBIC</I></P>
<P class=indent>Cubic interpolation. Slower than linear interpolation but better quality. </P>
<P class=dt><I>FMOD_DSP_RESAMPLER_SPLINE</I></P>
<P class=indent>5 point spline interpolation. Slowest resampling method but best quality. </P>
<P class=dt><I>FMOD_DSP_RESAMPLER_MAX</I></P>
<P class=indent>Maximum number of resample methods supported. </P>
<h2>Remarks</h2><P>
<p>The default resampler type is <A HREF="FMOD_DSP_RESAMPLER.html">FMOD_DSP_RESAMPLER_LINEAR</A>.<br>
Use <A HREF="FMOD_System_SetSoftwareFormat.html">System::setSoftwareFormat</A> to tell FMOD the resampling quality you require for <A HREF="FMOD_MODE.html">FMOD_SOFTWARE</A> based sounds.</p>
</P>
<h2>See Also</h2>
<UL type=disc>
<LI><A HREF="FMOD_System_SetSoftwareFormat.html">System::setSoftwareFormat</A></LI>
<LI><A HREF="FMOD_System_GetSoftwareFormat.html">System::getSoftwareFormat</A></LI>
</UL>
<BR><BR><BR>
<P align=center><font size=-2>Version 1.03.06 Built on Apr 17, 2014</font></P>
<BR>
</HTML>