1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2<html>
3
4<head>
5<LINK rel="stylesheet" type="text/css" href="../../CSS/revolution.css">
6<META http-equiv="Content-Type" content="text/html; charset=windows-1252">
7<META http-equiv="Content-Style-Type" content="text/css">
8<TITLE>AXFX_CHORUS_EXP(_DPL2) Presets</TITLE>
9</head>
10
11<BODY>
12
13<H1 align="left">AXFX_CHORUS_EXP(_DPL2) Presets</H1>
14
15<H2>Description</H2>
16<P>To simplify configuration of the Chorus Expansion, the following presets have been prepared in the <code>axfx_presets.h</code> file. These presets can be used with the Dolby Pro Logic II (DPL2) version as well.</P>
17
18<TABLE class="arguments" border="1" >
19  <tr>
20<TH>AXFX_PRESET_CHORUS_EXP_TYPE1</TH>
21<TD>Typical chorus (1).</TD>
22  </tr>
23  <tr>
24<TH>AXFX_PRESET_CHORUS_EXP_TYPE2</TH>
25<TD>Typical chorus (2).</TD>
26  </tr>
27  <tr>
28<TH>AXFX_PRESET_CHORUS_EXP_TYPE3</TH>
29<TD>Typical chorus (3).</TD>
30  </tr>
31  <tr>
32<TH>AXFX_PRESET_CHORUS_EXP_FLANGER1</TH>
33<TD>Flanger (1).</TD>
34  </tr>
35  <tr>
36<TH>AXFX_PRESET_CHORUS_EXP_FLANGER2</TH>
37<TD>Flanger (2).</TD>
38  </tr>
39  <tr>
40<TH>AXFX_PRESET_CHORUS_EXP_ECHO1</TH>
41<TD>Chorus echo (1).</TD>
42  </tr>
43  <tr>
44<TH>AXFX_PRESET_CHORUS_EXP_ECHO2</TH>
45<TD>Chorus echo (2).</TD>
46  </tr>
47  <tr>
48<TH>AXFX_PRESET_CHORUS_EXP_WOBBLE1</TH>
49<TD>Chorus with larger undulations (1).</TD>
50  </tr>
51  <tr>
52<TH>AXFX_PRESET_CHORUS_EXP_WOBBLE2</TH>
53<TD>Chorus with larger undulations (2).</TD>
54  </tr>
55</TABLE>
56
57<H2>Example</H2>
58<dl><dd><pre class="construction">
59#include &lt;revolution.h&gt;
60#include &lt;revolution/axfx.h&gt;
61#include &lt;revolution/axfx_presets.h&gt;
62
63    /*----------------------------------------------*
64        For mono, stereo, surround
65     *----------------------------------------------*/
66
67    AXFX_CHORUS_EXP chorus;
68
69    AXFX_PRESET_CHORUS_EXP_TYPE1(&amp;chorus);
70    AXFXChorusExpInit(&amp;chorus);
71</pre></dd></dl>
72<p>or</p>
73<dl><dd><pre class="construction">
74#include &lt;revolution.h&gt;
75#include &lt;revolution/axfx.h&gt;
76#include &lt;revolution/axfx_presets.h&gt;
77
78    /*----------------------------------------------*
79For Dolby Pro Logic II
80     *----------------------------------------------*/
81
82    AXFX_CHORUS_EXP_DPL2 chorus;
83
84    AXFX_PRESET_CHORUS_EXP_TYPE1(&amp;chorus);
85    AXFXChorusExpInitDpl2(&amp;chorus);
86</pre></dd></dl>
87
88<H2>See Also</H2>
89<P class="reference">
90</P>
91
92<H2>Revision History</H2>
93<P>
942007/08/10 Initial version.<br>
95</P>
96
97<hr><p>CONFIDENTIAL</p></body>
98</HTML>
99