* \ingroup flac
*
* \brief
- * This module describes the two decoder layers provided by libFLAC.
- *
- * libFLAC provides two ways of decoding FLAC streams. There is a @@@@@@frame decoder which decodes single frames at a time, and a stream decoder which decodes whole streams.
- *
- * @@@@@@TODO frame decoder
+ * This module describes the decoder layers provided by libFLAC.
*
* The stream decoder can be used decode complete streams either from the
* client via callbacks, or directly from a file, depending on how it is
* \ingroup flac
*
* \brief
- * This module describes the two encoder layers provided by libFLAC.
- *
- * libFLAC provides two ways of encoding FLAC streams. There is a @@@@@@frame encoder which encodes single frames at a time, and a stream encoder which encodes whole streams.
- *
- * @@@@@@TODO frame encoder
+ * This module describes the encoder layers provided by libFLAC.
*
* The stream encoder can be used encode complete streams either to the
* client via callbacks, or directly to a file, depending on how it is
void OggFLAC__ogg_encoder_aspect_finish(OggFLAC__OggEncoderAspect *aspect)
{
(void)ogg_stream_clear(&aspect->stream_state);
- /*@@@ what aobut the page? */
+ /*@@@ what about the page? */
}
void OggFLAC__ogg_encoder_aspect_set_serial_number(OggFLAC__OggEncoderAspect *aspect, long value)
#include <string.h> /* for memcpy() */
#include <sys/types.h> /* for off_t */
#if defined _MSC_VER || defined __MINGW32__
-/*@@@ [2G limit] hacks for MSVC6 */
+/*@@@@@@ [2G limit] hacks for MSVC6 */
#define fseeko fseek
#define ftello ftell
#endif
* will drop back to 0.
*/
encoder->private_->frames_written = max(encoder->private_->frames_written, current_frame+1);
- /*@@@ We would like to add an '&& samples > 0' to the if
+ /* We would like to add an '&& samples > 0' to the if
* clause here but currently because of the nature of our Ogg
* writing implementation, 'samples' is always 0 (see
* ogg_encoder_aspect.c). The downside is extra progress
* callbacks.
*/
- if(0 != encoder->private_->progress_callback /*@@@ && samples > 0 */)
+ if(0 != encoder->private_->progress_callback /* && samples > 0 */)
encoder->private_->progress_callback((FLAC__StreamEncoder*)encoder, encoder->private_->bytes_written, encoder->private_->samples_written, encoder->private_->frames_written, encoder->private_->total_frames_estimate, encoder->private_->client_data);
return FLAC__STREAM_ENCODER_WRITE_STATUS_OK;
}
unsigned i;
FLAC__bool ok = true;
- /*@@@ to die after first error, v--- add '&& ok' here */
+ /* to die after first error, v--- add '&& ok' here */
for(i = 0; i < options->num_files; i++)
ok &= do_major_operation_on_file(options->filenames[i], options);
FLAC__bool do_major_operation__append(FLAC__Metadata_Chain *chain, const CommandLineOptions *options)
{
(void) chain, (void) options;
- fprintf(stderr, "ERROR: --append not implemented yet\n"); /*@@@*/
+ fprintf(stderr, "ERROR: --append not implemented yet\n");
return false;
}