From 7464fec9fe7de666bae98966cdc89e867ace71dc Mon Sep 17 00:00:00 2001 From: Josh Coalson Date: Fri, 3 Nov 2006 15:50:19 +0000 Subject: [PATCH] minor comments --- include/FLAC/stream_decoder.h | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/include/FLAC/stream_decoder.h b/include/FLAC/stream_decoder.h index 41b78bec..c4675a2e 100644 --- a/include/FLAC/stream_decoder.h +++ b/include/FLAC/stream_decoder.h @@ -85,12 +85,11 @@ extern "C" { * - The program overrides the default settings using * FLAC__stream_decoder_set_*() functions. * - The program initializes the instance to validate the settings and - * prepare for decoding using FLAC__stream_decoder_init_stream() or - * FLAC__stream_decoder_init_FILE() or FLAC__stream_decoder_init_file() - * for native FLAC, or FLAC__stream_decoder_init_ogg_stream() or - * FLAC__stream_decoder_init_ogg_FILE() or - * FLAC__stream_decoder_init_ogg_file() for Ogg FLAC, depending on the - * nature of the input. + * prepare for decoding using + * - FLAC__stream_decoder_init_stream() or FLAC__stream_decoder_init_FILE() + * or FLAC__stream_decoder_init_file() for native FLAC, + * - FLAC__stream_decoder_init_ogg_stream() or FLAC__stream_decoder_init_ogg_FILE() + * or FLAC__stream_decoder_init_ogg_file() for Ogg FLAC * - The program calls the FLAC__stream_decoder_process_*() functions * to decode data, which subsequently calls the callbacks. * - The program finishes the decoding with FLAC__stream_decoder_finish(),