Merge branch 'mr/build' into pu
[sox/ew.git] / src / formats.h
blobeb33577e4b41cf73f3600f186aa1c25aa2b19894
1 /* libSoX static formats list (c) 2006-9 Chris Bagwell and SoX contributors
3 * This library is free software; you can redistribute it and/or modify it
4 * under the terms of the GNU Lesser General Public License as published by
5 * the Free Software Foundation; either version 2.1 of the License, or (at
6 * your option) any later version.
8 * This library is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
11 * General Public License for more details.
13 * You should have received a copy of the GNU Lesser General Public License
14 * along with this library; if not, write to the Free Software Foundation,
15 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 /*-------------------------- Static format handlers --------------------------*/
20 FORMAT(aifc)
21 FORMAT(aiff)
22 FORMAT(al)
23 FORMAT(au)
24 FORMAT(avr)
25 FORMAT(cdr)
26 FORMAT(cvsd)
27 FORMAT(cvu)
28 FORMAT(dat)
29 FORMAT(dsdiff)
30 FORMAT(dsf)
31 FORMAT(dvms)
32 FORMAT(f4)
33 FORMAT(f8)
34 FORMAT(gsrt)
35 FORMAT(hcom)
36 FORMAT(htk)
37 FORMAT(ima)
38 FORMAT(la)
39 FORMAT(lu)
40 FORMAT(maud)
41 FORMAT(nul)
42 FORMAT(prc)
43 FORMAT(raw)
44 FORMAT(s1)
45 FORMAT(s2)
46 FORMAT(s3)
47 FORMAT(s4)
48 FORMAT(sf)
49 FORMAT(sln)
50 FORMAT(smp)
51 FORMAT(sounder)
52 FORMAT(soundtool)
53 FORMAT(sox)
54 FORMAT(sphere)
55 FORMAT(svx)
56 FORMAT(txw)
57 FORMAT(u1)
58 FORMAT(u2)
59 FORMAT(u3)
60 FORMAT(u4)
61 FORMAT(ul)
62 FORMAT(voc)
63 FORMAT(vox)
64 FORMAT(wav)
65 FORMAT(wve)
66 FORMAT(xa)
68 /*--------------------- Plugin or static format handlers ---------------------*/
70 #if defined HAVE_ALSA && (defined STATIC_ALSA || !defined HAVE_LIBLTDL)
71 FORMAT(alsa)
72 #endif
73 #if defined HAVE_AMRNB && (defined STATIC_AMRNB || !defined HAVE_LIBLTDL)
74 FORMAT(amr_nb)
75 #endif
76 #if defined HAVE_AMRWB && (defined STATIC_AMRWB || !defined HAVE_LIBLTDL)
77 FORMAT(amr_wb)
78 #endif
79 #if defined HAVE_AO && (defined STATIC_AO || !defined HAVE_LIBLTDL)
80 FORMAT(ao)
81 #endif
82 #if defined HAVE_COREAUDIO && (defined STATIC_COREAUDIO || !defined HAVE_LIBLTDL)
83 FORMAT(coreaudio)
84 #endif
85 #if defined HAVE_FLAC && (defined STATIC_FLAC || !defined HAVE_LIBLTDL)
86 FORMAT(flac)
87 #endif
88 #if defined HAVE_GSM && (defined STATIC_GSM || !defined HAVE_LIBLTDL)
89 FORMAT(gsm)
90 #endif
91 #if defined HAVE_LPC10 && (defined STATIC_LPC10 || !defined HAVE_LIBLTDL)
92 FORMAT(lpc10)
93 #endif
94 #if defined HAVE_MP3 && (defined STATIC_MP3 || !defined HAVE_LIBLTDL)
95 FORMAT(mp3)
96 #endif
97 #if defined HAVE_OPUS && (defined STATIC_OPUS || !defined HAVE_LIBLTDL)
98 FORMAT(opus)
99 #endif
100 #if defined HAVE_OSS && (defined STATIC_OSS || !defined HAVE_LIBLTDL)
101 FORMAT(oss)
102 #endif
103 #if defined HAVE_PULSEAUDIO && (defined STATIC_PULSEAUDIO || !defined HAVE_LIBLTDL)
104 FORMAT(pulseaudio)
105 #endif
106 #if defined HAVE_WAVEAUDIO && (defined STATIC_WAVEAUDIO || !defined HAVE_LIBLTDL)
107 FORMAT(waveaudio)
108 #endif
109 #if defined HAVE_SNDIO && (defined STATIC_SNDIO || !defined HAVE_LIBLTDL)
110 FORMAT(sndio)
111 #endif
112 #if defined HAVE_SNDFILE && (defined STATIC_SNDFILE || !defined HAVE_LIBLTDL)
113 FORMAT(sndfile)
114 FORMAT(caf)
115 FORMAT(fap)
116 FORMAT(mat4)
117 FORMAT(mat5)
118 FORMAT(paf)
119 FORMAT(pvf)
120 FORMAT(sd2)
121 FORMAT(w64)
122 FORMAT(xi)
123 #endif
124 #if defined HAVE_SUN_AUDIO && (defined STATIC_SUN_AUDIO || !defined HAVE_LIBLTDL)
125 FORMAT(sunau)
126 #endif
127 #if defined HAVE_OGG_VORBIS && (defined STATIC_OGG_VORBIS || !defined HAVE_LIBLTDL)
128 FORMAT(vorbis)
129 #endif
130 #if defined HAVE_WAVPACK && (defined STATIC_WAVPACK || !defined HAVE_LIBLTDL)
131 FORMAT(wavpack)
132 #endif