diff options
Diffstat (limited to 'src/lib/util/flac.c')
-rw-r--r-- | src/lib/util/flac.c | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/src/lib/util/flac.c b/src/lib/util/flac.c index d2f576e637e..2e1e999977d 100644 --- a/src/lib/util/flac.c +++ b/src/lib/util/flac.c @@ -608,10 +608,17 @@ FLAC__StreamDecoderWriteStatus flac_decoder::write_callback(const ::FLAC__Frame return FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE; } - -//------------------------------------------------- -// error_callback - handle errors (ignore them) -//------------------------------------------------- +/** + * @fn void flac_decoder::error_callback_static(const FLAC__StreamDecoder *decoder, FLAC__StreamDecoderErrorStatus status, void *client_data) + * + * @brief ------------------------------------------------- + * error_callback - handle errors (ignore them) + * -------------------------------------------------. + * + * @param decoder The decoder. + * @param status The status. + * @param [in,out] client_data If non-null, information describing the client. + */ void flac_decoder::error_callback_static(const FLAC__StreamDecoder *decoder, FLAC__StreamDecoderErrorStatus status, void *client_data) { |