minor comments

This commit is contained in:
Josh Coalson
2006-09-16 00:46:22 +00:00
parent 1d43e10f83
commit d62eed4fa3

View File

@@ -134,16 +134,16 @@
* It is easiest to just describe the dependencies: * It is easiest to just describe the dependencies:
* *
* - All modules depend on the \link flac_format Format \endlink module. * - All modules depend on the \link flac_format Format \endlink module.
* - The decoders and encoders are independent of each other. * - The decoders and encoders depend on the bitbuffer.
* - The metadata interface requires the file decoder. * - The decoder is independent of the encoder. The encoder uses the
* - The decoder and encoder layers depend on the layers below them, but * decoder because of the verify feature, but this can be removed if
* not above them; e.g. the seekable stream decoder depends on the stream * not needed.
* decoder but not the file decoder * - The metadata interface requires the stream decoder.
* *
* For example, if your application only requires the stream decoder, no * For example, if your application only requires the stream decoder, no
* encoders, and no metadata interface, you can remove the seekable stream * encoder, and no metadata interface, you can remove the stream encoder
* decoder, file decoder, all encoders, and the metadata interface, which * and the metadata interface, which will greatly reduce the size of the
* will greatly reduce the size of the library. * library.
*/ */
/** \defgroup porting Porting Guide for New Versions /** \defgroup porting Porting Guide for New Versions