summaryrefslogtreecommitdiff
path: root/include/FLAC/all.h
diff options
context:
space:
mode:
authorJosh Coalson <jcoalson@users.sourceforce.net>2006-09-16 00:46:22 +0000
committerJosh Coalson <jcoalson@users.sourceforce.net>2006-09-16 00:46:22 +0000
commitd62eed4fa32b9229f341c6ae415f943977ce72f2 (patch)
tree781002747424add74d66bf609a3f916e4b59932a /include/FLAC/all.h
parent1d43e10f83bcd9189acd86915ab91a37191f38c4 (diff)
downloadflac-d62eed4fa32b9229f341c6ae415f943977ce72f2.tar.gz
minor comments
Diffstat (limited to 'include/FLAC/all.h')
-rw-r--r--include/FLAC/all.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/FLAC/all.h b/include/FLAC/all.h
index f94e99b3..97e44a82 100644
--- a/include/FLAC/all.h
+++ b/include/FLAC/all.h
@@ -134,16 +134,16 @@
* It is easiest to just describe the dependencies:
*
* - All modules depend on the \link flac_format Format \endlink module.
- * - The decoders and encoders are independent of each other.
- * - The metadata interface requires the file decoder.
- * - The decoder and encoder layers depend on the layers below them, but
- * not above them; e.g. the seekable stream decoder depends on the stream
- * decoder but not the file decoder
+ * - The decoders and encoders depend on the bitbuffer.
+ * - The decoder is independent of the encoder. The encoder uses the
+ * decoder because of the verify feature, but this can be removed if
+ * not needed.
+ * - The metadata interface requires the stream decoder.
*
* For example, if your application only requires the stream decoder, no
- * encoders, and no metadata interface, you can remove the seekable stream
- * decoder, file decoder, all encoders, and the metadata interface, which
- * will greatly reduce the size of the library.
+ * encoder, and no metadata interface, you can remove the stream encoder
+ * and the metadata interface, which will greatly reduce the size of the
+ * library.
*/
/** \defgroup porting Porting Guide for New Versions