From d32b0dfb6709c9d8599edee408f26383c19bd887 Mon Sep 17 00:00:00 2001 From: Josh Coalson Date: Wed, 15 Jan 2003 03:16:26 +0000 Subject: [PATCH] minor verbiage --- doc/html/features.html | 2 +- src/test_libFLAC/metadata_manip.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/html/features.html b/doc/html/features.html index 288db266..71cdc3a7 100644 --- a/doc/html/features.html +++ b/doc/html/features.html @@ -120,7 +120,7 @@ Suitable for archiving: FLAC is an open format, and there is no generation loss if you need to convert your data to another format in the future. In addition to the frame CRCs and MD5 signature, flac has a verify option that decodes the encoded stream in parallel with the encoding process and compares the result to the original, aborting with an error if there is a mismatch.

  • - Convenient CD archiving: FLAC has a metadata block for storing a CD table of contents and all track and index points. For instance, you can rip a CD to a single file, then import the CD's extracted cue sheet while encoding to yield a single file representation of the entire CD. If your original CD is damaged, the cue sheet can be exported later in order to burn an exact copy. + Convenient CD archiving: FLAC has a "cue sheet" metadata block for storing a CD table of contents and all track and index points. For instance, you can rip a CD to a single file, then import the CD's extracted cue sheet while encoding to yield a single file representation of the entire CD. If your original CD is damaged, the cue sheet can be exported later in order to burn an exact copy.
  • Error resistant: Because of FLAC's framing, stream errors limit the damage to the frame in which the error occurred, typically a small fraction of a second worth of data. Contrast this with some other lossless codecs, in which a single error destroys the remainder of the stream. diff --git a/src/test_libFLAC/metadata_manip.c b/src/test_libFLAC/metadata_manip.c index 159205ba..99a9adab 100644 --- a/src/test_libFLAC/metadata_manip.c +++ b/src/test_libFLAC/metadata_manip.c @@ -522,7 +522,7 @@ static FLAC__bool test_level_1_() printf("testing FLAC__metadata_simple_iterator_set_block() on read-only file...\n"); if(!FLAC__metadata_simple_iterator_set_block(iterator, (FLAC__StreamMetadata*)99, false)) - printf("PASSED. FLAC__metadata_simple_iterator_set_block() returned false like it should\n"); + printf("OK: FLAC__metadata_simple_iterator_set_block() returned false like it should\n"); else return die_("FLAC__metadata_simple_iterator_set_block() returned true but shouldn't have");