|
11 | 11 | <sect3 id="audio-basics_1drivers"> |
12 | 12 | <title>Drivers</title><para>The driver is the low-level hardware backend (e.g. <computeroutput>MODLOAD "ac97"</computeroutput>). <linebreak/> |
13 | 13 | It is specific to your sound card in your PC. Without a driver, <bold>no audio commands will work</bold>.</para> |
| 14 | +<para>Currently supported sound cards:</para> |
| 15 | +<para><table rows="3" cols="3"><row> |
| 16 | +<entry thead="yes"><para>Device </para> |
| 17 | +</entry><entry thead="yes"><para>Description </para> |
| 18 | +</entry><entry thead="yes"><para>Command </para> |
| 19 | +</entry></row> |
| 20 | +<row> |
| 21 | +<entry thead="no"><para>AC'97 </para> |
| 22 | +</entry><entry thead="no"><para>Audio Codec ’97; legacy PCI audio standard </para> |
| 23 | +</entry><entry thead="no"><para><computeroutput>MODLOAD "ac97"</computeroutput> </para> |
| 24 | +</entry></row> |
| 25 | +<row> |
| 26 | +<entry thead="no"><para>HDA </para> |
| 27 | +</entry><entry thead="no"><para>High Definition Audio; Azalia (successor to AC’97) </para> |
| 28 | +</entry><entry thead="no"><para><computeroutput>MODLOAD "hda"</computeroutput> </para> |
| 29 | +</entry></row> |
| 30 | +</table> |
| 31 | +</para> |
14 | 32 | </sect3> |
15 | 33 | <sect3 id="audio-basics_1codecs"> |
16 | 34 | <title>Codecs</title><para>A codec is a small specialised program that knows how to <bold>decode audio files</bold> into the raw data format used by Retro Rocket. Codecs are provided as kernel modules, just like drivers, and must be loaded before you can use them.</para> |
17 | | -<para><itemizedlist> |
18 | | -<listitem><para>WAV support is built in and always available.</para> |
19 | | -</listitem><listitem><para>MP3 support is available via the <computeroutput>mp3.ko</computeroutput> module (<computeroutput>MODLOAD "mp3"</computeroutput>).</para> |
20 | | -</listitem><listitem><para>FLAC support is available via the <computeroutput>flac.ko</computeroutput> module (<computeroutput>MODLOAD "flac"</computeroutput>).</para> |
21 | | -</listitem><listitem><para>OGG Vorbis support is available via the <computeroutput>ogg.ko</computeroutput> module (<computeroutput>MODLOAD "ogg"</computeroutput>)</para> |
22 | | -</listitem><listitem><para>MOD support is available via the <computeroutput>mod.ko</computeroutput> module (<computeroutput>MODLOAD "mod"</computeroutput>)</para> |
23 | | -</listitem></itemizedlist> |
| 35 | +<para><table rows="6" cols="3"><row> |
| 36 | +<entry thead="yes"><para>Format </para> |
| 37 | +</entry><entry thead="yes"><para>Description </para> |
| 38 | +</entry><entry thead="yes"><para>Command </para> |
| 39 | +</entry></row> |
| 40 | +<row> |
| 41 | +<entry thead="no"><para>WAV </para> |
| 42 | +</entry><entry thead="no"><para>Uncompressed PCM; built-in and always available </para> |
| 43 | +</entry><entry thead="no"><para><emphasis>(no module required)</emphasis> </para> |
| 44 | +</entry></row> |
| 45 | +<row> |
| 46 | +<entry thead="no"><para>MP3 </para> |
| 47 | +</entry><entry thead="no"><para>MPEG-1 Layer III compressed audio </para> |
| 48 | +</entry><entry thead="no"><para><computeroutput>MODLOAD "mp3"</computeroutput> </para> |
| 49 | +</entry></row> |
| 50 | +<row> |
| 51 | +<entry thead="no"><para>FLAC </para> |
| 52 | +</entry><entry thead="no"><para>Free Lossless Audio Codec </para> |
| 53 | +</entry><entry thead="no"><para><computeroutput>MODLOAD "flac"</computeroutput> </para> |
| 54 | +</entry></row> |
| 55 | +<row> |
| 56 | +<entry thead="no"><para>OGG </para> |
| 57 | +</entry><entry thead="no"><para>Ogg Vorbis compressed audio </para> |
| 58 | +</entry><entry thead="no"><para><computeroutput>MODLOAD "ogg"</computeroutput> </para> |
| 59 | +</entry></row> |
| 60 | +<row> |
| 61 | +<entry thead="no"><para>MOD </para> |
| 62 | +</entry><entry thead="no"><para>Amiga-style tracker modules (ProTracker, etc.) </para> |
| 63 | +</entry><entry thead="no"><para><computeroutput>MODLOAD "mod"</computeroutput> </para> |
| 64 | +</entry></row> |
| 65 | +</table> |
24 | 66 | </para> |
25 | 67 | <para>If you try to load any file type except WAV without first loading the corresponding codec module, you will receive an error as the file type will be unrecognised.</para> |
26 | 68 | </sect3> |
|
0 commit comments