README
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:10k
源码类别:

Windows CE

开发平台:

C/C++

  1. /* FLAC - Free Lossless Audio Codec
  2.  * Copyright (C) 2001,2002,2003,2004,2005  Josh Coalson
  3.  *
  4.  * This file is part the FLAC project.  FLAC is comprised of several
  5.  * components distributed under difference licenses.  The codec libraries
  6.  * are distributed under Xiph.Org's BSD-like license (see the file
  7.  * COPYING.Xiph in this distribution).  All other programs, libraries, and
  8.  * plugins are distributed under the GPL (see COPYING.GPL).  The documentation
  9.  * is distributed under the Gnu FDL (see COPYING.FDL).  Each file in the
  10.  * FLAC distribution contains at the top the terms under which it may be
  11.  * distributed.
  12.  *
  13.  * Since this particular file is relevant to all components of FLAC,
  14.  * it may be distributed under the Xiph.Org license, which is the least
  15.  * restrictive of those mentioned above.  See the file COPYING.Xiph in this
  16.  * distribution.
  17.  */
  18. FLAC (http://flac.sourceforge.net/) is an Open Source lossless audio
  19. codec developed by Josh Coalson.
  20. FLAC is comprised of
  21.   * `libFLAC', a library which implements reference encoders and
  22.     decoders, and a metadata interface
  23.   * `libFLAC++', a C++ object wrapper library around libFLAC
  24.   * `libOggFLAC' and `libOggFLAC++', which provide encoders and
  25.     decoders for FLAC streams in an Ogg container
  26.   * `flac', a command-line program for encoding and decoding files
  27.   * `metaflac', a command-line program for viewing and editing FLAC
  28.     metadata
  29.   * player plugins for XMMS and Winamp
  30.   * user and API documentation
  31. The libraries (libFLAC, libFLAC++, libOggFLAC, and libOggFLAC++) are
  32. licensed under Xiph.org's BSD-like license (see COPYING.Xiph).  All other
  33. programs and plugins are licensed under the GNU General Public License
  34. (see COPYING.GPL).  The documentation is licensed under the GNU Free
  35. Documentation License (see COPYING.FDL).
  36. ===============================================================================
  37. FLAC - 1.1.2 - Contents
  38. ===============================================================================
  39. - Introduction
  40. - Prerequisites
  41. - Building in a GNU environment
  42. - Building with Makefile.lite
  43. - Building with MSVC
  44. - Building on Mac OS X
  45. - Note to embedded developers
  46. ===============================================================================
  47. Introduction
  48. ===============================================================================
  49. This is the source release for the FLAC project.  See
  50. doc/html/index.html
  51. for full documentation.
  52. A brief description of the directory tree:
  53. doc/          the HTML documentation
  54. flac.pbproj/  the Mac OS X Project Builder project
  55. include/      public include files for libFLAC and libFLAC++
  56. man/          the man page for `flac'
  57. src/          the source code and private headers
  58. test/         the test scripts
  59. ===============================================================================
  60. Prerequisites
  61. ===============================================================================
  62. To build FLAC with support for Ogg FLAC you must have built and installed
  63. libogg according to the specific instructions below.  You must have
  64. libogg 1.1.2 or greater, or there will be seeking problems with Ogg FLAC.
  65. If you are building on x86 and want the assembly optimizations, you will
  66. need to have NASM >= 0.98.30 installed according to the specific instructions
  67. below.
  68. ===============================================================================
  69. Building in a GNU environment
  70. ===============================================================================
  71. FLAC uses autoconf and libtool for configuring and building.
  72. Better documentation for these will be forthcoming, but in
  73. general, this should work:
  74. ./configure && make && make check && make install
  75. The 'make check' step is optional; omit it to skip all the tests,
  76. which can take several hours and use around 70-80 megs of disk space.
  77. Even though it will stop with an explicit message on any failure, it
  78. does print out a lot of stuff so you might want to capture the output
  79. to a file if you're having a problem.  Also, don't run 'make check'
  80. as root because it confuses some of the tests.
  81. NOTE: Despite our best efforts it's entirely possible to have
  82. problems when using older versions of autoconf, automake, or
  83. libtool.  If you have the latest versions and still can't get it
  84. to work, see the next section on Makefile.lite.
  85. There are a few FLAC-specific arguments you can give to
  86. `configure':
  87. --enable-debug : Builds everything with debug symbols and some
  88. extra (and more verbose) error checking.
  89. --disable-asm-optimizations : Disables the compilation of the
  90. assembly routines.  Many routines have assembly versions for
  91. speed and `configure' is pretty good about knowing what is
  92. supported, but you can use this option to build only from the
  93. C sources.
  94. --enable-sse : If you are building for an x86 CPU that supports
  95. SSE instructions, you can enable some of the faster routines
  96. if your operating system also supports SSE instructions.  flac
  97. can tell if the CPU supports the instructions but currently has
  98. no way to test if the OS does, so if it does, you must pass
  99. this argument to configure to use the SSE routines.  If flac
  100. crashes when built with this option you will have to go back and
  101. configure without --enable-sse.  Note that
  102. --disable-asm-optimizations implies --disable-sse.
  103. --enable-local-xmms-plugin : Installs the FLAC XMMS plugin in
  104. $HOME/.xmms/Plugins, instead of the global XMMS plugin area
  105. (usually /usr/lib/xmms/Input).
  106. --with-ogg=
  107. --with-xmms-prefix=
  108. --with-libiconv-prefix=
  109. Use these if you have these packages but configure can't find them.
  110. If you want to build completely from scratch (i.e. starting with just
  111. configure.in and Makefile.am) you should be able to just run 'autogen.sh'
  112. but make sure and read the comments in that file first.
  113. ===============================================================================
  114. Building with Makefile.lite
  115. ===============================================================================
  116. There is a more lightweight build system for do-it-yourself-ers.
  117. It is also useful if configure isn't working, which may be the
  118. case since lately we've had some problems with different versions
  119. of automake and libtool.  The Makefile.lite system should work
  120. on GNU systems with few or no adjustments.
  121. From the top level just 'make -f Makefile.lite'.  You can
  122. specify zero or one optional target from 'release', 'debug',
  123. 'test', or 'clean'.  The default is 'release'.  There is no
  124. 'install' target but everything you need will end up in the
  125. obj/ directory.
  126. If you are not on an x86 system or you don't have nasm, you
  127. may have to change the DEFINES in src/libFLAC/Makefile.lite.  If
  128. you don't have nasm, remove -DFLAC__HAS_NASM.  If your target is
  129. not an x86, change -DFLAC__CPU_IA32 to -DFLAC__CPU_UNKNOWN.
  130. ===============================================================================
  131. Building with MSVC
  132. ===============================================================================
  133. There are now .dsp projects and a master FLAC.dsw workspace to build
  134. all the libraries and executables.
  135. Prerequisite: you must have the Ogg libraries installed as described
  136. later.
  137. Prerequisite: you must have nasm installed, and nasmw.exe must be in
  138. your PATH, or the path to nasmw.exe must be added to the list of
  139. directories for executable files in the MSVC global options.
  140. To build everything, run Developer Studio, do File|Open Workspace,
  141. and open FLAC.dsw.  Select "Build | Set active configuration..."
  142. from the menu, then in the dialog, select "All - Win32 Release" (or
  143. Debug if you prefer).  Click "Ok" then hit F7 to build. This will build
  144. all libraries both statically (e.g. objreleaseliblibFLAC_static.lib)
  145. and as DLLs (e.g.  objreleasebinlibFLAC.dll), and it will build all
  146. binaries, statically linked (e.g. objreleasebinflac.exe).
  147. Everything will end up in the "obj" directory.  DLLs and .exe files
  148. are all that are needed and can be copied to an installation area and
  149. added to the PATH.  The plugins have to be copied to their appropriate
  150. place in the player area.  For Winamp2 this is <winamp2-dir>Plugins.
  151. By default the code is configured with Ogg support.  Before building FLAC
  152. you will need to get the Ogg source distribution
  153. (see http://xiph.org/ogg/vorbis/download/), build ogg_static.lib (load and
  154. build win32ogg_static.dsp), copy ogg_static.lib into FLAC's
  155. 'objreleaselib' directory, and copy the entire includeogg tree into
  156. FLAC's 'include' directory (so that there is an 'ogg' directory in FLAC's
  157. 'include' directory with the files ogg.h, os_types.h and config_types.h).
  158. ===============================================================================
  159. Building on Mac OS X
  160. ===============================================================================
  161. If you have Fink, the GNU flow above should work.  Otherwise,
  162. there is a Project Builder project in the top-level source
  163. directory to build libFLAC and the command-line utilities on
  164. Mac OS X.  In a terminal, cd to the top-level directory (the
  165. one that contains this README file) and type:
  166. pbxbuild -alltargets
  167. This will create everything and leave it in the build/ directory.
  168. Don't worry about the rest of the stuff that is in build/ or
  169. the stuff that was already there before building.
  170. The Project Builder project requires that you have libiconv and
  171. libogg in /sw, ala fink.  If you don't, you'll need to install
  172. them somewhere and change the path to them in the Library Paths
  173. section of several targets.
  174. It also assumes the CPU supports Altivec instructions.  If it does
  175. not, you will also have to add -DFLAC__NO_ASM to the CFLAGS in the
  176. libFLAC target.
  177. There currently is no install procedure; you will have to
  178. manually copy the tools to wherever you need them.
  179. ===============================================================================
  180. Note to embedded developers
  181. ===============================================================================
  182. libFLAC has grown larger over time as more functionality has been
  183. included, but much of it may be unnecessary for a particular embedded
  184. implementation.  Unused parts may be pruned by some simple editing of
  185. configure.in and src/libFLAC/Makefile.am; the following dependency
  186. graph shows which modules may be pruned without breaking things
  187. further down:
  188. file_encoder.h
  189. stream_encoder.h
  190. format.h
  191. file_decoder.h
  192. seekable_stream_decoder.h
  193. stream_decoder.h
  194. format.h
  195. metadata.h
  196. format.h
  197. There is a section dedicated to embedded use in the libFLAC API
  198. HTML documentation (see doc/html/api/index.html).