Chris@1: /* libFLAC - Free Lossless Audio Codec library Chris@1: * Copyright (C) 2000,2001,2002,2003,2004,2005,2006,2007 Josh Coalson Chris@1: * Chris@1: * Redistribution and use in source and binary forms, with or without Chris@1: * modification, are permitted provided that the following conditions Chris@1: * are met: Chris@1: * Chris@1: * - Redistributions of source code must retain the above copyright Chris@1: * notice, this list of conditions and the following disclaimer. Chris@1: * Chris@1: * - Redistributions in binary form must reproduce the above copyright Chris@1: * notice, this list of conditions and the following disclaimer in the Chris@1: * documentation and/or other materials provided with the distribution. Chris@1: * Chris@1: * - Neither the name of the Xiph.org Foundation nor the names of its Chris@1: * contributors may be used to endorse or promote products derived from Chris@1: * this software without specific prior written permission. Chris@1: * Chris@1: * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS Chris@1: * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT Chris@1: * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR Chris@1: * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR Chris@1: * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, Chris@1: * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, Chris@1: * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR Chris@1: * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF Chris@1: * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING Chris@1: * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS Chris@1: * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Chris@1: */ Chris@1: Chris@1: #ifndef FLAC__STREAM_DECODER_H Chris@1: #define FLAC__STREAM_DECODER_H Chris@1: Chris@1: #include /* for FILE */ Chris@1: #include "export.h" Chris@1: #include "format.h" Chris@1: Chris@1: #ifdef __cplusplus Chris@1: extern "C" { Chris@1: #endif Chris@1: Chris@1: Chris@1: /** \file include/FLAC/stream_decoder.h Chris@1: * Chris@1: * \brief Chris@1: * This module contains the functions which implement the stream Chris@1: * decoder. Chris@1: * Chris@1: * See the detailed documentation in the Chris@1: * \link flac_stream_decoder stream decoder \endlink module. Chris@1: */ Chris@1: Chris@1: /** \defgroup flac_decoder FLAC/ \*_decoder.h: decoder interfaces Chris@1: * \ingroup flac Chris@1: * Chris@1: * \brief Chris@1: * This module describes the decoder layers provided by libFLAC. Chris@1: * Chris@1: * The stream decoder can be used to decode complete streams either from Chris@1: * the client via callbacks, or directly from a file, depending on how Chris@1: * it is initialized. When decoding via callbacks, the client provides Chris@1: * callbacks for reading FLAC data and writing decoded samples, and Chris@1: * handling metadata and errors. If the client also supplies seek-related Chris@1: * callback, the decoder function for sample-accurate seeking within the Chris@1: * FLAC input is also available. When decoding from a file, the client Chris@1: * needs only supply a filename or open \c FILE* and write/metadata/error Chris@1: * callbacks; the rest of the callbacks are supplied internally. For more Chris@1: * info see the \link flac_stream_decoder stream decoder \endlink module. Chris@1: */ Chris@1: Chris@1: /** \defgroup flac_stream_decoder FLAC/stream_decoder.h: stream decoder interface Chris@1: * \ingroup flac_decoder Chris@1: * Chris@1: * \brief Chris@1: * This module contains the functions which implement the stream Chris@1: * decoder. Chris@1: * Chris@1: * The stream decoder can decode native FLAC, and optionally Ogg FLAC Chris@1: * (check FLAC_API_SUPPORTS_OGG_FLAC) streams and files. Chris@1: * Chris@1: * The basic usage of this decoder is as follows: Chris@1: * - The program creates an instance of a decoder using Chris@1: * FLAC__stream_decoder_new(). Chris@1: * - The program overrides the default settings using Chris@1: * FLAC__stream_decoder_set_*() functions. Chris@1: * - The program initializes the instance to validate the settings and Chris@1: * prepare for decoding using Chris@1: * - FLAC__stream_decoder_init_stream() or FLAC__stream_decoder_init_FILE() Chris@1: * or FLAC__stream_decoder_init_file() for native FLAC, Chris@1: * - FLAC__stream_decoder_init_ogg_stream() or FLAC__stream_decoder_init_ogg_FILE() Chris@1: * or FLAC__stream_decoder_init_ogg_file() for Ogg FLAC Chris@1: * - The program calls the FLAC__stream_decoder_process_*() functions Chris@1: * to decode data, which subsequently calls the callbacks. Chris@1: * - The program finishes the decoding with FLAC__stream_decoder_finish(), Chris@1: * which flushes the input and output and resets the decoder to the Chris@1: * uninitialized state. Chris@1: * - The instance may be used again or deleted with Chris@1: * FLAC__stream_decoder_delete(). Chris@1: * Chris@1: * In more detail, the program will create a new instance by calling Chris@1: * FLAC__stream_decoder_new(), then call FLAC__stream_decoder_set_*() Chris@1: * functions to override the default decoder options, and call Chris@1: * one of the FLAC__stream_decoder_init_*() functions. Chris@1: * Chris@1: * There are three initialization functions for native FLAC, one for Chris@1: * setting up the decoder to decode FLAC data from the client via Chris@1: * callbacks, and two for decoding directly from a FLAC file. Chris@1: * Chris@1: * For decoding via callbacks, use FLAC__stream_decoder_init_stream(). Chris@1: * You must also supply several callbacks for handling I/O. Some (like Chris@1: * seeking) are optional, depending on the capabilities of the input. Chris@1: * Chris@1: * For decoding directly from a file, use FLAC__stream_decoder_init_FILE() Chris@1: * or FLAC__stream_decoder_init_file(). Then you must only supply an open Chris@1: * \c FILE* or filename and fewer callbacks; the decoder will handle Chris@1: * the other callbacks internally. Chris@1: * Chris@1: * There are three similarly-named init functions for decoding from Ogg Chris@1: * FLAC streams. Check \c FLAC_API_SUPPORTS_OGG_FLAC to find out if the Chris@1: * library has been built with Ogg support. Chris@1: * Chris@1: * Once the decoder is initialized, your program will call one of several Chris@1: * functions to start the decoding process: Chris@1: * Chris@1: * - FLAC__stream_decoder_process_single() - Tells the decoder to process at Chris@1: * most one metadata block or audio frame and return, calling either the Chris@1: * metadata callback or write callback, respectively, once. If the decoder Chris@1: * loses sync it will return with only the error callback being called. Chris@1: * - FLAC__stream_decoder_process_until_end_of_metadata() - Tells the decoder Chris@1: * to process the stream from the current location and stop upon reaching Chris@1: * the first audio frame. The client will get one metadata, write, or error Chris@1: * callback per metadata block, audio frame, or sync error, respectively. Chris@1: * - FLAC__stream_decoder_process_until_end_of_stream() - Tells the decoder Chris@1: * to process the stream from the current location until the read callback Chris@1: * returns FLAC__STREAM_DECODER_READ_STATUS_END_OF_STREAM or Chris@1: * FLAC__STREAM_DECODER_READ_STATUS_ABORT. The client will get one metadata, Chris@1: * write, or error callback per metadata block, audio frame, or sync error, Chris@1: * respectively. Chris@1: * Chris@1: * When the decoder has finished decoding (normally or through an abort), Chris@1: * the instance is finished by calling FLAC__stream_decoder_finish(), which Chris@1: * ensures the decoder is in the correct state and frees memory. Then the Chris@1: * instance may be deleted with FLAC__stream_decoder_delete() or initialized Chris@1: * again to decode another stream. Chris@1: * Chris@1: * Seeking is exposed through the FLAC__stream_decoder_seek_absolute() method. Chris@1: * At any point after the stream decoder has been initialized, the client can Chris@1: * call this function to seek to an exact sample within the stream. Chris@1: * Subsequently, the first time the write callback is called it will be Chris@1: * passed a (possibly partial) block starting at that sample. Chris@1: * Chris@1: * If the client cannot seek via the callback interface provided, but still Chris@1: * has another way of seeking, it can flush the decoder using Chris@1: * FLAC__stream_decoder_flush() and start feeding data from the new position Chris@1: * through the read callback. Chris@1: * Chris@1: * The stream decoder also provides MD5 signature checking. If this is Chris@1: * turned on before initialization, FLAC__stream_decoder_finish() will Chris@1: * report when the decoded MD5 signature does not match the one stored Chris@1: * in the STREAMINFO block. MD5 checking is automatically turned off Chris@1: * (until the next FLAC__stream_decoder_reset()) if there is no signature Chris@1: * in the STREAMINFO block or when a seek is attempted. Chris@1: * Chris@1: * The FLAC__stream_decoder_set_metadata_*() functions deserve special Chris@1: * attention. By default, the decoder only calls the metadata_callback for Chris@1: * the STREAMINFO block. These functions allow you to tell the decoder Chris@1: * explicitly which blocks to parse and return via the metadata_callback Chris@1: * and/or which to skip. Use a FLAC__stream_decoder_set_metadata_respond_all(), Chris@1: * FLAC__stream_decoder_set_metadata_ignore() ... or FLAC__stream_decoder_set_metadata_ignore_all(), Chris@1: * FLAC__stream_decoder_set_metadata_respond() ... sequence to exactly specify Chris@1: * which blocks to return. Remember that metadata blocks can potentially Chris@1: * be big (for example, cover art) so filtering out the ones you don't Chris@1: * use can reduce the memory requirements of the decoder. Also note the Chris@1: * special forms FLAC__stream_decoder_set_metadata_respond_application(id) Chris@1: * and FLAC__stream_decoder_set_metadata_ignore_application(id) for Chris@1: * filtering APPLICATION blocks based on the application ID. Chris@1: * Chris@1: * STREAMINFO and SEEKTABLE blocks are always parsed and used internally, but Chris@1: * they still can legally be filtered from the metadata_callback. Chris@1: * Chris@1: * \note Chris@1: * The "set" functions may only be called when the decoder is in the Chris@1: * state FLAC__STREAM_DECODER_UNINITIALIZED, i.e. after Chris@1: * FLAC__stream_decoder_new() or FLAC__stream_decoder_finish(), but Chris@1: * before FLAC__stream_decoder_init_*(). If this is the case they will Chris@1: * return \c true, otherwise \c false. Chris@1: * Chris@1: * \note Chris@1: * FLAC__stream_decoder_finish() resets all settings to the constructor Chris@1: * defaults, including the callbacks. Chris@1: * Chris@1: * \{ Chris@1: */ Chris@1: Chris@1: Chris@1: /** State values for a FLAC__StreamDecoder Chris@1: * Chris@1: * The decoder's state can be obtained by calling FLAC__stream_decoder_get_state(). Chris@1: */ Chris@1: typedef enum { Chris@1: Chris@1: FLAC__STREAM_DECODER_SEARCH_FOR_METADATA = 0, Chris@1: /**< The decoder is ready to search for metadata. */ Chris@1: Chris@1: FLAC__STREAM_DECODER_READ_METADATA, Chris@1: /**< The decoder is ready to or is in the process of reading metadata. */ Chris@1: Chris@1: FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC, Chris@1: /**< The decoder is ready to or is in the process of searching for the Chris@1: * frame sync code. Chris@1: */ Chris@1: Chris@1: FLAC__STREAM_DECODER_READ_FRAME, Chris@1: /**< The decoder is ready to or is in the process of reading a frame. */ Chris@1: Chris@1: FLAC__STREAM_DECODER_END_OF_STREAM, Chris@1: /**< The decoder has reached the end of the stream. */ Chris@1: Chris@1: FLAC__STREAM_DECODER_OGG_ERROR, Chris@1: /**< An error occurred in the underlying Ogg layer. */ Chris@1: Chris@1: FLAC__STREAM_DECODER_SEEK_ERROR, Chris@1: /**< An error occurred while seeking. The decoder must be flushed Chris@1: * with FLAC__stream_decoder_flush() or reset with Chris@1: * FLAC__stream_decoder_reset() before decoding can continue. Chris@1: */ Chris@1: Chris@1: FLAC__STREAM_DECODER_ABORTED, Chris@1: /**< The decoder was aborted by the read callback. */ Chris@1: Chris@1: FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR, Chris@1: /**< An error occurred allocating memory. The decoder is in an invalid Chris@1: * state and can no longer be used. Chris@1: */ Chris@1: Chris@1: FLAC__STREAM_DECODER_UNINITIALIZED Chris@1: /**< The decoder is in the uninitialized state; one of the Chris@1: * FLAC__stream_decoder_init_*() functions must be called before samples Chris@1: * can be processed. Chris@1: */ Chris@1: Chris@1: } FLAC__StreamDecoderState; Chris@1: Chris@1: /** Maps a FLAC__StreamDecoderState to a C string. Chris@1: * Chris@1: * Using a FLAC__StreamDecoderState as the index to this array Chris@1: * will give the string equivalent. The contents should not be modified. Chris@1: */ Chris@1: extern FLAC_API const char * const FLAC__StreamDecoderStateString[]; Chris@1: Chris@1: Chris@1: /** Possible return values for the FLAC__stream_decoder_init_*() functions. Chris@1: */ Chris@1: typedef enum { Chris@1: Chris@1: FLAC__STREAM_DECODER_INIT_STATUS_OK = 0, Chris@1: /**< Initialization was successful. */ Chris@1: Chris@1: FLAC__STREAM_DECODER_INIT_STATUS_UNSUPPORTED_CONTAINER, Chris@1: /**< The library was not compiled with support for the given container Chris@1: * format. Chris@1: */ Chris@1: Chris@1: FLAC__STREAM_DECODER_INIT_STATUS_INVALID_CALLBACKS, Chris@1: /**< A required callback was not supplied. */ Chris@1: Chris@1: FLAC__STREAM_DECODER_INIT_STATUS_MEMORY_ALLOCATION_ERROR, Chris@1: /**< An error occurred allocating memory. */ Chris@1: Chris@1: FLAC__STREAM_DECODER_INIT_STATUS_ERROR_OPENING_FILE, Chris@1: /**< fopen() failed in FLAC__stream_decoder_init_file() or Chris@1: * FLAC__stream_decoder_init_ogg_file(). */ Chris@1: Chris@1: FLAC__STREAM_DECODER_INIT_STATUS_ALREADY_INITIALIZED Chris@1: /**< FLAC__stream_decoder_init_*() was called when the decoder was Chris@1: * already initialized, usually because Chris@1: * FLAC__stream_decoder_finish() was not called. Chris@1: */ Chris@1: Chris@1: } FLAC__StreamDecoderInitStatus; Chris@1: Chris@1: /** Maps a FLAC__StreamDecoderInitStatus to a C string. Chris@1: * Chris@1: * Using a FLAC__StreamDecoderInitStatus as the index to this array Chris@1: * will give the string equivalent. The contents should not be modified. Chris@1: */ Chris@1: extern FLAC_API const char * const FLAC__StreamDecoderInitStatusString[]; Chris@1: Chris@1: Chris@1: /** Return values for the FLAC__StreamDecoder read callback. Chris@1: */ Chris@1: typedef enum { Chris@1: Chris@1: FLAC__STREAM_DECODER_READ_STATUS_CONTINUE, Chris@1: /**< The read was OK and decoding can continue. */ Chris@1: Chris@1: FLAC__STREAM_DECODER_READ_STATUS_END_OF_STREAM, Chris@1: /**< The read was attempted while at the end of the stream. Note that Chris@1: * the client must only return this value when the read callback was Chris@1: * called when already at the end of the stream. Otherwise, if the read Chris@1: * itself moves to the end of the stream, the client should still return Chris@1: * the data and \c FLAC__STREAM_DECODER_READ_STATUS_CONTINUE, and then on Chris@1: * the next read callback it should return Chris@1: * \c FLAC__STREAM_DECODER_READ_STATUS_END_OF_STREAM with a byte count Chris@1: * of \c 0. Chris@1: */ Chris@1: Chris@1: FLAC__STREAM_DECODER_READ_STATUS_ABORT Chris@1: /**< An unrecoverable error occurred. The decoder will return from the process call. */ Chris@1: Chris@1: } FLAC__StreamDecoderReadStatus; Chris@1: Chris@1: /** Maps a FLAC__StreamDecoderReadStatus to a C string. Chris@1: * Chris@1: * Using a FLAC__StreamDecoderReadStatus as the index to this array Chris@1: * will give the string equivalent. The contents should not be modified. Chris@1: */ Chris@1: extern FLAC_API const char * const FLAC__StreamDecoderReadStatusString[]; Chris@1: Chris@1: Chris@1: /** Return values for the FLAC__StreamDecoder seek callback. Chris@1: */ Chris@1: typedef enum { Chris@1: Chris@1: FLAC__STREAM_DECODER_SEEK_STATUS_OK, Chris@1: /**< The seek was OK and decoding can continue. */ Chris@1: Chris@1: FLAC__STREAM_DECODER_SEEK_STATUS_ERROR, Chris@1: /**< An unrecoverable error occurred. The decoder will return from the process call. */ Chris@1: Chris@1: FLAC__STREAM_DECODER_SEEK_STATUS_UNSUPPORTED Chris@1: /**< Client does not support seeking. */ Chris@1: Chris@1: } FLAC__StreamDecoderSeekStatus; Chris@1: Chris@1: /** Maps a FLAC__StreamDecoderSeekStatus to a C string. Chris@1: * Chris@1: * Using a FLAC__StreamDecoderSeekStatus as the index to this array Chris@1: * will give the string equivalent. The contents should not be modified. Chris@1: */ Chris@1: extern FLAC_API const char * const FLAC__StreamDecoderSeekStatusString[]; Chris@1: Chris@1: Chris@1: /** Return values for the FLAC__StreamDecoder tell callback. Chris@1: */ Chris@1: typedef enum { Chris@1: Chris@1: FLAC__STREAM_DECODER_TELL_STATUS_OK, Chris@1: /**< The tell was OK and decoding can continue. */ Chris@1: Chris@1: FLAC__STREAM_DECODER_TELL_STATUS_ERROR, Chris@1: /**< An unrecoverable error occurred. The decoder will return from the process call. */ Chris@1: Chris@1: FLAC__STREAM_DECODER_TELL_STATUS_UNSUPPORTED Chris@1: /**< Client does not support telling the position. */ Chris@1: Chris@1: } FLAC__StreamDecoderTellStatus; Chris@1: Chris@1: /** Maps a FLAC__StreamDecoderTellStatus to a C string. Chris@1: * Chris@1: * Using a FLAC__StreamDecoderTellStatus as the index to this array Chris@1: * will give the string equivalent. The contents should not be modified. Chris@1: */ Chris@1: extern FLAC_API const char * const FLAC__StreamDecoderTellStatusString[]; Chris@1: Chris@1: Chris@1: /** Return values for the FLAC__StreamDecoder length callback. Chris@1: */ Chris@1: typedef enum { Chris@1: Chris@1: FLAC__STREAM_DECODER_LENGTH_STATUS_OK, Chris@1: /**< The length call was OK and decoding can continue. */ Chris@1: Chris@1: FLAC__STREAM_DECODER_LENGTH_STATUS_ERROR, Chris@1: /**< An unrecoverable error occurred. The decoder will return from the process call. */ Chris@1: Chris@1: FLAC__STREAM_DECODER_LENGTH_STATUS_UNSUPPORTED Chris@1: /**< Client does not support reporting the length. */ Chris@1: Chris@1: } FLAC__StreamDecoderLengthStatus; Chris@1: Chris@1: /** Maps a FLAC__StreamDecoderLengthStatus to a C string. Chris@1: * Chris@1: * Using a FLAC__StreamDecoderLengthStatus as the index to this array Chris@1: * will give the string equivalent. The contents should not be modified. Chris@1: */ Chris@1: extern FLAC_API const char * const FLAC__StreamDecoderLengthStatusString[]; Chris@1: Chris@1: Chris@1: /** Return values for the FLAC__StreamDecoder write callback. Chris@1: */ Chris@1: typedef enum { Chris@1: Chris@1: FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE, Chris@1: /**< The write was OK and decoding can continue. */ Chris@1: Chris@1: FLAC__STREAM_DECODER_WRITE_STATUS_ABORT Chris@1: /**< An unrecoverable error occurred. The decoder will return from the process call. */ Chris@1: Chris@1: } FLAC__StreamDecoderWriteStatus; Chris@1: Chris@1: /** Maps a FLAC__StreamDecoderWriteStatus to a C string. Chris@1: * Chris@1: * Using a FLAC__StreamDecoderWriteStatus as the index to this array Chris@1: * will give the string equivalent. The contents should not be modified. Chris@1: */ Chris@1: extern FLAC_API const char * const FLAC__StreamDecoderWriteStatusString[]; Chris@1: Chris@1: Chris@1: /** Possible values passed back to the FLAC__StreamDecoder error callback. Chris@1: * \c FLAC__STREAM_DECODER_ERROR_STATUS_LOST_SYNC is the generic catch- Chris@1: * all. The rest could be caused by bad sync (false synchronization on Chris@1: * data that is not the start of a frame) or corrupted data. The error Chris@1: * itself is the decoder's best guess at what happened assuming a correct Chris@1: * sync. For example \c FLAC__STREAM_DECODER_ERROR_STATUS_BAD_HEADER Chris@1: * could be caused by a correct sync on the start of a frame, but some Chris@1: * data in the frame header was corrupted. Or it could be the result of Chris@1: * syncing on a point the stream that looked like the starting of a frame Chris@1: * but was not. \c FLAC__STREAM_DECODER_ERROR_STATUS_UNPARSEABLE_STREAM Chris@1: * could be because the decoder encountered a valid frame made by a future Chris@1: * version of the encoder which it cannot parse, or because of a false Chris@1: * sync making it appear as though an encountered frame was generated by Chris@1: * a future encoder. Chris@1: */ Chris@1: typedef enum { Chris@1: Chris@1: FLAC__STREAM_DECODER_ERROR_STATUS_LOST_SYNC, Chris@1: /**< An error in the stream caused the decoder to lose synchronization. */ Chris@1: Chris@1: FLAC__STREAM_DECODER_ERROR_STATUS_BAD_HEADER, Chris@1: /**< The decoder encountered a corrupted frame header. */ Chris@1: Chris@1: FLAC__STREAM_DECODER_ERROR_STATUS_FRAME_CRC_MISMATCH, Chris@1: /**< The frame's data did not match the CRC in the footer. */ Chris@1: Chris@1: FLAC__STREAM_DECODER_ERROR_STATUS_UNPARSEABLE_STREAM Chris@1: /**< The decoder encountered reserved fields in use in the stream. */ Chris@1: Chris@1: } FLAC__StreamDecoderErrorStatus; Chris@1: Chris@1: /** Maps a FLAC__StreamDecoderErrorStatus to a C string. Chris@1: * Chris@1: * Using a FLAC__StreamDecoderErrorStatus as the index to this array Chris@1: * will give the string equivalent. The contents should not be modified. Chris@1: */ Chris@1: extern FLAC_API const char * const FLAC__StreamDecoderErrorStatusString[]; Chris@1: Chris@1: Chris@1: /*********************************************************************** Chris@1: * Chris@1: * class FLAC__StreamDecoder Chris@1: * Chris@1: ***********************************************************************/ Chris@1: Chris@1: struct FLAC__StreamDecoderProtected; Chris@1: struct FLAC__StreamDecoderPrivate; Chris@1: /** The opaque structure definition for the stream decoder type. Chris@1: * See the \link flac_stream_decoder stream decoder module \endlink Chris@1: * for a detailed description. Chris@1: */ Chris@1: typedef struct { Chris@1: struct FLAC__StreamDecoderProtected *protected_; /* avoid the C++ keyword 'protected' */ Chris@1: struct FLAC__StreamDecoderPrivate *private_; /* avoid the C++ keyword 'private' */ Chris@1: } FLAC__StreamDecoder; Chris@1: Chris@1: /** Signature for the read callback. Chris@1: * Chris@1: * A function pointer matching this signature must be passed to Chris@1: * FLAC__stream_decoder_init*_stream(). The supplied function will be Chris@1: * called when the decoder needs more input data. The address of the Chris@1: * buffer to be filled is supplied, along with the number of bytes the Chris@1: * buffer can hold. The callback may choose to supply less data and Chris@1: * modify the byte count but must be careful not to overflow the buffer. Chris@1: * The callback then returns a status code chosen from Chris@1: * FLAC__StreamDecoderReadStatus. Chris@1: * Chris@1: * Here is an example of a read callback for stdio streams: Chris@1: * \code Chris@1: * FLAC__StreamDecoderReadStatus read_cb(const FLAC__StreamDecoder *decoder, FLAC__byte buffer[], size_t *bytes, void *client_data) Chris@1: * { Chris@1: * FILE *file = ((MyClientData*)client_data)->file; Chris@1: * if(*bytes > 0) { Chris@1: * *bytes = fread(buffer, sizeof(FLAC__byte), *bytes, file); Chris@1: * if(ferror(file)) Chris@1: * return FLAC__STREAM_DECODER_READ_STATUS_ABORT; Chris@1: * else if(*bytes == 0) Chris@1: * return FLAC__STREAM_DECODER_READ_STATUS_END_OF_STREAM; Chris@1: * else Chris@1: * return FLAC__STREAM_DECODER_READ_STATUS_CONTINUE; Chris@1: * } Chris@1: * else Chris@1: * return FLAC__STREAM_DECODER_READ_STATUS_ABORT; Chris@1: * } Chris@1: * \endcode Chris@1: * Chris@1: * \note In general, FLAC__StreamDecoder functions which change the Chris@1: * state should not be called on the \a decoder while in the callback. Chris@1: * Chris@1: * \param decoder The decoder instance calling the callback. Chris@1: * \param buffer A pointer to a location for the callee to store Chris@1: * data to be decoded. Chris@1: * \param bytes A pointer to the size of the buffer. On entry Chris@1: * to the callback, it contains the maximum number Chris@1: * of bytes that may be stored in \a buffer. The Chris@1: * callee must set it to the actual number of bytes Chris@1: * stored (0 in case of error or end-of-stream) before Chris@1: * returning. Chris@1: * \param client_data The callee's client data set through Chris@1: * FLAC__stream_decoder_init_*(). Chris@1: * \retval FLAC__StreamDecoderReadStatus Chris@1: * The callee's return status. Note that the callback should return Chris@1: * \c FLAC__STREAM_DECODER_READ_STATUS_END_OF_STREAM if and only if Chris@1: * zero bytes were read and there is no more data to be read. Chris@1: */ Chris@1: typedef FLAC__StreamDecoderReadStatus (*FLAC__StreamDecoderReadCallback)(const FLAC__StreamDecoder *decoder, FLAC__byte buffer[], size_t *bytes, void *client_data); Chris@1: Chris@1: /** Signature for the seek callback. Chris@1: * Chris@1: * A function pointer matching this signature may be passed to Chris@1: * FLAC__stream_decoder_init*_stream(). The supplied function will be Chris@1: * called when the decoder needs to seek the input stream. The decoder Chris@1: * will pass the absolute byte offset to seek to, 0 meaning the Chris@1: * beginning of the stream. Chris@1: * Chris@1: * Here is an example of a seek callback for stdio streams: Chris@1: * \code Chris@1: * FLAC__StreamDecoderSeekStatus seek_cb(const FLAC__StreamDecoder *decoder, FLAC__uint64 absolute_byte_offset, void *client_data) Chris@1: * { Chris@1: * FILE *file = ((MyClientData*)client_data)->file; Chris@1: * if(file == stdin) Chris@1: * return FLAC__STREAM_DECODER_SEEK_STATUS_UNSUPPORTED; Chris@1: * else if(fseeko(file, (off_t)absolute_byte_offset, SEEK_SET) < 0) Chris@1: * return FLAC__STREAM_DECODER_SEEK_STATUS_ERROR; Chris@1: * else Chris@1: * return FLAC__STREAM_DECODER_SEEK_STATUS_OK; Chris@1: * } Chris@1: * \endcode Chris@1: * Chris@1: * \note In general, FLAC__StreamDecoder functions which change the Chris@1: * state should not be called on the \a decoder while in the callback. Chris@1: * Chris@1: * \param decoder The decoder instance calling the callback. Chris@1: * \param absolute_byte_offset The offset from the beginning of the stream Chris@1: * to seek to. Chris@1: * \param client_data The callee's client data set through Chris@1: * FLAC__stream_decoder_init_*(). Chris@1: * \retval FLAC__StreamDecoderSeekStatus Chris@1: * The callee's return status. Chris@1: */ Chris@1: typedef FLAC__StreamDecoderSeekStatus (*FLAC__StreamDecoderSeekCallback)(const FLAC__StreamDecoder *decoder, FLAC__uint64 absolute_byte_offset, void *client_data); Chris@1: Chris@1: /** Signature for the tell callback. Chris@1: * Chris@1: * A function pointer matching this signature may be passed to Chris@1: * FLAC__stream_decoder_init*_stream(). The supplied function will be Chris@1: * called when the decoder wants to know the current position of the Chris@1: * stream. The callback should return the byte offset from the Chris@1: * beginning of the stream. Chris@1: * Chris@1: * Here is an example of a tell callback for stdio streams: Chris@1: * \code Chris@1: * FLAC__StreamDecoderTellStatus tell_cb(const FLAC__StreamDecoder *decoder, FLAC__uint64 *absolute_byte_offset, void *client_data) Chris@1: * { Chris@1: * FILE *file = ((MyClientData*)client_data)->file; Chris@1: * off_t pos; Chris@1: * if(file == stdin) Chris@1: * return FLAC__STREAM_DECODER_TELL_STATUS_UNSUPPORTED; Chris@1: * else if((pos = ftello(file)) < 0) Chris@1: * return FLAC__STREAM_DECODER_TELL_STATUS_ERROR; Chris@1: * else { Chris@1: * *absolute_byte_offset = (FLAC__uint64)pos; Chris@1: * return FLAC__STREAM_DECODER_TELL_STATUS_OK; Chris@1: * } Chris@1: * } Chris@1: * \endcode Chris@1: * Chris@1: * \note In general, FLAC__StreamDecoder functions which change the Chris@1: * state should not be called on the \a decoder while in the callback. Chris@1: * Chris@1: * \param decoder The decoder instance calling the callback. Chris@1: * \param absolute_byte_offset A pointer to storage for the current offset Chris@1: * from the beginning of the stream. Chris@1: * \param client_data The callee's client data set through Chris@1: * FLAC__stream_decoder_init_*(). Chris@1: * \retval FLAC__StreamDecoderTellStatus Chris@1: * The callee's return status. Chris@1: */ Chris@1: typedef FLAC__StreamDecoderTellStatus (*FLAC__StreamDecoderTellCallback)(const FLAC__StreamDecoder *decoder, FLAC__uint64 *absolute_byte_offset, void *client_data); Chris@1: Chris@1: /** Signature for the length callback. Chris@1: * Chris@1: * A function pointer matching this signature may be passed to Chris@1: * FLAC__stream_decoder_init*_stream(). The supplied function will be Chris@1: * called when the decoder wants to know the total length of the stream Chris@1: * in bytes. Chris@1: * Chris@1: * Here is an example of a length callback for stdio streams: Chris@1: * \code Chris@1: * FLAC__StreamDecoderLengthStatus length_cb(const FLAC__StreamDecoder *decoder, FLAC__uint64 *stream_length, void *client_data) Chris@1: * { Chris@1: * FILE *file = ((MyClientData*)client_data)->file; Chris@1: * struct stat filestats; Chris@1: * Chris@1: * if(file == stdin) Chris@1: * return FLAC__STREAM_DECODER_LENGTH_STATUS_UNSUPPORTED; Chris@1: * else if(fstat(fileno(file), &filestats) != 0) Chris@1: * return FLAC__STREAM_DECODER_LENGTH_STATUS_ERROR; Chris@1: * else { Chris@1: * *stream_length = (FLAC__uint64)filestats.st_size; Chris@1: * return FLAC__STREAM_DECODER_LENGTH_STATUS_OK; Chris@1: * } Chris@1: * } Chris@1: * \endcode Chris@1: * Chris@1: * \note In general, FLAC__StreamDecoder functions which change the Chris@1: * state should not be called on the \a decoder while in the callback. Chris@1: * Chris@1: * \param decoder The decoder instance calling the callback. Chris@1: * \param stream_length A pointer to storage for the length of the stream Chris@1: * in bytes. Chris@1: * \param client_data The callee's client data set through Chris@1: * FLAC__stream_decoder_init_*(). Chris@1: * \retval FLAC__StreamDecoderLengthStatus Chris@1: * The callee's return status. Chris@1: */ Chris@1: typedef FLAC__StreamDecoderLengthStatus (*FLAC__StreamDecoderLengthCallback)(const FLAC__StreamDecoder *decoder, FLAC__uint64 *stream_length, void *client_data); Chris@1: Chris@1: /** Signature for the EOF callback. Chris@1: * Chris@1: * A function pointer matching this signature may be passed to Chris@1: * FLAC__stream_decoder_init*_stream(). The supplied function will be Chris@1: * called when the decoder needs to know if the end of the stream has Chris@1: * been reached. Chris@1: * Chris@1: * Here is an example of a EOF callback for stdio streams: Chris@1: * FLAC__bool eof_cb(const FLAC__StreamDecoder *decoder, void *client_data) Chris@1: * \code Chris@1: * { Chris@1: * FILE *file = ((MyClientData*)client_data)->file; Chris@1: * return feof(file)? true : false; Chris@1: * } Chris@1: * \endcode Chris@1: * Chris@1: * \note In general, FLAC__StreamDecoder functions which change the Chris@1: * state should not be called on the \a decoder while in the callback. Chris@1: * Chris@1: * \param decoder The decoder instance calling the callback. Chris@1: * \param client_data The callee's client data set through Chris@1: * FLAC__stream_decoder_init_*(). Chris@1: * \retval FLAC__bool Chris@1: * \c true if the currently at the end of the stream, else \c false. Chris@1: */ Chris@1: typedef FLAC__bool (*FLAC__StreamDecoderEofCallback)(const FLAC__StreamDecoder *decoder, void *client_data); Chris@1: Chris@1: /** Signature for the write callback. Chris@1: * Chris@1: * A function pointer matching this signature must be passed to one of Chris@1: * the FLAC__stream_decoder_init_*() functions. Chris@1: * The supplied function will be called when the decoder has decoded a Chris@1: * single audio frame. The decoder will pass the frame metadata as well Chris@1: * as an array of pointers (one for each channel) pointing to the Chris@1: * decoded audio. Chris@1: * Chris@1: * \note In general, FLAC__StreamDecoder functions which change the Chris@1: * state should not be called on the \a decoder while in the callback. Chris@1: * Chris@1: * \param decoder The decoder instance calling the callback. Chris@1: * \param frame The description of the decoded frame. See Chris@1: * FLAC__Frame. Chris@1: * \param buffer An array of pointers to decoded channels of data. Chris@1: * Each pointer will point to an array of signed Chris@1: * samples of length \a frame->header.blocksize. Chris@1: * Channels will be ordered according to the FLAC Chris@1: * specification; see the documentation for the Chris@1: * frame header. Chris@1: * \param client_data The callee's client data set through Chris@1: * FLAC__stream_decoder_init_*(). Chris@1: * \retval FLAC__StreamDecoderWriteStatus Chris@1: * The callee's return status. Chris@1: */ Chris@1: typedef FLAC__StreamDecoderWriteStatus (*FLAC__StreamDecoderWriteCallback)(const FLAC__StreamDecoder *decoder, const FLAC__Frame *frame, const FLAC__int32 * const buffer[], void *client_data); Chris@1: Chris@1: /** Signature for the metadata callback. Chris@1: * Chris@1: * A function pointer matching this signature must be passed to one of Chris@1: * the FLAC__stream_decoder_init_*() functions. Chris@1: * The supplied function will be called when the decoder has decoded a Chris@1: * metadata block. In a valid FLAC file there will always be one Chris@1: * \c STREAMINFO block, followed by zero or more other metadata blocks. Chris@1: * These will be supplied by the decoder in the same order as they Chris@1: * appear in the stream and always before the first audio frame (i.e. Chris@1: * write callback). The metadata block that is passed in must not be Chris@1: * modified, and it doesn't live beyond the callback, so you should make Chris@1: * a copy of it with FLAC__metadata_object_clone() if you will need it Chris@1: * elsewhere. Since metadata blocks can potentially be large, by Chris@1: * default the decoder only calls the metadata callback for the Chris@1: * \c STREAMINFO block; you can instruct the decoder to pass or filter Chris@1: * other blocks with FLAC__stream_decoder_set_metadata_*() calls. Chris@1: * Chris@1: * \note In general, FLAC__StreamDecoder functions which change the Chris@1: * state should not be called on the \a decoder while in the callback. Chris@1: * Chris@1: * \param decoder The decoder instance calling the callback. Chris@1: * \param metadata The decoded metadata block. Chris@1: * \param client_data The callee's client data set through Chris@1: * FLAC__stream_decoder_init_*(). Chris@1: */ Chris@1: typedef void (*FLAC__StreamDecoderMetadataCallback)(const FLAC__StreamDecoder *decoder, const FLAC__StreamMetadata *metadata, void *client_data); Chris@1: Chris@1: /** Signature for the error callback. Chris@1: * Chris@1: * A function pointer matching this signature must be passed to one of Chris@1: * the FLAC__stream_decoder_init_*() functions. Chris@1: * The supplied function will be called whenever an error occurs during Chris@1: * decoding. Chris@1: * Chris@1: * \note In general, FLAC__StreamDecoder functions which change the Chris@1: * state should not be called on the \a decoder while in the callback. Chris@1: * Chris@1: * \param decoder The decoder instance calling the callback. Chris@1: * \param status The error encountered by the decoder. Chris@1: * \param client_data The callee's client data set through Chris@1: * FLAC__stream_decoder_init_*(). Chris@1: */ Chris@1: typedef void (*FLAC__StreamDecoderErrorCallback)(const FLAC__StreamDecoder *decoder, FLAC__StreamDecoderErrorStatus status, void *client_data); Chris@1: Chris@1: Chris@1: /*********************************************************************** Chris@1: * Chris@1: * Class constructor/destructor Chris@1: * Chris@1: ***********************************************************************/ Chris@1: Chris@1: /** Create a new stream decoder instance. The instance is created with Chris@1: * default settings; see the individual FLAC__stream_decoder_set_*() Chris@1: * functions for each setting's default. Chris@1: * Chris@1: * \retval FLAC__StreamDecoder* Chris@1: * \c NULL if there was an error allocating memory, else the new instance. Chris@1: */ Chris@1: FLAC_API FLAC__StreamDecoder *FLAC__stream_decoder_new(void); Chris@1: Chris@1: /** Free a decoder instance. Deletes the object pointed to by \a decoder. Chris@1: * Chris@1: * \param decoder A pointer to an existing decoder. Chris@1: * \assert Chris@1: * \code decoder != NULL \endcode Chris@1: */ Chris@1: FLAC_API void FLAC__stream_decoder_delete(FLAC__StreamDecoder *decoder); Chris@1: Chris@1: Chris@1: /*********************************************************************** Chris@1: * Chris@1: * Public class method prototypes Chris@1: * Chris@1: ***********************************************************************/ Chris@1: Chris@1: /** Set the serial number for the FLAC stream within the Ogg container. Chris@1: * The default behavior is to use the serial number of the first Ogg Chris@1: * page. Setting a serial number here will explicitly specify which Chris@1: * stream is to be decoded. Chris@1: * Chris@1: * \note Chris@1: * This does not need to be set for native FLAC decoding. Chris@1: * Chris@1: * \default \c use serial number of first page Chris@1: * \param decoder A decoder instance to set. Chris@1: * \param serial_number See above. Chris@1: * \assert Chris@1: * \code decoder != NULL \endcode Chris@1: * \retval FLAC__bool Chris@1: * \c false if the decoder is already initialized, else \c true. Chris@1: */ Chris@1: FLAC_API FLAC__bool FLAC__stream_decoder_set_ogg_serial_number(FLAC__StreamDecoder *decoder, long serial_number); Chris@1: Chris@1: /** Set the "MD5 signature checking" flag. If \c true, the decoder will Chris@1: * compute the MD5 signature of the unencoded audio data while decoding Chris@1: * and compare it to the signature from the STREAMINFO block, if it Chris@1: * exists, during FLAC__stream_decoder_finish(). Chris@1: * Chris@1: * MD5 signature checking will be turned off (until the next Chris@1: * FLAC__stream_decoder_reset()) if there is no signature in the Chris@1: * STREAMINFO block or when a seek is attempted. Chris@1: * Chris@1: * Clients that do not use the MD5 check should leave this off to speed Chris@1: * up decoding. Chris@1: * Chris@1: * \default \c false Chris@1: * \param decoder A decoder instance to set. Chris@1: * \param value Flag value (see above). Chris@1: * \assert Chris@1: * \code decoder != NULL \endcode Chris@1: * \retval FLAC__bool Chris@1: * \c false if the decoder is already initialized, else \c true. Chris@1: */ Chris@1: FLAC_API FLAC__bool FLAC__stream_decoder_set_md5_checking(FLAC__StreamDecoder *decoder, FLAC__bool value); Chris@1: Chris@1: /** Direct the decoder to pass on all metadata blocks of type \a type. Chris@1: * Chris@1: * \default By default, only the \c STREAMINFO block is returned via the Chris@1: * metadata callback. Chris@1: * \param decoder A decoder instance to set. Chris@1: * \param type See above. Chris@1: * \assert Chris@1: * \code decoder != NULL \endcode Chris@1: * \a type is valid Chris@1: * \retval FLAC__bool Chris@1: * \c false if the decoder is already initialized, else \c true. Chris@1: */ Chris@1: FLAC_API FLAC__bool FLAC__stream_decoder_set_metadata_respond(FLAC__StreamDecoder *decoder, FLAC__MetadataType type); Chris@1: Chris@1: /** Direct the decoder to pass on all APPLICATION metadata blocks of the Chris@1: * given \a id. Chris@1: * Chris@1: * \default By default, only the \c STREAMINFO block is returned via the Chris@1: * metadata callback. Chris@1: * \param decoder A decoder instance to set. Chris@1: * \param id See above. Chris@1: * \assert Chris@1: * \code decoder != NULL \endcode Chris@1: * \code id != NULL \endcode Chris@1: * \retval FLAC__bool Chris@1: * \c false if the decoder is already initialized, else \c true. Chris@1: */ Chris@1: FLAC_API FLAC__bool FLAC__stream_decoder_set_metadata_respond_application(FLAC__StreamDecoder *decoder, const FLAC__byte id[4]); Chris@1: Chris@1: /** Direct the decoder to pass on all metadata blocks of any type. Chris@1: * Chris@1: * \default By default, only the \c STREAMINFO block is returned via the Chris@1: * metadata callback. Chris@1: * \param decoder A decoder instance to set. Chris@1: * \assert Chris@1: * \code decoder != NULL \endcode Chris@1: * \retval FLAC__bool Chris@1: * \c false if the decoder is already initialized, else \c true. Chris@1: */ Chris@1: FLAC_API FLAC__bool FLAC__stream_decoder_set_metadata_respond_all(FLAC__StreamDecoder *decoder); Chris@1: Chris@1: /** Direct the decoder to filter out all metadata blocks of type \a type. Chris@1: * Chris@1: * \default By default, only the \c STREAMINFO block is returned via the Chris@1: * metadata callback. Chris@1: * \param decoder A decoder instance to set. Chris@1: * \param type See above. Chris@1: * \assert Chris@1: * \code decoder != NULL \endcode Chris@1: * \a type is valid Chris@1: * \retval FLAC__bool Chris@1: * \c false if the decoder is already initialized, else \c true. Chris@1: */ Chris@1: FLAC_API FLAC__bool FLAC__stream_decoder_set_metadata_ignore(FLAC__StreamDecoder *decoder, FLAC__MetadataType type); Chris@1: Chris@1: /** Direct the decoder to filter out all APPLICATION metadata blocks of Chris@1: * the given \a id. Chris@1: * Chris@1: * \default By default, only the \c STREAMINFO block is returned via the Chris@1: * metadata callback. Chris@1: * \param decoder A decoder instance to set. Chris@1: * \param id See above. Chris@1: * \assert Chris@1: * \code decoder != NULL \endcode Chris@1: * \code id != NULL \endcode Chris@1: * \retval FLAC__bool Chris@1: * \c false if the decoder is already initialized, else \c true. Chris@1: */ Chris@1: FLAC_API FLAC__bool FLAC__stream_decoder_set_metadata_ignore_application(FLAC__StreamDecoder *decoder, const FLAC__byte id[4]); Chris@1: Chris@1: /** Direct the decoder to filter out all metadata blocks of any type. Chris@1: * Chris@1: * \default By default, only the \c STREAMINFO block is returned via the Chris@1: * metadata callback. Chris@1: * \param decoder A decoder instance to set. Chris@1: * \assert Chris@1: * \code decoder != NULL \endcode Chris@1: * \retval FLAC__bool Chris@1: * \c false if the decoder is already initialized, else \c true. Chris@1: */ Chris@1: FLAC_API FLAC__bool FLAC__stream_decoder_set_metadata_ignore_all(FLAC__StreamDecoder *decoder); Chris@1: Chris@1: /** Get the current decoder state. Chris@1: * Chris@1: * \param decoder A decoder instance to query. Chris@1: * \assert Chris@1: * \code decoder != NULL \endcode Chris@1: * \retval FLAC__StreamDecoderState Chris@1: * The current decoder state. Chris@1: */ Chris@1: FLAC_API FLAC__StreamDecoderState FLAC__stream_decoder_get_state(const FLAC__StreamDecoder *decoder); Chris@1: Chris@1: /** Get the current decoder state as a C string. Chris@1: * Chris@1: * \param decoder A decoder instance to query. Chris@1: * \assert Chris@1: * \code decoder != NULL \endcode Chris@1: * \retval const char * Chris@1: * The decoder state as a C string. Do not modify the contents. Chris@1: */ Chris@1: FLAC_API const char *FLAC__stream_decoder_get_resolved_state_string(const FLAC__StreamDecoder *decoder); Chris@1: Chris@1: /** Get the "MD5 signature checking" flag. Chris@1: * This is the value of the setting, not whether or not the decoder is Chris@1: * currently checking the MD5 (remember, it can be turned off automatically Chris@1: * by a seek). When the decoder is reset the flag will be restored to the Chris@1: * value returned by this function. Chris@1: * Chris@1: * \param decoder A decoder instance to query. Chris@1: * \assert Chris@1: * \code decoder != NULL \endcode Chris@1: * \retval FLAC__bool Chris@1: * See above. Chris@1: */ Chris@1: FLAC_API FLAC__bool FLAC__stream_decoder_get_md5_checking(const FLAC__StreamDecoder *decoder); Chris@1: Chris@1: /** Get the total number of samples in the stream being decoded. Chris@1: * Will only be valid after decoding has started and will contain the Chris@1: * value from the \c STREAMINFO block. A value of \c 0 means "unknown". Chris@1: * Chris@1: * \param decoder A decoder instance to query. Chris@1: * \assert Chris@1: * \code decoder != NULL \endcode Chris@1: * \retval unsigned Chris@1: * See above. Chris@1: */ Chris@1: FLAC_API FLAC__uint64 FLAC__stream_decoder_get_total_samples(const FLAC__StreamDecoder *decoder); Chris@1: Chris@1: /** Get the current number of channels in the stream being decoded. Chris@1: * Will only be valid after decoding has started and will contain the Chris@1: * value from the most recently decoded frame header. Chris@1: * Chris@1: * \param decoder A decoder instance to query. Chris@1: * \assert Chris@1: * \code decoder != NULL \endcode Chris@1: * \retval unsigned Chris@1: * See above. Chris@1: */ Chris@1: FLAC_API unsigned FLAC__stream_decoder_get_channels(const FLAC__StreamDecoder *decoder); Chris@1: Chris@1: /** Get the current channel assignment in the stream being decoded. Chris@1: * Will only be valid after decoding has started and will contain the Chris@1: * value from the most recently decoded frame header. Chris@1: * Chris@1: * \param decoder A decoder instance to query. Chris@1: * \assert Chris@1: * \code decoder != NULL \endcode Chris@1: * \retval FLAC__ChannelAssignment Chris@1: * See above. Chris@1: */ Chris@1: FLAC_API FLAC__ChannelAssignment FLAC__stream_decoder_get_channel_assignment(const FLAC__StreamDecoder *decoder); Chris@1: Chris@1: /** Get the current sample resolution in the stream being decoded. Chris@1: * Will only be valid after decoding has started and will contain the Chris@1: * value from the most recently decoded frame header. Chris@1: * Chris@1: * \param decoder A decoder instance to query. Chris@1: * \assert Chris@1: * \code decoder != NULL \endcode Chris@1: * \retval unsigned Chris@1: * See above. Chris@1: */ Chris@1: FLAC_API unsigned FLAC__stream_decoder_get_bits_per_sample(const FLAC__StreamDecoder *decoder); Chris@1: Chris@1: /** Get the current sample rate in Hz of the stream being decoded. Chris@1: * Will only be valid after decoding has started and will contain the Chris@1: * value from the most recently decoded frame header. Chris@1: * Chris@1: * \param decoder A decoder instance to query. Chris@1: * \assert Chris@1: * \code decoder != NULL \endcode Chris@1: * \retval unsigned Chris@1: * See above. Chris@1: */ Chris@1: FLAC_API unsigned FLAC__stream_decoder_get_sample_rate(const FLAC__StreamDecoder *decoder); Chris@1: Chris@1: /** Get the current blocksize of the stream being decoded. Chris@1: * Will only be valid after decoding has started and will contain the Chris@1: * value from the most recently decoded frame header. Chris@1: * Chris@1: * \param decoder A decoder instance to query. Chris@1: * \assert Chris@1: * \code decoder != NULL \endcode Chris@1: * \retval unsigned Chris@1: * See above. Chris@1: */ Chris@1: FLAC_API unsigned FLAC__stream_decoder_get_blocksize(const FLAC__StreamDecoder *decoder); Chris@1: Chris@1: /** Returns the decoder's current read position within the stream. Chris@1: * The position is the byte offset from the start of the stream. Chris@1: * Bytes before this position have been fully decoded. Note that Chris@1: * there may still be undecoded bytes in the decoder's read FIFO. Chris@1: * The returned position is correct even after a seek. Chris@1: * Chris@1: * \warning This function currently only works for native FLAC, Chris@1: * not Ogg FLAC streams. Chris@1: * Chris@1: * \param decoder A decoder instance to query. Chris@1: * \param position Address at which to return the desired position. Chris@1: * \assert Chris@1: * \code decoder != NULL \endcode Chris@1: * \code position != NULL \endcode Chris@1: * \retval FLAC__bool Chris@1: * \c true if successful, \c false if the stream is not native FLAC, Chris@1: * or there was an error from the 'tell' callback or it returned Chris@1: * \c FLAC__STREAM_DECODER_TELL_STATUS_UNSUPPORTED. Chris@1: */ Chris@1: FLAC_API FLAC__bool FLAC__stream_decoder_get_decode_position(const FLAC__StreamDecoder *decoder, FLAC__uint64 *position); Chris@1: Chris@1: /** Initialize the decoder instance to decode native FLAC streams. Chris@1: * Chris@1: * This flavor of initialization sets up the decoder to decode from a Chris@1: * native FLAC stream. I/O is performed via callbacks to the client. Chris@1: * For decoding from a plain file via filename or open FILE*, Chris@1: * FLAC__stream_decoder_init_file() and FLAC__stream_decoder_init_FILE() Chris@1: * provide a simpler interface. Chris@1: * Chris@1: * This function should be called after FLAC__stream_decoder_new() and Chris@1: * FLAC__stream_decoder_set_*() but before any of the Chris@1: * FLAC__stream_decoder_process_*() functions. Will set and return the Chris@1: * decoder state, which will be FLAC__STREAM_DECODER_SEARCH_FOR_METADATA Chris@1: * if initialization succeeded. Chris@1: * Chris@1: * \param decoder An uninitialized decoder instance. Chris@1: * \param read_callback See FLAC__StreamDecoderReadCallback. This Chris@1: * pointer must not be \c NULL. Chris@1: * \param seek_callback See FLAC__StreamDecoderSeekCallback. This Chris@1: * pointer may be \c NULL if seeking is not Chris@1: * supported. If \a seek_callback is not \c NULL then a Chris@1: * \a tell_callback, \a length_callback, and \a eof_callback must also be supplied. Chris@1: * Alternatively, a dummy seek callback that just Chris@1: * returns \c FLAC__STREAM_DECODER_SEEK_STATUS_UNSUPPORTED Chris@1: * may also be supplied, all though this is slightly Chris@1: * less efficient for the decoder. Chris@1: * \param tell_callback See FLAC__StreamDecoderTellCallback. This Chris@1: * pointer may be \c NULL if not supported by the client. If Chris@1: * \a seek_callback is not \c NULL then a Chris@1: * \a tell_callback must also be supplied. Chris@1: * Alternatively, a dummy tell callback that just Chris@1: * returns \c FLAC__STREAM_DECODER_TELL_STATUS_UNSUPPORTED Chris@1: * may also be supplied, all though this is slightly Chris@1: * less efficient for the decoder. Chris@1: * \param length_callback See FLAC__StreamDecoderLengthCallback. This Chris@1: * pointer may be \c NULL if not supported by the client. If Chris@1: * \a seek_callback is not \c NULL then a Chris@1: * \a length_callback must also be supplied. Chris@1: * Alternatively, a dummy length callback that just Chris@1: * returns \c FLAC__STREAM_DECODER_LENGTH_STATUS_UNSUPPORTED Chris@1: * may also be supplied, all though this is slightly Chris@1: * less efficient for the decoder. Chris@1: * \param eof_callback See FLAC__StreamDecoderEofCallback. This Chris@1: * pointer may be \c NULL if not supported by the client. If Chris@1: * \a seek_callback is not \c NULL then a Chris@1: * \a eof_callback must also be supplied. Chris@1: * Alternatively, a dummy length callback that just Chris@1: * returns \c false Chris@1: * may also be supplied, all though this is slightly Chris@1: * less efficient for the decoder. Chris@1: * \param write_callback See FLAC__StreamDecoderWriteCallback. This Chris@1: * pointer must not be \c NULL. Chris@1: * \param metadata_callback See FLAC__StreamDecoderMetadataCallback. This Chris@1: * pointer may be \c NULL if the callback is not Chris@1: * desired. Chris@1: * \param error_callback See FLAC__StreamDecoderErrorCallback. This Chris@1: * pointer must not be \c NULL. Chris@1: * \param client_data This value will be supplied to callbacks in their Chris@1: * \a client_data argument. Chris@1: * \assert Chris@1: * \code decoder != NULL \endcode Chris@1: * \retval FLAC__StreamDecoderInitStatus Chris@1: * \c FLAC__STREAM_DECODER_INIT_STATUS_OK if initialization was successful; Chris@1: * see FLAC__StreamDecoderInitStatus for the meanings of other return values. Chris@1: */ Chris@1: FLAC_API FLAC__StreamDecoderInitStatus FLAC__stream_decoder_init_stream( Chris@1: FLAC__StreamDecoder *decoder, Chris@1: FLAC__StreamDecoderReadCallback read_callback, Chris@1: FLAC__StreamDecoderSeekCallback seek_callback, Chris@1: FLAC__StreamDecoderTellCallback tell_callback, Chris@1: FLAC__StreamDecoderLengthCallback length_callback, Chris@1: FLAC__StreamDecoderEofCallback eof_callback, Chris@1: FLAC__StreamDecoderWriteCallback write_callback, Chris@1: FLAC__StreamDecoderMetadataCallback metadata_callback, Chris@1: FLAC__StreamDecoderErrorCallback error_callback, Chris@1: void *client_data Chris@1: ); Chris@1: Chris@1: /** Initialize the decoder instance to decode Ogg FLAC streams. Chris@1: * Chris@1: * This flavor of initialization sets up the decoder to decode from a Chris@1: * FLAC stream in an Ogg container. I/O is performed via callbacks to the Chris@1: * client. For decoding from a plain file via filename or open FILE*, Chris@1: * FLAC__stream_decoder_init_ogg_file() and FLAC__stream_decoder_init_ogg_FILE() Chris@1: * provide a simpler interface. Chris@1: * Chris@1: * This function should be called after FLAC__stream_decoder_new() and Chris@1: * FLAC__stream_decoder_set_*() but before any of the Chris@1: * FLAC__stream_decoder_process_*() functions. Will set and return the Chris@1: * decoder state, which will be FLAC__STREAM_DECODER_SEARCH_FOR_METADATA Chris@1: * if initialization succeeded. Chris@1: * Chris@1: * \note Support for Ogg FLAC in the library is optional. If this Chris@1: * library has been built without support for Ogg FLAC, this function Chris@1: * will return \c FLAC__STREAM_DECODER_INIT_STATUS_UNSUPPORTED_CONTAINER. Chris@1: * Chris@1: * \param decoder An uninitialized decoder instance. Chris@1: * \param read_callback See FLAC__StreamDecoderReadCallback. This Chris@1: * pointer must not be \c NULL. Chris@1: * \param seek_callback See FLAC__StreamDecoderSeekCallback. This Chris@1: * pointer may be \c NULL if seeking is not Chris@1: * supported. If \a seek_callback is not \c NULL then a Chris@1: * \a tell_callback, \a length_callback, and \a eof_callback must also be supplied. Chris@1: * Alternatively, a dummy seek callback that just Chris@1: * returns \c FLAC__STREAM_DECODER_SEEK_STATUS_UNSUPPORTED Chris@1: * may also be supplied, all though this is slightly Chris@1: * less efficient for the decoder. Chris@1: * \param tell_callback See FLAC__StreamDecoderTellCallback. This Chris@1: * pointer may be \c NULL if not supported by the client. If Chris@1: * \a seek_callback is not \c NULL then a Chris@1: * \a tell_callback must also be supplied. Chris@1: * Alternatively, a dummy tell callback that just Chris@1: * returns \c FLAC__STREAM_DECODER_TELL_STATUS_UNSUPPORTED Chris@1: * may also be supplied, all though this is slightly Chris@1: * less efficient for the decoder. Chris@1: * \param length_callback See FLAC__StreamDecoderLengthCallback. This Chris@1: * pointer may be \c NULL if not supported by the client. If Chris@1: * \a seek_callback is not \c NULL then a Chris@1: * \a length_callback must also be supplied. Chris@1: * Alternatively, a dummy length callback that just Chris@1: * returns \c FLAC__STREAM_DECODER_LENGTH_STATUS_UNSUPPORTED Chris@1: * may also be supplied, all though this is slightly Chris@1: * less efficient for the decoder. Chris@1: * \param eof_callback See FLAC__StreamDecoderEofCallback. This Chris@1: * pointer may be \c NULL if not supported by the client. If Chris@1: * \a seek_callback is not \c NULL then a Chris@1: * \a eof_callback must also be supplied. Chris@1: * Alternatively, a dummy length callback that just Chris@1: * returns \c false Chris@1: * may also be supplied, all though this is slightly Chris@1: * less efficient for the decoder. Chris@1: * \param write_callback See FLAC__StreamDecoderWriteCallback. This Chris@1: * pointer must not be \c NULL. Chris@1: * \param metadata_callback See FLAC__StreamDecoderMetadataCallback. This Chris@1: * pointer may be \c NULL if the callback is not Chris@1: * desired. Chris@1: * \param error_callback See FLAC__StreamDecoderErrorCallback. This Chris@1: * pointer must not be \c NULL. Chris@1: * \param client_data This value will be supplied to callbacks in their Chris@1: * \a client_data argument. Chris@1: * \assert Chris@1: * \code decoder != NULL \endcode Chris@1: * \retval FLAC__StreamDecoderInitStatus Chris@1: * \c FLAC__STREAM_DECODER_INIT_STATUS_OK if initialization was successful; Chris@1: * see FLAC__StreamDecoderInitStatus for the meanings of other return values. Chris@1: */ Chris@1: FLAC_API FLAC__StreamDecoderInitStatus FLAC__stream_decoder_init_ogg_stream( Chris@1: FLAC__StreamDecoder *decoder, Chris@1: FLAC__StreamDecoderReadCallback read_callback, Chris@1: FLAC__StreamDecoderSeekCallback seek_callback, Chris@1: FLAC__StreamDecoderTellCallback tell_callback, Chris@1: FLAC__StreamDecoderLengthCallback length_callback, Chris@1: FLAC__StreamDecoderEofCallback eof_callback, Chris@1: FLAC__StreamDecoderWriteCallback write_callback, Chris@1: FLAC__StreamDecoderMetadataCallback metadata_callback, Chris@1: FLAC__StreamDecoderErrorCallback error_callback, Chris@1: void *client_data Chris@1: ); Chris@1: Chris@1: /** Initialize the decoder instance to decode native FLAC files. Chris@1: * Chris@1: * This flavor of initialization sets up the decoder to decode from a Chris@1: * plain native FLAC file. For non-stdio streams, you must use Chris@1: * FLAC__stream_decoder_init_stream() and provide callbacks for the I/O. Chris@1: * Chris@1: * This function should be called after FLAC__stream_decoder_new() and Chris@1: * FLAC__stream_decoder_set_*() but before any of the Chris@1: * FLAC__stream_decoder_process_*() functions. Will set and return the Chris@1: * decoder state, which will be FLAC__STREAM_DECODER_SEARCH_FOR_METADATA Chris@1: * if initialization succeeded. Chris@1: * Chris@1: * \param decoder An uninitialized decoder instance. Chris@1: * \param file An open FLAC file. The file should have been Chris@1: * opened with mode \c "rb" and rewound. The file Chris@1: * becomes owned by the decoder and should not be Chris@1: * manipulated by the client while decoding. Chris@1: * Unless \a file is \c stdin, it will be closed Chris@1: * when FLAC__stream_decoder_finish() is called. Chris@1: * Note however that seeking will not work when Chris@1: * decoding from \c stdout since it is not seekable. Chris@1: * \param write_callback See FLAC__StreamDecoderWriteCallback. This Chris@1: * pointer must not be \c NULL. Chris@1: * \param metadata_callback See FLAC__StreamDecoderMetadataCallback. This Chris@1: * pointer may be \c NULL if the callback is not Chris@1: * desired. Chris@1: * \param error_callback See FLAC__StreamDecoderErrorCallback. This Chris@1: * pointer must not be \c NULL. Chris@1: * \param client_data This value will be supplied to callbacks in their Chris@1: * \a client_data argument. Chris@1: * \assert Chris@1: * \code decoder != NULL \endcode Chris@1: * \code file != NULL \endcode Chris@1: * \retval FLAC__StreamDecoderInitStatus Chris@1: * \c FLAC__STREAM_DECODER_INIT_STATUS_OK if initialization was successful; Chris@1: * see FLAC__StreamDecoderInitStatus for the meanings of other return values. Chris@1: */ Chris@1: FLAC_API FLAC__StreamDecoderInitStatus FLAC__stream_decoder_init_FILE( Chris@1: FLAC__StreamDecoder *decoder, Chris@1: FILE *file, Chris@1: FLAC__StreamDecoderWriteCallback write_callback, Chris@1: FLAC__StreamDecoderMetadataCallback metadata_callback, Chris@1: FLAC__StreamDecoderErrorCallback error_callback, Chris@1: void *client_data Chris@1: ); Chris@1: Chris@1: /** Initialize the decoder instance to decode Ogg FLAC files. Chris@1: * Chris@1: * This flavor of initialization sets up the decoder to decode from a Chris@1: * plain Ogg FLAC file. For non-stdio streams, you must use Chris@1: * FLAC__stream_decoder_init_ogg_stream() and provide callbacks for the I/O. Chris@1: * Chris@1: * This function should be called after FLAC__stream_decoder_new() and Chris@1: * FLAC__stream_decoder_set_*() but before any of the Chris@1: * FLAC__stream_decoder_process_*() functions. Will set and return the Chris@1: * decoder state, which will be FLAC__STREAM_DECODER_SEARCH_FOR_METADATA Chris@1: * if initialization succeeded. Chris@1: * Chris@1: * \note Support for Ogg FLAC in the library is optional. If this Chris@1: * library has been built without support for Ogg FLAC, this function Chris@1: * will return \c FLAC__STREAM_DECODER_INIT_STATUS_UNSUPPORTED_CONTAINER. Chris@1: * Chris@1: * \param decoder An uninitialized decoder instance. Chris@1: * \param file An open FLAC file. The file should have been Chris@1: * opened with mode \c "rb" and rewound. The file Chris@1: * becomes owned by the decoder and should not be Chris@1: * manipulated by the client while decoding. Chris@1: * Unless \a file is \c stdin, it will be closed Chris@1: * when FLAC__stream_decoder_finish() is called. Chris@1: * Note however that seeking will not work when Chris@1: * decoding from \c stdout since it is not seekable. Chris@1: * \param write_callback See FLAC__StreamDecoderWriteCallback. This Chris@1: * pointer must not be \c NULL. Chris@1: * \param metadata_callback See FLAC__StreamDecoderMetadataCallback. This Chris@1: * pointer may be \c NULL if the callback is not Chris@1: * desired. Chris@1: * \param error_callback See FLAC__StreamDecoderErrorCallback. This Chris@1: * pointer must not be \c NULL. Chris@1: * \param client_data This value will be supplied to callbacks in their Chris@1: * \a client_data argument. Chris@1: * \assert Chris@1: * \code decoder != NULL \endcode Chris@1: * \code file != NULL \endcode Chris@1: * \retval FLAC__StreamDecoderInitStatus Chris@1: * \c FLAC__STREAM_DECODER_INIT_STATUS_OK if initialization was successful; Chris@1: * see FLAC__StreamDecoderInitStatus for the meanings of other return values. Chris@1: */ Chris@1: FLAC_API FLAC__StreamDecoderInitStatus FLAC__stream_decoder_init_ogg_FILE( Chris@1: FLAC__StreamDecoder *decoder, Chris@1: FILE *file, Chris@1: FLAC__StreamDecoderWriteCallback write_callback, Chris@1: FLAC__StreamDecoderMetadataCallback metadata_callback, Chris@1: FLAC__StreamDecoderErrorCallback error_callback, Chris@1: void *client_data Chris@1: ); Chris@1: Chris@1: /** Initialize the decoder instance to decode native FLAC files. Chris@1: * Chris@1: * This flavor of initialization sets up the decoder to decode from a plain Chris@1: * native FLAC file. If POSIX fopen() semantics are not sufficient, (for Chris@1: * example, with Unicode filenames on Windows), you must use Chris@1: * FLAC__stream_decoder_init_FILE(), or FLAC__stream_decoder_init_stream() Chris@1: * and provide callbacks for the I/O. Chris@1: * Chris@1: * This function should be called after FLAC__stream_decoder_new() and Chris@1: * FLAC__stream_decoder_set_*() but before any of the Chris@1: * FLAC__stream_decoder_process_*() functions. Will set and return the Chris@1: * decoder state, which will be FLAC__STREAM_DECODER_SEARCH_FOR_METADATA Chris@1: * if initialization succeeded. Chris@1: * Chris@1: * \param decoder An uninitialized decoder instance. Chris@1: * \param filename The name of the file to decode from. The file will Chris@1: * be opened with fopen(). Use \c NULL to decode from Chris@1: * \c stdin. Note that \c stdin is not seekable. Chris@1: * \param write_callback See FLAC__StreamDecoderWriteCallback. This Chris@1: * pointer must not be \c NULL. Chris@1: * \param metadata_callback See FLAC__StreamDecoderMetadataCallback. This Chris@1: * pointer may be \c NULL if the callback is not Chris@1: * desired. Chris@1: * \param error_callback See FLAC__StreamDecoderErrorCallback. This Chris@1: * pointer must not be \c NULL. Chris@1: * \param client_data This value will be supplied to callbacks in their Chris@1: * \a client_data argument. Chris@1: * \assert Chris@1: * \code decoder != NULL \endcode Chris@1: * \retval FLAC__StreamDecoderInitStatus Chris@1: * \c FLAC__STREAM_DECODER_INIT_STATUS_OK if initialization was successful; Chris@1: * see FLAC__StreamDecoderInitStatus for the meanings of other return values. Chris@1: */ Chris@1: FLAC_API FLAC__StreamDecoderInitStatus FLAC__stream_decoder_init_file( Chris@1: FLAC__StreamDecoder *decoder, Chris@1: const char *filename, Chris@1: FLAC__StreamDecoderWriteCallback write_callback, Chris@1: FLAC__StreamDecoderMetadataCallback metadata_callback, Chris@1: FLAC__StreamDecoderErrorCallback error_callback, Chris@1: void *client_data Chris@1: ); Chris@1: Chris@1: /** Initialize the decoder instance to decode Ogg FLAC files. Chris@1: * Chris@1: * This flavor of initialization sets up the decoder to decode from a plain Chris@1: * Ogg FLAC file. If POSIX fopen() semantics are not sufficient, (for Chris@1: * example, with Unicode filenames on Windows), you must use Chris@1: * FLAC__stream_decoder_init_ogg_FILE(), or FLAC__stream_decoder_init_ogg_stream() Chris@1: * and provide callbacks for the I/O. Chris@1: * Chris@1: * This function should be called after FLAC__stream_decoder_new() and Chris@1: * FLAC__stream_decoder_set_*() but before any of the Chris@1: * FLAC__stream_decoder_process_*() functions. Will set and return the Chris@1: * decoder state, which will be FLAC__STREAM_DECODER_SEARCH_FOR_METADATA Chris@1: * if initialization succeeded. Chris@1: * Chris@1: * \note Support for Ogg FLAC in the library is optional. If this Chris@1: * library has been built without support for Ogg FLAC, this function Chris@1: * will return \c FLAC__STREAM_DECODER_INIT_STATUS_UNSUPPORTED_CONTAINER. Chris@1: * Chris@1: * \param decoder An uninitialized decoder instance. Chris@1: * \param filename The name of the file to decode from. The file will Chris@1: * be opened with fopen(). Use \c NULL to decode from Chris@1: * \c stdin. Note that \c stdin is not seekable. Chris@1: * \param write_callback See FLAC__StreamDecoderWriteCallback. This Chris@1: * pointer must not be \c NULL. Chris@1: * \param metadata_callback See FLAC__StreamDecoderMetadataCallback. This Chris@1: * pointer may be \c NULL if the callback is not Chris@1: * desired. Chris@1: * \param error_callback See FLAC__StreamDecoderErrorCallback. This Chris@1: * pointer must not be \c NULL. Chris@1: * \param client_data This value will be supplied to callbacks in their Chris@1: * \a client_data argument. Chris@1: * \assert Chris@1: * \code decoder != NULL \endcode Chris@1: * \retval FLAC__StreamDecoderInitStatus Chris@1: * \c FLAC__STREAM_DECODER_INIT_STATUS_OK if initialization was successful; Chris@1: * see FLAC__StreamDecoderInitStatus for the meanings of other return values. Chris@1: */ Chris@1: FLAC_API FLAC__StreamDecoderInitStatus FLAC__stream_decoder_init_ogg_file( Chris@1: FLAC__StreamDecoder *decoder, Chris@1: const char *filename, Chris@1: FLAC__StreamDecoderWriteCallback write_callback, Chris@1: FLAC__StreamDecoderMetadataCallback metadata_callback, Chris@1: FLAC__StreamDecoderErrorCallback error_callback, Chris@1: void *client_data Chris@1: ); Chris@1: Chris@1: /** Finish the decoding process. Chris@1: * Flushes the decoding buffer, releases resources, resets the decoder Chris@1: * settings to their defaults, and returns the decoder state to Chris@1: * FLAC__STREAM_DECODER_UNINITIALIZED. Chris@1: * Chris@1: * In the event of a prematurely-terminated decode, it is not strictly Chris@1: * necessary to call this immediately before FLAC__stream_decoder_delete() Chris@1: * but it is good practice to match every FLAC__stream_decoder_init_*() Chris@1: * with a FLAC__stream_decoder_finish(). Chris@1: * Chris@1: * \param decoder An uninitialized decoder instance. Chris@1: * \assert Chris@1: * \code decoder != NULL \endcode Chris@1: * \retval FLAC__bool Chris@1: * \c false if MD5 checking is on AND a STREAMINFO block was available Chris@1: * AND the MD5 signature in the STREAMINFO block was non-zero AND the Chris@1: * signature does not match the one computed by the decoder; else Chris@1: * \c true. Chris@1: */ Chris@1: FLAC_API FLAC__bool FLAC__stream_decoder_finish(FLAC__StreamDecoder *decoder); Chris@1: Chris@1: /** Flush the stream input. Chris@1: * The decoder's input buffer will be cleared and the state set to Chris@1: * \c FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC. This will also turn Chris@1: * off MD5 checking. Chris@1: * Chris@1: * \param decoder A decoder instance. Chris@1: * \assert Chris@1: * \code decoder != NULL \endcode Chris@1: * \retval FLAC__bool Chris@1: * \c true if successful, else \c false if a memory allocation Chris@1: * error occurs (in which case the state will be set to Chris@1: * \c FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR). Chris@1: */ Chris@1: FLAC_API FLAC__bool FLAC__stream_decoder_flush(FLAC__StreamDecoder *decoder); Chris@1: Chris@1: /** Reset the decoding process. Chris@1: * The decoder's input buffer will be cleared and the state set to Chris@1: * \c FLAC__STREAM_DECODER_SEARCH_FOR_METADATA. This is similar to Chris@1: * FLAC__stream_decoder_finish() except that the settings are Chris@1: * preserved; there is no need to call FLAC__stream_decoder_init_*() Chris@1: * before decoding again. MD5 checking will be restored to its original Chris@1: * setting. Chris@1: * Chris@1: * If the decoder is seekable, or was initialized with Chris@1: * FLAC__stream_decoder_init*_FILE() or FLAC__stream_decoder_init*_file(), Chris@1: * the decoder will also attempt to seek to the beginning of the file. Chris@1: * If this rewind fails, this function will return \c false. It follows Chris@1: * that FLAC__stream_decoder_reset() cannot be used when decoding from Chris@1: * \c stdin. Chris@1: * Chris@1: * If the decoder was initialized with FLAC__stream_encoder_init*_stream() Chris@1: * and is not seekable (i.e. no seek callback was provided or the seek Chris@1: * callback returns \c FLAC__STREAM_DECODER_SEEK_STATUS_UNSUPPORTED), it Chris@1: * is the duty of the client to start feeding data from the beginning of Chris@1: * the stream on the next FLAC__stream_decoder_process() or Chris@1: * FLAC__stream_decoder_process_interleaved() call. Chris@1: * Chris@1: * \param decoder A decoder instance. Chris@1: * \assert Chris@1: * \code decoder != NULL \endcode Chris@1: * \retval FLAC__bool Chris@1: * \c true if successful, else \c false if a memory allocation occurs Chris@1: * (in which case the state will be set to Chris@1: * \c FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR) or a seek error Chris@1: * occurs (the state will be unchanged). Chris@1: */ Chris@1: FLAC_API FLAC__bool FLAC__stream_decoder_reset(FLAC__StreamDecoder *decoder); Chris@1: Chris@1: /** Decode one metadata block or audio frame. Chris@1: * This version instructs the decoder to decode a either a single metadata Chris@1: * block or a single frame and stop, unless the callbacks return a fatal Chris@1: * error or the read callback returns Chris@1: * \c FLAC__STREAM_DECODER_READ_STATUS_END_OF_STREAM. Chris@1: * Chris@1: * As the decoder needs more input it will call the read callback. Chris@1: * Depending on what was decoded, the metadata or write callback will be Chris@1: * called with the decoded metadata block or audio frame. Chris@1: * Chris@1: * Unless there is a fatal read error or end of stream, this function Chris@1: * will return once one whole frame is decoded. In other words, if the Chris@1: * stream is not synchronized or points to a corrupt frame header, the Chris@1: * decoder will continue to try and resync until it gets to a valid Chris@1: * frame, then decode one frame, then return. If the decoder points to Chris@1: * a frame whose frame CRC in the frame footer does not match the Chris@1: * computed frame CRC, this function will issue a Chris@1: * FLAC__STREAM_DECODER_ERROR_STATUS_FRAME_CRC_MISMATCH error to the Chris@1: * error callback, and return, having decoded one complete, although Chris@1: * corrupt, frame. (Such corrupted frames are sent as silence of the Chris@1: * correct length to the write callback.) Chris@1: * Chris@1: * \param decoder An initialized decoder instance. Chris@1: * \assert Chris@1: * \code decoder != NULL \endcode Chris@1: * \retval FLAC__bool Chris@1: * \c false if any fatal read, write, or memory allocation error Chris@1: * occurred (meaning decoding must stop), else \c true; for more Chris@1: * information about the decoder, check the decoder state with Chris@1: * FLAC__stream_decoder_get_state(). Chris@1: */ Chris@1: FLAC_API FLAC__bool FLAC__stream_decoder_process_single(FLAC__StreamDecoder *decoder); Chris@1: Chris@1: /** Decode until the end of the metadata. Chris@1: * This version instructs the decoder to decode from the current position Chris@1: * and continue until all the metadata has been read, or until the Chris@1: * callbacks return a fatal error or the read callback returns Chris@1: * \c FLAC__STREAM_DECODER_READ_STATUS_END_OF_STREAM. Chris@1: * Chris@1: * As the decoder needs more input it will call the read callback. Chris@1: * As each metadata block is decoded, the metadata callback will be called Chris@1: * with the decoded metadata. Chris@1: * Chris@1: * \param decoder An initialized decoder instance. Chris@1: * \assert Chris@1: * \code decoder != NULL \endcode Chris@1: * \retval FLAC__bool Chris@1: * \c false if any fatal read, write, or memory allocation error Chris@1: * occurred (meaning decoding must stop), else \c true; for more Chris@1: * information about the decoder, check the decoder state with Chris@1: * FLAC__stream_decoder_get_state(). Chris@1: */ Chris@1: FLAC_API FLAC__bool FLAC__stream_decoder_process_until_end_of_metadata(FLAC__StreamDecoder *decoder); Chris@1: Chris@1: /** Decode until the end of the stream. Chris@1: * This version instructs the decoder to decode from the current position Chris@1: * and continue until the end of stream (the read callback returns Chris@1: * \c FLAC__STREAM_DECODER_READ_STATUS_END_OF_STREAM), or until the Chris@1: * callbacks return a fatal error. Chris@1: * Chris@1: * As the decoder needs more input it will call the read callback. Chris@1: * As each metadata block and frame is decoded, the metadata or write Chris@1: * callback will be called with the decoded metadata or frame. Chris@1: * Chris@1: * \param decoder An initialized decoder instance. Chris@1: * \assert Chris@1: * \code decoder != NULL \endcode Chris@1: * \retval FLAC__bool Chris@1: * \c false if any fatal read, write, or memory allocation error Chris@1: * occurred (meaning decoding must stop), else \c true; for more Chris@1: * information about the decoder, check the decoder state with Chris@1: * FLAC__stream_decoder_get_state(). Chris@1: */ Chris@1: FLAC_API FLAC__bool FLAC__stream_decoder_process_until_end_of_stream(FLAC__StreamDecoder *decoder); Chris@1: Chris@1: /** Skip one audio frame. Chris@1: * This version instructs the decoder to 'skip' a single frame and stop, Chris@1: * unless the callbacks return a fatal error or the read callback returns Chris@1: * \c FLAC__STREAM_DECODER_READ_STATUS_END_OF_STREAM. Chris@1: * Chris@1: * The decoding flow is the same as what occurs when Chris@1: * FLAC__stream_decoder_process_single() is called to process an audio Chris@1: * frame, except that this function does not decode the parsed data into Chris@1: * PCM or call the write callback. The integrity of the frame is still Chris@1: * checked the same way as in the other process functions. Chris@1: * Chris@1: * This function will return once one whole frame is skipped, in the Chris@1: * same way that FLAC__stream_decoder_process_single() will return once Chris@1: * one whole frame is decoded. Chris@1: * Chris@1: * This function can be used in more quickly determining FLAC frame Chris@1: * boundaries when decoding of the actual data is not needed, for Chris@1: * example when an application is separating a FLAC stream into frames Chris@1: * for editing or storing in a container. To do this, the application Chris@1: * can use FLAC__stream_decoder_skip_single_frame() to quickly advance Chris@1: * to the next frame, then use Chris@1: * FLAC__stream_decoder_get_decode_position() to find the new frame Chris@1: * boundary. Chris@1: * Chris@1: * This function should only be called when the stream has advanced Chris@1: * past all the metadata, otherwise it will return \c false. Chris@1: * Chris@1: * \param decoder An initialized decoder instance not in a metadata Chris@1: * state. Chris@1: * \assert Chris@1: * \code decoder != NULL \endcode Chris@1: * \retval FLAC__bool Chris@1: * \c false if any fatal read, write, or memory allocation error Chris@1: * occurred (meaning decoding must stop), or if the decoder Chris@1: * is in the FLAC__STREAM_DECODER_SEARCH_FOR_METADATA or Chris@1: * FLAC__STREAM_DECODER_READ_METADATA state, else \c true; for more Chris@1: * information about the decoder, check the decoder state with Chris@1: * FLAC__stream_decoder_get_state(). Chris@1: */ Chris@1: FLAC_API FLAC__bool FLAC__stream_decoder_skip_single_frame(FLAC__StreamDecoder *decoder); Chris@1: Chris@1: /** Flush the input and seek to an absolute sample. Chris@1: * Decoding will resume at the given sample. Note that because of Chris@1: * this, the next write callback may contain a partial block. The Chris@1: * client must support seeking the input or this function will fail Chris@1: * and return \c false. Furthermore, if the decoder state is Chris@1: * \c FLAC__STREAM_DECODER_SEEK_ERROR, then the decoder must be flushed Chris@1: * with FLAC__stream_decoder_flush() or reset with Chris@1: * FLAC__stream_decoder_reset() before decoding can continue. Chris@1: * Chris@1: * \param decoder A decoder instance. Chris@1: * \param sample The target sample number to seek to. Chris@1: * \assert Chris@1: * \code decoder != NULL \endcode Chris@1: * \retval FLAC__bool Chris@1: * \c true if successful, else \c false. Chris@1: */ Chris@1: FLAC_API FLAC__bool FLAC__stream_decoder_seek_absolute(FLAC__StreamDecoder *decoder, FLAC__uint64 sample); Chris@1: Chris@1: /* \} */ Chris@1: Chris@1: #ifdef __cplusplus Chris@1: } Chris@1: #endif Chris@1: Chris@1: #endif