annotate src/flac-1.2.1/include/FLAC/all.h @ 169:223a55898ab9 tip default

Add null config files
author Chris Cannam <cannam@all-day-breakfast.com>
date Mon, 02 Mar 2020 14:03:47 +0000
parents 98c1576536ae
children
rev   line source
cannam@86 1 /* libFLAC - Free Lossless Audio Codec library
cannam@86 2 * Copyright (C) 2000,2001,2002,2003,2004,2005,2006,2007 Josh Coalson
cannam@86 3 *
cannam@86 4 * Redistribution and use in source and binary forms, with or without
cannam@86 5 * modification, are permitted provided that the following conditions
cannam@86 6 * are met:
cannam@86 7 *
cannam@86 8 * - Redistributions of source code must retain the above copyright
cannam@86 9 * notice, this list of conditions and the following disclaimer.
cannam@86 10 *
cannam@86 11 * - Redistributions in binary form must reproduce the above copyright
cannam@86 12 * notice, this list of conditions and the following disclaimer in the
cannam@86 13 * documentation and/or other materials provided with the distribution.
cannam@86 14 *
cannam@86 15 * - Neither the name of the Xiph.org Foundation nor the names of its
cannam@86 16 * contributors may be used to endorse or promote products derived from
cannam@86 17 * this software without specific prior written permission.
cannam@86 18 *
cannam@86 19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
cannam@86 20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
cannam@86 21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
cannam@86 22 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
cannam@86 23 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
cannam@86 24 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
cannam@86 25 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
cannam@86 26 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
cannam@86 27 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
cannam@86 28 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
cannam@86 29 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
cannam@86 30 */
cannam@86 31
cannam@86 32 #ifndef FLAC__ALL_H
cannam@86 33 #define FLAC__ALL_H
cannam@86 34
cannam@86 35 #include "export.h"
cannam@86 36
cannam@86 37 #include "assert.h"
cannam@86 38 #include "callback.h"
cannam@86 39 #include "format.h"
cannam@86 40 #include "metadata.h"
cannam@86 41 #include "ordinals.h"
cannam@86 42 #include "stream_decoder.h"
cannam@86 43 #include "stream_encoder.h"
cannam@86 44
cannam@86 45 /** \mainpage
cannam@86 46 *
cannam@86 47 * \section intro Introduction
cannam@86 48 *
cannam@86 49 * This is the documentation for the FLAC C and C++ APIs. It is
cannam@86 50 * highly interconnected; this introduction should give you a top
cannam@86 51 * level idea of the structure and how to find the information you
cannam@86 52 * need. As a prerequisite you should have at least a basic
cannam@86 53 * knowledge of the FLAC format, documented
cannam@86 54 * <A HREF="../format.html">here</A>.
cannam@86 55 *
cannam@86 56 * \section c_api FLAC C API
cannam@86 57 *
cannam@86 58 * The FLAC C API is the interface to libFLAC, a set of structures
cannam@86 59 * describing the components of FLAC streams, and functions for
cannam@86 60 * encoding and decoding streams, as well as manipulating FLAC
cannam@86 61 * metadata in files. The public include files will be installed
cannam@86 62 * in your include area (for example /usr/include/FLAC/...).
cannam@86 63 *
cannam@86 64 * By writing a little code and linking against libFLAC, it is
cannam@86 65 * relatively easy to add FLAC support to another program. The
cannam@86 66 * library is licensed under <A HREF="../license.html">Xiph's BSD license</A>.
cannam@86 67 * Complete source code of libFLAC as well as the command-line
cannam@86 68 * encoder and plugins is available and is a useful source of
cannam@86 69 * examples.
cannam@86 70 *
cannam@86 71 * Aside from encoders and decoders, libFLAC provides a powerful
cannam@86 72 * metadata interface for manipulating metadata in FLAC files. It
cannam@86 73 * allows the user to add, delete, and modify FLAC metadata blocks
cannam@86 74 * and it can automatically take advantage of PADDING blocks to avoid
cannam@86 75 * rewriting the entire FLAC file when changing the size of the
cannam@86 76 * metadata.
cannam@86 77 *
cannam@86 78 * libFLAC usually only requires the standard C library and C math
cannam@86 79 * library. In particular, threading is not used so there is no
cannam@86 80 * dependency on a thread library. However, libFLAC does not use
cannam@86 81 * global variables and should be thread-safe.
cannam@86 82 *
cannam@86 83 * libFLAC also supports encoding to and decoding from Ogg FLAC.
cannam@86 84 * However the metadata editing interfaces currently have limited
cannam@86 85 * read-only support for Ogg FLAC files.
cannam@86 86 *
cannam@86 87 * \section cpp_api FLAC C++ API
cannam@86 88 *
cannam@86 89 * The FLAC C++ API is a set of classes that encapsulate the
cannam@86 90 * structures and functions in libFLAC. They provide slightly more
cannam@86 91 * functionality with respect to metadata but are otherwise
cannam@86 92 * equivalent. For the most part, they share the same usage as
cannam@86 93 * their counterparts in libFLAC, and the FLAC C API documentation
cannam@86 94 * can be used as a supplement. The public include files
cannam@86 95 * for the C++ API will be installed in your include area (for
cannam@86 96 * example /usr/include/FLAC++/...).
cannam@86 97 *
cannam@86 98 * libFLAC++ is also licensed under
cannam@86 99 * <A HREF="../license.html">Xiph's BSD license</A>.
cannam@86 100 *
cannam@86 101 * \section getting_started Getting Started
cannam@86 102 *
cannam@86 103 * A good starting point for learning the API is to browse through
cannam@86 104 * the <A HREF="modules.html">modules</A>. Modules are logical
cannam@86 105 * groupings of related functions or classes, which correspond roughly
cannam@86 106 * to header files or sections of header files. Each module includes a
cannam@86 107 * detailed description of the general usage of its functions or
cannam@86 108 * classes.
cannam@86 109 *
cannam@86 110 * From there you can go on to look at the documentation of
cannam@86 111 * individual functions. You can see different views of the individual
cannam@86 112 * functions through the links in top bar across this page.
cannam@86 113 *
cannam@86 114 * If you prefer a more hands-on approach, you can jump right to some
cannam@86 115 * <A HREF="../documentation_example_code.html">example code</A>.
cannam@86 116 *
cannam@86 117 * \section porting_guide Porting Guide
cannam@86 118 *
cannam@86 119 * Starting with FLAC 1.1.3 a \link porting Porting Guide \endlink
cannam@86 120 * has been introduced which gives detailed instructions on how to
cannam@86 121 * port your code to newer versions of FLAC.
cannam@86 122 *
cannam@86 123 * \section embedded_developers Embedded Developers
cannam@86 124 *
cannam@86 125 * libFLAC has grown larger over time as more functionality has been
cannam@86 126 * included, but much of it may be unnecessary for a particular embedded
cannam@86 127 * implementation. Unused parts may be pruned by some simple editing of
cannam@86 128 * src/libFLAC/Makefile.am. In general, the decoders, encoders, and
cannam@86 129 * metadata interface are all independent from each other.
cannam@86 130 *
cannam@86 131 * It is easiest to just describe the dependencies:
cannam@86 132 *
cannam@86 133 * - All modules depend on the \link flac_format Format \endlink module.
cannam@86 134 * - The decoders and encoders depend on the bitbuffer.
cannam@86 135 * - The decoder is independent of the encoder. The encoder uses the
cannam@86 136 * decoder because of the verify feature, but this can be removed if
cannam@86 137 * not needed.
cannam@86 138 * - Parts of the metadata interface require the stream decoder (but not
cannam@86 139 * the encoder).
cannam@86 140 * - Ogg support is selectable through the compile time macro
cannam@86 141 * \c FLAC__HAS_OGG.
cannam@86 142 *
cannam@86 143 * For example, if your application only requires the stream decoder, no
cannam@86 144 * encoder, and no metadata interface, you can remove the stream encoder
cannam@86 145 * and the metadata interface, which will greatly reduce the size of the
cannam@86 146 * library.
cannam@86 147 *
cannam@86 148 * Also, there are several places in the libFLAC code with comments marked
cannam@86 149 * with "OPT:" where a #define can be changed to enable code that might be
cannam@86 150 * faster on a specific platform. Experimenting with these can yield faster
cannam@86 151 * binaries.
cannam@86 152 */
cannam@86 153
cannam@86 154 /** \defgroup porting Porting Guide for New Versions
cannam@86 155 *
cannam@86 156 * This module describes differences in the library interfaces from
cannam@86 157 * version to version. It assists in the porting of code that uses
cannam@86 158 * the libraries to newer versions of FLAC.
cannam@86 159 *
cannam@86 160 * One simple facility for making porting easier that has been added
cannam@86 161 * in FLAC 1.1.3 is a set of \c #defines in \c export.h of each
cannam@86 162 * library's includes (e.g. \c include/FLAC/export.h). The
cannam@86 163 * \c #defines mirror the libraries'
cannam@86 164 * <A HREF="http://www.gnu.org/software/libtool/manual.html#Libtool-versioning">libtool version numbers</A>,
cannam@86 165 * e.g. in libFLAC there are \c FLAC_API_VERSION_CURRENT,
cannam@86 166 * \c FLAC_API_VERSION_REVISION, and \c FLAC_API_VERSION_AGE.
cannam@86 167 * These can be used to support multiple versions of an API during the
cannam@86 168 * transition phase, e.g.
cannam@86 169 *
cannam@86 170 * \code
cannam@86 171 * #if !defined(FLAC_API_VERSION_CURRENT) || FLAC_API_VERSION_CURRENT <= 7
cannam@86 172 * legacy code
cannam@86 173 * #else
cannam@86 174 * new code
cannam@86 175 * #endif
cannam@86 176 * \endcode
cannam@86 177 *
cannam@86 178 * The the source will work for multiple versions and the legacy code can
cannam@86 179 * easily be removed when the transition is complete.
cannam@86 180 *
cannam@86 181 * Another available symbol is FLAC_API_SUPPORTS_OGG_FLAC (defined in
cannam@86 182 * include/FLAC/export.h), which can be used to determine whether or not
cannam@86 183 * the library has been compiled with support for Ogg FLAC. This is
cannam@86 184 * simpler than trying to call an Ogg init function and catching the
cannam@86 185 * error.
cannam@86 186 */
cannam@86 187
cannam@86 188 /** \defgroup porting_1_1_2_to_1_1_3 Porting from FLAC 1.1.2 to 1.1.3
cannam@86 189 * \ingroup porting
cannam@86 190 *
cannam@86 191 * \brief
cannam@86 192 * This module describes porting from FLAC 1.1.2 to FLAC 1.1.3.
cannam@86 193 *
cannam@86 194 * The main change between the APIs in 1.1.2 and 1.1.3 is that they have
cannam@86 195 * been simplified. First, libOggFLAC has been merged into libFLAC and
cannam@86 196 * libOggFLAC++ has been merged into libFLAC++. Second, both the three
cannam@86 197 * decoding layers and three encoding layers have been merged into a
cannam@86 198 * single stream decoder and stream encoder. That is, the functionality
cannam@86 199 * of FLAC__SeekableStreamDecoder and FLAC__FileDecoder has been merged
cannam@86 200 * into FLAC__StreamDecoder, and FLAC__SeekableStreamEncoder and
cannam@86 201 * FLAC__FileEncoder into FLAC__StreamEncoder. Only the
cannam@86 202 * FLAC__StreamDecoder and FLAC__StreamEncoder remain. What this means
cannam@86 203 * is there is now a single API that can be used to encode or decode
cannam@86 204 * streams to/from native FLAC or Ogg FLAC and the single API can work
cannam@86 205 * on both seekable and non-seekable streams.
cannam@86 206 *
cannam@86 207 * Instead of creating an encoder or decoder of a certain layer, now the
cannam@86 208 * client will always create a FLAC__StreamEncoder or
cannam@86 209 * FLAC__StreamDecoder. The old layers are now differentiated by the
cannam@86 210 * initialization function. For example, for the decoder,
cannam@86 211 * FLAC__stream_decoder_init() has been replaced by
cannam@86 212 * FLAC__stream_decoder_init_stream(). This init function takes
cannam@86 213 * callbacks for the I/O, and the seeking callbacks are optional. This
cannam@86 214 * allows the client to use the same object for seekable and
cannam@86 215 * non-seekable streams. For decoding a FLAC file directly, the client
cannam@86 216 * can use FLAC__stream_decoder_init_file() and pass just a filename
cannam@86 217 * and fewer callbacks; most of the other callbacks are supplied
cannam@86 218 * internally. For situations where fopen()ing by filename is not
cannam@86 219 * possible (e.g. Unicode filenames on Windows) the client can instead
cannam@86 220 * open the file itself and supply the FILE* to
cannam@86 221 * FLAC__stream_decoder_init_FILE(). The init functions now returns a
cannam@86 222 * FLAC__StreamDecoderInitStatus instead of FLAC__StreamDecoderState.
cannam@86 223 * Since the callbacks and client data are now passed to the init
cannam@86 224 * function, the FLAC__stream_decoder_set_*_callback() functions and
cannam@86 225 * FLAC__stream_decoder_set_client_data() are no longer needed. The
cannam@86 226 * rest of the calls to the decoder are the same as before.
cannam@86 227 *
cannam@86 228 * There are counterpart init functions for Ogg FLAC, e.g.
cannam@86 229 * FLAC__stream_decoder_init_ogg_stream(). All the rest of the calls
cannam@86 230 * and callbacks are the same as for native FLAC.
cannam@86 231 *
cannam@86 232 * As an example, in FLAC 1.1.2 a seekable stream decoder would have
cannam@86 233 * been set up like so:
cannam@86 234 *
cannam@86 235 * \code
cannam@86 236 * FLAC__SeekableStreamDecoder *decoder = FLAC__seekable_stream_decoder_new();
cannam@86 237 * if(decoder == NULL) do_something;
cannam@86 238 * FLAC__seekable_stream_decoder_set_md5_checking(decoder, true);
cannam@86 239 * [... other settings ...]
cannam@86 240 * FLAC__seekable_stream_decoder_set_read_callback(decoder, my_read_callback);
cannam@86 241 * FLAC__seekable_stream_decoder_set_seek_callback(decoder, my_seek_callback);
cannam@86 242 * FLAC__seekable_stream_decoder_set_tell_callback(decoder, my_tell_callback);
cannam@86 243 * FLAC__seekable_stream_decoder_set_length_callback(decoder, my_length_callback);
cannam@86 244 * FLAC__seekable_stream_decoder_set_eof_callback(decoder, my_eof_callback);
cannam@86 245 * FLAC__seekable_stream_decoder_set_write_callback(decoder, my_write_callback);
cannam@86 246 * FLAC__seekable_stream_decoder_set_metadata_callback(decoder, my_metadata_callback);
cannam@86 247 * FLAC__seekable_stream_decoder_set_error_callback(decoder, my_error_callback);
cannam@86 248 * FLAC__seekable_stream_decoder_set_client_data(decoder, my_client_data);
cannam@86 249 * if(FLAC__seekable_stream_decoder_init(decoder) != FLAC__SEEKABLE_STREAM_DECODER_OK) do_something;
cannam@86 250 * \endcode
cannam@86 251 *
cannam@86 252 * In FLAC 1.1.3 it is like this:
cannam@86 253 *
cannam@86 254 * \code
cannam@86 255 * FLAC__StreamDecoder *decoder = FLAC__stream_decoder_new();
cannam@86 256 * if(decoder == NULL) do_something;
cannam@86 257 * FLAC__stream_decoder_set_md5_checking(decoder, true);
cannam@86 258 * [... other settings ...]
cannam@86 259 * if(FLAC__stream_decoder_init_stream(
cannam@86 260 * decoder,
cannam@86 261 * my_read_callback,
cannam@86 262 * my_seek_callback, // or NULL
cannam@86 263 * my_tell_callback, // or NULL
cannam@86 264 * my_length_callback, // or NULL
cannam@86 265 * my_eof_callback, // or NULL
cannam@86 266 * my_write_callback,
cannam@86 267 * my_metadata_callback, // or NULL
cannam@86 268 * my_error_callback,
cannam@86 269 * my_client_data
cannam@86 270 * ) != FLAC__STREAM_DECODER_INIT_STATUS_OK) do_something;
cannam@86 271 * \endcode
cannam@86 272 *
cannam@86 273 * or you could do;
cannam@86 274 *
cannam@86 275 * \code
cannam@86 276 * [...]
cannam@86 277 * FILE *file = fopen("somefile.flac","rb");
cannam@86 278 * if(file == NULL) do_somthing;
cannam@86 279 * if(FLAC__stream_decoder_init_FILE(
cannam@86 280 * decoder,
cannam@86 281 * file,
cannam@86 282 * my_write_callback,
cannam@86 283 * my_metadata_callback, // or NULL
cannam@86 284 * my_error_callback,
cannam@86 285 * my_client_data
cannam@86 286 * ) != FLAC__STREAM_DECODER_INIT_STATUS_OK) do_something;
cannam@86 287 * \endcode
cannam@86 288 *
cannam@86 289 * or just:
cannam@86 290 *
cannam@86 291 * \code
cannam@86 292 * [...]
cannam@86 293 * if(FLAC__stream_decoder_init_file(
cannam@86 294 * decoder,
cannam@86 295 * "somefile.flac",
cannam@86 296 * my_write_callback,
cannam@86 297 * my_metadata_callback, // or NULL
cannam@86 298 * my_error_callback,
cannam@86 299 * my_client_data
cannam@86 300 * ) != FLAC__STREAM_DECODER_INIT_STATUS_OK) do_something;
cannam@86 301 * \endcode
cannam@86 302 *
cannam@86 303 * Another small change to the decoder is in how it handles unparseable
cannam@86 304 * streams. Before, when the decoder found an unparseable stream
cannam@86 305 * (reserved for when the decoder encounters a stream from a future
cannam@86 306 * encoder that it can't parse), it changed the state to
cannam@86 307 * \c FLAC__STREAM_DECODER_UNPARSEABLE_STREAM. Now the decoder instead
cannam@86 308 * drops sync and calls the error callback with a new error code
cannam@86 309 * \c FLAC__STREAM_DECODER_ERROR_STATUS_UNPARSEABLE_STREAM. This is
cannam@86 310 * more robust. If your error callback does not discriminate on the the
cannam@86 311 * error state, your code does not need to be changed.
cannam@86 312 *
cannam@86 313 * The encoder now has a new setting:
cannam@86 314 * FLAC__stream_encoder_set_apodization(). This is for setting the
cannam@86 315 * method used to window the data before LPC analysis. You only need to
cannam@86 316 * add a call to this function if the default is not suitable. There
cannam@86 317 * are also two new convenience functions that may be useful:
cannam@86 318 * FLAC__metadata_object_cuesheet_calculate_cddb_id() and
cannam@86 319 * FLAC__metadata_get_cuesheet().
cannam@86 320 *
cannam@86 321 * The \a bytes parameter to FLAC__StreamDecoderReadCallback,
cannam@86 322 * FLAC__StreamEncoderReadCallback, and FLAC__StreamEncoderWriteCallback
cannam@86 323 * is now \c size_t instead of \c unsigned.
cannam@86 324 */
cannam@86 325
cannam@86 326 /** \defgroup porting_1_1_3_to_1_1_4 Porting from FLAC 1.1.3 to 1.1.4
cannam@86 327 * \ingroup porting
cannam@86 328 *
cannam@86 329 * \brief
cannam@86 330 * This module describes porting from FLAC 1.1.3 to FLAC 1.1.4.
cannam@86 331 *
cannam@86 332 * There were no changes to any of the interfaces from 1.1.3 to 1.1.4.
cannam@86 333 * There was a slight change in the implementation of
cannam@86 334 * FLAC__stream_encoder_set_metadata(); the function now makes a copy
cannam@86 335 * of the \a metadata array of pointers so the client no longer needs
cannam@86 336 * to maintain it after the call. The objects themselves that are
cannam@86 337 * pointed to by the array are still not copied though and must be
cannam@86 338 * maintained until the call to FLAC__stream_encoder_finish().
cannam@86 339 */
cannam@86 340
cannam@86 341 /** \defgroup porting_1_1_4_to_1_2_0 Porting from FLAC 1.1.4 to 1.2.0
cannam@86 342 * \ingroup porting
cannam@86 343 *
cannam@86 344 * \brief
cannam@86 345 * This module describes porting from FLAC 1.1.4 to FLAC 1.2.0.
cannam@86 346 *
cannam@86 347 * There were only very minor changes to the interfaces from 1.1.4 to 1.2.0.
cannam@86 348 * In libFLAC, \c FLAC__format_sample_rate_is_subset() was added.
cannam@86 349 * In libFLAC++, \c FLAC::Decoder::Stream::get_decode_position() was added.
cannam@86 350 *
cannam@86 351 * Finally, value of the constant \c FLAC__FRAME_HEADER_RESERVED_LEN
cannam@86 352 * has changed to reflect the conversion of one of the reserved bits
cannam@86 353 * into active use. It used to be \c 2 and now is \c 1. However the
cannam@86 354 * FLAC frame header length has not changed, so to skip the proper
cannam@86 355 * number of bits, use \c FLAC__FRAME_HEADER_RESERVED_LEN +
cannam@86 356 * \c FLAC__FRAME_HEADER_BLOCKING_STRATEGY_LEN
cannam@86 357 */
cannam@86 358
cannam@86 359 /** \defgroup flac FLAC C API
cannam@86 360 *
cannam@86 361 * The FLAC C API is the interface to libFLAC, a set of structures
cannam@86 362 * describing the components of FLAC streams, and functions for
cannam@86 363 * encoding and decoding streams, as well as manipulating FLAC
cannam@86 364 * metadata in files.
cannam@86 365 *
cannam@86 366 * You should start with the format components as all other modules
cannam@86 367 * are dependent on it.
cannam@86 368 */
cannam@86 369
cannam@86 370 #endif