Chris@41
|
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
Chris@41
|
2 <HTML>
|
Chris@41
|
3
|
Chris@41
|
4 <HEAD>
|
Chris@41
|
5 <TITLE>
|
Chris@41
|
6 Secret Rabbit Code (aka libsamplerate)
|
Chris@41
|
7 </TITLE>
|
Chris@41
|
8 <META NAME="Author" CONTENT="Erik de Castro Lopo (erikd AT mega-nerd DOT com)">
|
Chris@41
|
9 <META NAME="Version" CONTENT="libsamplerate-0.1.8">
|
Chris@41
|
10 <META NAME="Description" CONTENT="The Secret Rabbit Code Home Page">
|
Chris@41
|
11 <META NAME="Keywords" CONTENT="libsamplerate sound resample audio dsp Linux">
|
Chris@41
|
12 <LINK REL=StyleSheet HREF="SRC.css" TYPE="text/css" MEDIA="all">
|
Chris@41
|
13 </HEAD>
|
Chris@41
|
14
|
Chris@41
|
15 <BODY TEXT="#FFFFFF" BGCOLOR="#000000" LINK="#FB1465" VLINK="#FB1465" ALINK="#FB1465">
|
Chris@41
|
16 <!-- pepper -->
|
Chris@41
|
17 <CENTER>
|
Chris@41
|
18 <IMG SRC="SRC.png" HEIGHT=100 WIDTH=760 ALT="SRC.png">
|
Chris@41
|
19 </CENTER>
|
Chris@41
|
20 <!-- pepper -->
|
Chris@41
|
21 <BR>
|
Chris@41
|
22 <!-- pepper -->
|
Chris@41
|
23 <TABLE ALIGN="center" WIDTH="98%">
|
Chris@41
|
24 <TR>
|
Chris@41
|
25 <TD VALIGN="top">
|
Chris@41
|
26 <BR>
|
Chris@41
|
27 <DIV CLASS="nav">
|
Chris@41
|
28 <BR>
|
Chris@41
|
29 <A HREF="index.html">Home</A><BR>
|
Chris@41
|
30 <A HREF="license.html">License</A><BR>
|
Chris@41
|
31 <A HREF="history.html">History</A><BR>
|
Chris@41
|
32 <A HREF="download.html">Download</A><BR>
|
Chris@41
|
33 <A HREF="quality.html">Quality</A><BR>
|
Chris@41
|
34 <A HREF="api.html">API</A><BR>
|
Chris@41
|
35 <A HREF="bugs.html">Bug Reporting</A><BR>
|
Chris@41
|
36 <A HREF="win32.html">On Win32</A><BR>
|
Chris@41
|
37 <A HREF="faq.html">FAQ</A><BR>
|
Chris@41
|
38 <A HREF="lists.html">Mailing Lists</A><BR>
|
Chris@41
|
39 <A HREF="ChangeLog">ChangeLog</A><BR>
|
Chris@41
|
40 <BR>
|
Chris@41
|
41 <DIV CLASS="block">
|
Chris@41
|
42 Author :<BR>Erik de Castro Lopo
|
Chris@41
|
43 <!-- pepper -->
|
Chris@41
|
44 <BR><BR>
|
Chris@41
|
45 <!-- pepper -->
|
Chris@41
|
46
|
Chris@41
|
47 </DIV>
|
Chris@41
|
48 <IMG SRC=
|
Chris@41
|
49 "/cgi-bin/Count.cgi?ft=6|frgb=55;55;55|tr=0|md=6|dd=B|st=1|sh=1|df=src_win32.dat"
|
Chris@41
|
50 HEIGHT=30 WIDTH=100 ALT="counter.gif">
|
Chris@41
|
51 </DIV>
|
Chris@41
|
52
|
Chris@41
|
53 </TD>
|
Chris@41
|
54 <!-- pepper -->
|
Chris@41
|
55 <!-- ######################################################################## -->
|
Chris@41
|
56 <!-- pepper -->
|
Chris@41
|
57 <TD VALIGN="top">
|
Chris@41
|
58 <DIV CLASS="block">
|
Chris@41
|
59
|
Chris@41
|
60 <H1><B>Compiling on Win32.</B></H1>
|
Chris@41
|
61 <P>
|
Chris@41
|
62 For Win32 there is a Microsoft Visual C++ compatible makefile in the <B>Win32\</B>
|
Chris@41
|
63 directory and a MSDOS batch file in the top level directory of the distribution.
|
Chris@41
|
64 </P>
|
Chris@41
|
65 <P>
|
Chris@41
|
66 To build the examples programs you will need to download the precompiled
|
Chris@41
|
67 win32 or win64
|
Chris@41
|
68 <A HREF="http://www.mega-nerd.com/libsndfile/#Download">libsndfile</A>
|
Chris@41
|
69 binary and install them.
|
Chris@41
|
70
|
Chris@41
|
71 </P>
|
Chris@41
|
72 <P>
|
Chris@41
|
73 Making the libsamplerate DLL on Win32 involves the following:
|
Chris@41
|
74 </P>
|
Chris@41
|
75 <OL>
|
Chris@41
|
76 <LI> Using WinZip in the GUI, open the libsamplerate-0.X.Y.tar.gz file and
|
Chris@41
|
77 extract the files into a directory. The following example assumes
|
Chris@41
|
78 <B>C:\</B>.
|
Chris@41
|
79 <LI> In the directory containing the extracted files, find the file
|
Chris@41
|
80 <B>Win32\Makefile.msvc</B> and open it in a text editor (ie Notepad or
|
Chris@41
|
81 similar).
|
Chris@41
|
82 <LI> Find the line which starts with <B>MSVCDir</B> and modify the directory
|
Chris@41
|
83 path to point to the location of MSVC++ on your machine. This allows the
|
Chris@41
|
84 makefile to inform the compiler of the location of the standard header
|
Chris@41
|
85 files.
|
Chris@41
|
86 <LI> Copy <B>libsndfile-1.dll</B>, <B>libsndfile-1.lib</B> and
|
Chris@41
|
87 <B>libsndfile-1.def</B> from the directory libsndfile was installed in
|
Chris@41
|
88 to the the directory containing libsamplerate.
|
Chris@41
|
89 <LI> Copy the header file <B>include/sndfile.h</B> from where libsndfile was
|
Chris@41
|
90 installed to the <B>Win32</B> directory under the libsamplerate
|
Chris@41
|
91 directory.
|
Chris@41
|
92 <LI> Open a Command Shell and cd into the libsamplerate-0.X.Y directory.
|
Chris@41
|
93 <LI> Make sure that the program <B>nmake</B> (which is part of the MSCV++
|
Chris@41
|
94 package) is in a directory which is part of your <B>PATH</B> variable.
|
Chris@41
|
95 <LI> Type in the command
|
Chris@41
|
96 <PRE> C:\libsamplerate-0.X.Y> make
|
Chris@41
|
97 </PRE>
|
Chris@41
|
98 and press <return>. You should now see a a large number of compile
|
Chris@41
|
99 commands as libsamplerate.dll is built.
|
Chris@41
|
100 <LI> To check that the built DLL has been compiled correctly type in and run the
|
Chris@41
|
101 command
|
Chris@41
|
102 <PRE> C:\libsamplerate-0.X.Y> make check
|
Chris@41
|
103 </PRE>
|
Chris@41
|
104 which will compile a set of test programs and run them.
|
Chris@41
|
105 If any of the programs fail the error message will be help in debugging
|
Chris@41
|
106 the problem.
|
Chris@41
|
107 (Note that some of the tests require libsndfile or libfftw/librfftw and
|
Chris@41
|
108 are not able to run on Win32).
|
Chris@41
|
109 </OL>
|
Chris@41
|
110 <P>
|
Chris@41
|
111 At the end of the above procedure, you will find the DLL, <B>libsamplerate.dll</B>, a
|
Chris@41
|
112 LIB file <B>libsamplerate.lib</B> in the current directory. These two files, along
|
Chris@41
|
113 with the header file <B>samplerate.h</B> (in the <B>src\</B> directory) are all that
|
Chris@41
|
114 you need to copy to your project in order to use libsamplerate.
|
Chris@41
|
115 </P>
|
Chris@41
|
116
|
Chris@41
|
117 <H2><BR>Compile Problems</H2>
|
Chris@41
|
118 <P>
|
Chris@41
|
119 If you run into compile problems using the above procedure, you should
|
Chris@41
|
120 <A HREF="lists.html"> join the main mailing list </A>
|
Chris@41
|
121 and post your problem and/or questions there.
|
Chris@41
|
122 Please include any error messages generated during step 6 above.
|
Chris@41
|
123 </P>
|
Chris@41
|
124
|
Chris@41
|
125 <P>
|
Chris@41
|
126 If you are using some other method to compile the libsamplerate DLL you are
|
Chris@41
|
127 probably on your own.
|
Chris@41
|
128 </P>
|
Chris@41
|
129 <BR>
|
Chris@41
|
130
|
Chris@41
|
131 <!--
|
Chris@41
|
132
|
Chris@41
|
133 From here:
|
Chris@41
|
134
|
Chris@41
|
135 http://www.gimp.org/~tml/gimp/win32/downloads.html
|
Chris@41
|
136
|
Chris@41
|
137 Download these files:
|
Chris@41
|
138
|
Chris@41
|
139 gettext-runtime-0.13.1.zip
|
Chris@41
|
140 glib-2.4.5-20040903.zip
|
Chris@41
|
141 libiconv-1.9.1.bin.woe32.zip
|
Chris@41
|
142 pkgconfig-0.15.zip
|
Chris@41
|
143
|
Chris@41
|
144 and install them.
|
Chris@41
|
145
|
Chris@41
|
146 -->
|
Chris@41
|
147
|
Chris@41
|
148 <!-- <A HREF="mailto:aldel@mega-nerd.com">For the spam bots</A> -->
|
Chris@41
|
149
|
Chris@41
|
150 </DIV>
|
Chris@41
|
151 </TD></TR>
|
Chris@41
|
152 </TABLE>
|
Chris@41
|
153
|
Chris@41
|
154 </BODY>
|
Chris@41
|
155 </HTML>
|
Chris@41
|
156
|