annotate win32-mingw/include/FLAC/metadata.h @ 122:62723f530572

Remove Vamp SDK (at least from OSX directory). We're beginning to include it in the main build instead.
author Chris Cannam <cannam@all-day-breakfast.com>
date Fri, 18 Mar 2016 14:04:03 +0000
parents 07fe46ff1966
children
rev   line source
cannam@90 1 /* libFLAC - Free Lossless Audio Codec library
cannam@90 2 * Copyright (C) 2001,2002,2003,2004,2005,2006,2007 Josh Coalson
cannam@90 3 *
cannam@90 4 * Redistribution and use in source and binary forms, with or without
cannam@90 5 * modification, are permitted provided that the following conditions
cannam@90 6 * are met:
cannam@90 7 *
cannam@90 8 * - Redistributions of source code must retain the above copyright
cannam@90 9 * notice, this list of conditions and the following disclaimer.
cannam@90 10 *
cannam@90 11 * - Redistributions in binary form must reproduce the above copyright
cannam@90 12 * notice, this list of conditions and the following disclaimer in the
cannam@90 13 * documentation and/or other materials provided with the distribution.
cannam@90 14 *
cannam@90 15 * - Neither the name of the Xiph.org Foundation nor the names of its
cannam@90 16 * contributors may be used to endorse or promote products derived from
cannam@90 17 * this software without specific prior written permission.
cannam@90 18 *
cannam@90 19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
cannam@90 20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
cannam@90 21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
cannam@90 22 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
cannam@90 23 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
cannam@90 24 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
cannam@90 25 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
cannam@90 26 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
cannam@90 27 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
cannam@90 28 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
cannam@90 29 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
cannam@90 30 */
cannam@90 31
cannam@90 32 #ifndef FLAC__METADATA_H
cannam@90 33 #define FLAC__METADATA_H
cannam@90 34
cannam@90 35 #include <sys/types.h> /* for off_t */
cannam@90 36 #include "export.h"
cannam@90 37 #include "callback.h"
cannam@90 38 #include "format.h"
cannam@90 39
cannam@90 40 /* --------------------------------------------------------------------
cannam@90 41 (For an example of how all these routines are used, see the source
cannam@90 42 code for the unit tests in src/test_libFLAC/metadata_*.c, or
cannam@90 43 metaflac in src/metaflac/)
cannam@90 44 ------------------------------------------------------------------*/
cannam@90 45
cannam@90 46 /** \file include/FLAC/metadata.h
cannam@90 47 *
cannam@90 48 * \brief
cannam@90 49 * This module provides functions for creating and manipulating FLAC
cannam@90 50 * metadata blocks in memory, and three progressively more powerful
cannam@90 51 * interfaces for traversing and editing metadata in FLAC files.
cannam@90 52 *
cannam@90 53 * See the detailed documentation for each interface in the
cannam@90 54 * \link flac_metadata metadata \endlink module.
cannam@90 55 */
cannam@90 56
cannam@90 57 /** \defgroup flac_metadata FLAC/metadata.h: metadata interfaces
cannam@90 58 * \ingroup flac
cannam@90 59 *
cannam@90 60 * \brief
cannam@90 61 * This module provides functions for creating and manipulating FLAC
cannam@90 62 * metadata blocks in memory, and three progressively more powerful
cannam@90 63 * interfaces for traversing and editing metadata in native FLAC files.
cannam@90 64 * Note that currently only the Chain interface (level 2) supports Ogg
cannam@90 65 * FLAC files, and it is read-only i.e. no writing back changed
cannam@90 66 * metadata to file.
cannam@90 67 *
cannam@90 68 * There are three metadata interfaces of increasing complexity:
cannam@90 69 *
cannam@90 70 * Level 0:
cannam@90 71 * Read-only access to the STREAMINFO, VORBIS_COMMENT, CUESHEET, and
cannam@90 72 * PICTURE blocks.
cannam@90 73 *
cannam@90 74 * Level 1:
cannam@90 75 * Read-write access to all metadata blocks. This level is write-
cannam@90 76 * efficient in most cases (more on this below), and uses less memory
cannam@90 77 * than level 2.
cannam@90 78 *
cannam@90 79 * Level 2:
cannam@90 80 * Read-write access to all metadata blocks. This level is write-
cannam@90 81 * efficient in all cases, but uses more memory since all metadata for
cannam@90 82 * the whole file is read into memory and manipulated before writing
cannam@90 83 * out again.
cannam@90 84 *
cannam@90 85 * What do we mean by efficient? Since FLAC metadata appears at the
cannam@90 86 * beginning of the file, when writing metadata back to a FLAC file
cannam@90 87 * it is possible to grow or shrink the metadata such that the entire
cannam@90 88 * file must be rewritten. However, if the size remains the same during
cannam@90 89 * changes or PADDING blocks are utilized, only the metadata needs to be
cannam@90 90 * overwritten, which is much faster.
cannam@90 91 *
cannam@90 92 * Efficient means the whole file is rewritten at most one time, and only
cannam@90 93 * when necessary. Level 1 is not efficient only in the case that you
cannam@90 94 * cause more than one metadata block to grow or shrink beyond what can
cannam@90 95 * be accomodated by padding. In this case you should probably use level
cannam@90 96 * 2, which allows you to edit all the metadata for a file in memory and
cannam@90 97 * write it out all at once.
cannam@90 98 *
cannam@90 99 * All levels know how to skip over and not disturb an ID3v2 tag at the
cannam@90 100 * front of the file.
cannam@90 101 *
cannam@90 102 * All levels access files via their filenames. In addition, level 2
cannam@90 103 * has additional alternative read and write functions that take an I/O
cannam@90 104 * handle and callbacks, for situations where access by filename is not
cannam@90 105 * possible.
cannam@90 106 *
cannam@90 107 * In addition to the three interfaces, this module defines functions for
cannam@90 108 * creating and manipulating various metadata objects in memory. As we see
cannam@90 109 * from the Format module, FLAC metadata blocks in memory are very primitive
cannam@90 110 * structures for storing information in an efficient way. Reading
cannam@90 111 * information from the structures is easy but creating or modifying them
cannam@90 112 * directly is more complex. The metadata object routines here facilitate
cannam@90 113 * this by taking care of the consistency and memory management drudgery.
cannam@90 114 *
cannam@90 115 * Unless you will be using the level 1 or 2 interfaces to modify existing
cannam@90 116 * metadata however, you will not probably not need these.
cannam@90 117 *
cannam@90 118 * From a dependency standpoint, none of the encoders or decoders require
cannam@90 119 * the metadata module. This is so that embedded users can strip out the
cannam@90 120 * metadata module from libFLAC to reduce the size and complexity.
cannam@90 121 */
cannam@90 122
cannam@90 123 #ifdef __cplusplus
cannam@90 124 extern "C" {
cannam@90 125 #endif
cannam@90 126
cannam@90 127
cannam@90 128 /** \defgroup flac_metadata_level0 FLAC/metadata.h: metadata level 0 interface
cannam@90 129 * \ingroup flac_metadata
cannam@90 130 *
cannam@90 131 * \brief
cannam@90 132 * The level 0 interface consists of individual routines to read the
cannam@90 133 * STREAMINFO, VORBIS_COMMENT, CUESHEET, and PICTURE blocks, requiring
cannam@90 134 * only a filename.
cannam@90 135 *
cannam@90 136 * They try to skip any ID3v2 tag at the head of the file.
cannam@90 137 *
cannam@90 138 * \{
cannam@90 139 */
cannam@90 140
cannam@90 141 /** Read the STREAMINFO metadata block of the given FLAC file. This function
cannam@90 142 * will try to skip any ID3v2 tag at the head of the file.
cannam@90 143 *
cannam@90 144 * \param filename The path to the FLAC file to read.
cannam@90 145 * \param streaminfo A pointer to space for the STREAMINFO block. Since
cannam@90 146 * FLAC__StreamMetadata is a simple structure with no
cannam@90 147 * memory allocation involved, you pass the address of
cannam@90 148 * an existing structure. It need not be initialized.
cannam@90 149 * \assert
cannam@90 150 * \code filename != NULL \endcode
cannam@90 151 * \code streaminfo != NULL \endcode
cannam@90 152 * \retval FLAC__bool
cannam@90 153 * \c true if a valid STREAMINFO block was read from \a filename. Returns
cannam@90 154 * \c false if there was a memory allocation error, a file decoder error,
cannam@90 155 * or the file contained no STREAMINFO block. (A memory allocation error
cannam@90 156 * is possible because this function must set up a file decoder.)
cannam@90 157 */
cannam@90 158 FLAC_API FLAC__bool FLAC__metadata_get_streaminfo(const char *filename, FLAC__StreamMetadata *streaminfo);
cannam@90 159
cannam@90 160 /** Read the VORBIS_COMMENT metadata block of the given FLAC file. This
cannam@90 161 * function will try to skip any ID3v2 tag at the head of the file.
cannam@90 162 *
cannam@90 163 * \param filename The path to the FLAC file to read.
cannam@90 164 * \param tags The address where the returned pointer will be
cannam@90 165 * stored. The \a tags object must be deleted by
cannam@90 166 * the caller using FLAC__metadata_object_delete().
cannam@90 167 * \assert
cannam@90 168 * \code filename != NULL \endcode
cannam@90 169 * \code tags != NULL \endcode
cannam@90 170 * \retval FLAC__bool
cannam@90 171 * \c true if a valid VORBIS_COMMENT block was read from \a filename,
cannam@90 172 * and \a *tags will be set to the address of the metadata structure.
cannam@90 173 * Returns \c false if there was a memory allocation error, a file
cannam@90 174 * decoder error, or the file contained no VORBIS_COMMENT block, and
cannam@90 175 * \a *tags will be set to \c NULL.
cannam@90 176 */
cannam@90 177 FLAC_API FLAC__bool FLAC__metadata_get_tags(const char *filename, FLAC__StreamMetadata **tags);
cannam@90 178
cannam@90 179 /** Read the CUESHEET metadata block of the given FLAC file. This
cannam@90 180 * function will try to skip any ID3v2 tag at the head of the file.
cannam@90 181 *
cannam@90 182 * \param filename The path to the FLAC file to read.
cannam@90 183 * \param cuesheet The address where the returned pointer will be
cannam@90 184 * stored. The \a cuesheet object must be deleted by
cannam@90 185 * the caller using FLAC__metadata_object_delete().
cannam@90 186 * \assert
cannam@90 187 * \code filename != NULL \endcode
cannam@90 188 * \code cuesheet != NULL \endcode
cannam@90 189 * \retval FLAC__bool
cannam@90 190 * \c true if a valid CUESHEET block was read from \a filename,
cannam@90 191 * and \a *cuesheet will be set to the address of the metadata
cannam@90 192 * structure. Returns \c false if there was a memory allocation
cannam@90 193 * error, a file decoder error, or the file contained no CUESHEET
cannam@90 194 * block, and \a *cuesheet will be set to \c NULL.
cannam@90 195 */
cannam@90 196 FLAC_API FLAC__bool FLAC__metadata_get_cuesheet(const char *filename, FLAC__StreamMetadata **cuesheet);
cannam@90 197
cannam@90 198 /** Read a PICTURE metadata block of the given FLAC file. This
cannam@90 199 * function will try to skip any ID3v2 tag at the head of the file.
cannam@90 200 * Since there can be more than one PICTURE block in a file, this
cannam@90 201 * function takes a number of parameters that act as constraints to
cannam@90 202 * the search. The PICTURE block with the largest area matching all
cannam@90 203 * the constraints will be returned, or \a *picture will be set to
cannam@90 204 * \c NULL if there was no such block.
cannam@90 205 *
cannam@90 206 * \param filename The path to the FLAC file to read.
cannam@90 207 * \param picture The address where the returned pointer will be
cannam@90 208 * stored. The \a picture object must be deleted by
cannam@90 209 * the caller using FLAC__metadata_object_delete().
cannam@90 210 * \param type The desired picture type. Use \c -1 to mean
cannam@90 211 * "any type".
cannam@90 212 * \param mime_type The desired MIME type, e.g. "image/jpeg". The
cannam@90 213 * string will be matched exactly. Use \c NULL to
cannam@90 214 * mean "any MIME type".
cannam@90 215 * \param description The desired description. The string will be
cannam@90 216 * matched exactly. Use \c NULL to mean "any
cannam@90 217 * description".
cannam@90 218 * \param max_width The maximum width in pixels desired. Use
cannam@90 219 * \c (unsigned)(-1) to mean "any width".
cannam@90 220 * \param max_height The maximum height in pixels desired. Use
cannam@90 221 * \c (unsigned)(-1) to mean "any height".
cannam@90 222 * \param max_depth The maximum color depth in bits-per-pixel desired.
cannam@90 223 * Use \c (unsigned)(-1) to mean "any depth".
cannam@90 224 * \param max_colors The maximum number of colors desired. Use
cannam@90 225 * \c (unsigned)(-1) to mean "any number of colors".
cannam@90 226 * \assert
cannam@90 227 * \code filename != NULL \endcode
cannam@90 228 * \code picture != NULL \endcode
cannam@90 229 * \retval FLAC__bool
cannam@90 230 * \c true if a valid PICTURE block was read from \a filename,
cannam@90 231 * and \a *picture will be set to the address of the metadata
cannam@90 232 * structure. Returns \c false if there was a memory allocation
cannam@90 233 * error, a file decoder error, or the file contained no PICTURE
cannam@90 234 * block, and \a *picture will be set to \c NULL.
cannam@90 235 */
cannam@90 236 FLAC_API FLAC__bool FLAC__metadata_get_picture(const char *filename, FLAC__StreamMetadata **picture, FLAC__StreamMetadata_Picture_Type type, const char *mime_type, const FLAC__byte *description, unsigned max_width, unsigned max_height, unsigned max_depth, unsigned max_colors);
cannam@90 237
cannam@90 238 /* \} */
cannam@90 239
cannam@90 240
cannam@90 241 /** \defgroup flac_metadata_level1 FLAC/metadata.h: metadata level 1 interface
cannam@90 242 * \ingroup flac_metadata
cannam@90 243 *
cannam@90 244 * \brief
cannam@90 245 * The level 1 interface provides read-write access to FLAC file metadata and
cannam@90 246 * operates directly on the FLAC file.
cannam@90 247 *
cannam@90 248 * The general usage of this interface is:
cannam@90 249 *
cannam@90 250 * - Create an iterator using FLAC__metadata_simple_iterator_new()
cannam@90 251 * - Attach it to a file using FLAC__metadata_simple_iterator_init() and check
cannam@90 252 * the exit code. Call FLAC__metadata_simple_iterator_is_writable() to
cannam@90 253 * see if the file is writable, or only read access is allowed.
cannam@90 254 * - Use FLAC__metadata_simple_iterator_next() and
cannam@90 255 * FLAC__metadata_simple_iterator_prev() to traverse the blocks.
cannam@90 256 * This is does not read the actual blocks themselves.
cannam@90 257 * FLAC__metadata_simple_iterator_next() is relatively fast.
cannam@90 258 * FLAC__metadata_simple_iterator_prev() is slower since it needs to search
cannam@90 259 * forward from the front of the file.
cannam@90 260 * - Use FLAC__metadata_simple_iterator_get_block_type() or
cannam@90 261 * FLAC__metadata_simple_iterator_get_block() to access the actual data at
cannam@90 262 * the current iterator position. The returned object is yours to modify
cannam@90 263 * and free.
cannam@90 264 * - Use FLAC__metadata_simple_iterator_set_block() to write a modified block
cannam@90 265 * back. You must have write permission to the original file. Make sure to
cannam@90 266 * read the whole comment to FLAC__metadata_simple_iterator_set_block()
cannam@90 267 * below.
cannam@90 268 * - Use FLAC__metadata_simple_iterator_insert_block_after() to add new blocks.
cannam@90 269 * Use the object creation functions from
cannam@90 270 * \link flac_metadata_object here \endlink to generate new objects.
cannam@90 271 * - Use FLAC__metadata_simple_iterator_delete_block() to remove the block
cannam@90 272 * currently referred to by the iterator, or replace it with padding.
cannam@90 273 * - Destroy the iterator with FLAC__metadata_simple_iterator_delete() when
cannam@90 274 * finished.
cannam@90 275 *
cannam@90 276 * \note
cannam@90 277 * The FLAC file remains open the whole time between
cannam@90 278 * FLAC__metadata_simple_iterator_init() and
cannam@90 279 * FLAC__metadata_simple_iterator_delete(), so make sure you are not altering
cannam@90 280 * the file during this time.
cannam@90 281 *
cannam@90 282 * \note
cannam@90 283 * Do not modify the \a is_last, \a length, or \a type fields of returned
cannam@90 284 * FLAC__StreamMetadata objects. These are managed automatically.
cannam@90 285 *
cannam@90 286 * \note
cannam@90 287 * If any of the modification functions
cannam@90 288 * (FLAC__metadata_simple_iterator_set_block(),
cannam@90 289 * FLAC__metadata_simple_iterator_delete_block(),
cannam@90 290 * FLAC__metadata_simple_iterator_insert_block_after(), etc.) return \c false,
cannam@90 291 * you should delete the iterator as it may no longer be valid.
cannam@90 292 *
cannam@90 293 * \{
cannam@90 294 */
cannam@90 295
cannam@90 296 struct FLAC__Metadata_SimpleIterator;
cannam@90 297 /** The opaque structure definition for the level 1 iterator type.
cannam@90 298 * See the
cannam@90 299 * \link flac_metadata_level1 metadata level 1 module \endlink
cannam@90 300 * for a detailed description.
cannam@90 301 */
cannam@90 302 typedef struct FLAC__Metadata_SimpleIterator FLAC__Metadata_SimpleIterator;
cannam@90 303
cannam@90 304 /** Status type for FLAC__Metadata_SimpleIterator.
cannam@90 305 *
cannam@90 306 * The iterator's current status can be obtained by calling FLAC__metadata_simple_iterator_status().
cannam@90 307 */
cannam@90 308 typedef enum {
cannam@90 309
cannam@90 310 FLAC__METADATA_SIMPLE_ITERATOR_STATUS_OK = 0,
cannam@90 311 /**< The iterator is in the normal OK state */
cannam@90 312
cannam@90 313 FLAC__METADATA_SIMPLE_ITERATOR_STATUS_ILLEGAL_INPUT,
cannam@90 314 /**< The data passed into a function violated the function's usage criteria */
cannam@90 315
cannam@90 316 FLAC__METADATA_SIMPLE_ITERATOR_STATUS_ERROR_OPENING_FILE,
cannam@90 317 /**< The iterator could not open the target file */
cannam@90 318
cannam@90 319 FLAC__METADATA_SIMPLE_ITERATOR_STATUS_NOT_A_FLAC_FILE,
cannam@90 320 /**< The iterator could not find the FLAC signature at the start of the file */
cannam@90 321
cannam@90 322 FLAC__METADATA_SIMPLE_ITERATOR_STATUS_NOT_WRITABLE,
cannam@90 323 /**< The iterator tried to write to a file that was not writable */
cannam@90 324
cannam@90 325 FLAC__METADATA_SIMPLE_ITERATOR_STATUS_BAD_METADATA,
cannam@90 326 /**< The iterator encountered input that does not conform to the FLAC metadata specification */
cannam@90 327
cannam@90 328 FLAC__METADATA_SIMPLE_ITERATOR_STATUS_READ_ERROR,
cannam@90 329 /**< The iterator encountered an error while reading the FLAC file */
cannam@90 330
cannam@90 331 FLAC__METADATA_SIMPLE_ITERATOR_STATUS_SEEK_ERROR,
cannam@90 332 /**< The iterator encountered an error while seeking in the FLAC file */
cannam@90 333
cannam@90 334 FLAC__METADATA_SIMPLE_ITERATOR_STATUS_WRITE_ERROR,
cannam@90 335 /**< The iterator encountered an error while writing the FLAC file */
cannam@90 336
cannam@90 337 FLAC__METADATA_SIMPLE_ITERATOR_STATUS_RENAME_ERROR,
cannam@90 338 /**< The iterator encountered an error renaming the FLAC file */
cannam@90 339
cannam@90 340 FLAC__METADATA_SIMPLE_ITERATOR_STATUS_UNLINK_ERROR,
cannam@90 341 /**< The iterator encountered an error removing the temporary file */
cannam@90 342
cannam@90 343 FLAC__METADATA_SIMPLE_ITERATOR_STATUS_MEMORY_ALLOCATION_ERROR,
cannam@90 344 /**< Memory allocation failed */
cannam@90 345
cannam@90 346 FLAC__METADATA_SIMPLE_ITERATOR_STATUS_INTERNAL_ERROR
cannam@90 347 /**< The caller violated an assertion or an unexpected error occurred */
cannam@90 348
cannam@90 349 } FLAC__Metadata_SimpleIteratorStatus;
cannam@90 350
cannam@90 351 /** Maps a FLAC__Metadata_SimpleIteratorStatus to a C string.
cannam@90 352 *
cannam@90 353 * Using a FLAC__Metadata_SimpleIteratorStatus as the index to this array
cannam@90 354 * will give the string equivalent. The contents should not be modified.
cannam@90 355 */
cannam@90 356 extern FLAC_API const char * const FLAC__Metadata_SimpleIteratorStatusString[];
cannam@90 357
cannam@90 358
cannam@90 359 /** Create a new iterator instance.
cannam@90 360 *
cannam@90 361 * \retval FLAC__Metadata_SimpleIterator*
cannam@90 362 * \c NULL if there was an error allocating memory, else the new instance.
cannam@90 363 */
cannam@90 364 FLAC_API FLAC__Metadata_SimpleIterator *FLAC__metadata_simple_iterator_new(void);
cannam@90 365
cannam@90 366 /** Free an iterator instance. Deletes the object pointed to by \a iterator.
cannam@90 367 *
cannam@90 368 * \param iterator A pointer to an existing iterator.
cannam@90 369 * \assert
cannam@90 370 * \code iterator != NULL \endcode
cannam@90 371 */
cannam@90 372 FLAC_API void FLAC__metadata_simple_iterator_delete(FLAC__Metadata_SimpleIterator *iterator);
cannam@90 373
cannam@90 374 /** Get the current status of the iterator. Call this after a function
cannam@90 375 * returns \c false to get the reason for the error. Also resets the status
cannam@90 376 * to FLAC__METADATA_SIMPLE_ITERATOR_STATUS_OK.
cannam@90 377 *
cannam@90 378 * \param iterator A pointer to an existing iterator.
cannam@90 379 * \assert
cannam@90 380 * \code iterator != NULL \endcode
cannam@90 381 * \retval FLAC__Metadata_SimpleIteratorStatus
cannam@90 382 * The current status of the iterator.
cannam@90 383 */
cannam@90 384 FLAC_API FLAC__Metadata_SimpleIteratorStatus FLAC__metadata_simple_iterator_status(FLAC__Metadata_SimpleIterator *iterator);
cannam@90 385
cannam@90 386 /** Initialize the iterator to point to the first metadata block in the
cannam@90 387 * given FLAC file.
cannam@90 388 *
cannam@90 389 * \param iterator A pointer to an existing iterator.
cannam@90 390 * \param filename The path to the FLAC file.
cannam@90 391 * \param read_only If \c true, the FLAC file will be opened
cannam@90 392 * in read-only mode; if \c false, the FLAC
cannam@90 393 * file will be opened for edit even if no
cannam@90 394 * edits are performed.
cannam@90 395 * \param preserve_file_stats If \c true, the owner and modification
cannam@90 396 * time will be preserved even if the FLAC
cannam@90 397 * file is written to.
cannam@90 398 * \assert
cannam@90 399 * \code iterator != NULL \endcode
cannam@90 400 * \code filename != NULL \endcode
cannam@90 401 * \retval FLAC__bool
cannam@90 402 * \c false if a memory allocation error occurs, the file can't be
cannam@90 403 * opened, or another error occurs, else \c true.
cannam@90 404 */
cannam@90 405 FLAC_API FLAC__bool FLAC__metadata_simple_iterator_init(FLAC__Metadata_SimpleIterator *iterator, const char *filename, FLAC__bool read_only, FLAC__bool preserve_file_stats);
cannam@90 406
cannam@90 407 /** Returns \c true if the FLAC file is writable. If \c false, calls to
cannam@90 408 * FLAC__metadata_simple_iterator_set_block() and
cannam@90 409 * FLAC__metadata_simple_iterator_insert_block_after() will fail.
cannam@90 410 *
cannam@90 411 * \param iterator A pointer to an existing iterator.
cannam@90 412 * \assert
cannam@90 413 * \code iterator != NULL \endcode
cannam@90 414 * \retval FLAC__bool
cannam@90 415 * See above.
cannam@90 416 */
cannam@90 417 FLAC_API FLAC__bool FLAC__metadata_simple_iterator_is_writable(const FLAC__Metadata_SimpleIterator *iterator);
cannam@90 418
cannam@90 419 /** Moves the iterator forward one metadata block, returning \c false if
cannam@90 420 * already at the end.
cannam@90 421 *
cannam@90 422 * \param iterator A pointer to an existing initialized iterator.
cannam@90 423 * \assert
cannam@90 424 * \code iterator != NULL \endcode
cannam@90 425 * \a iterator has been successfully initialized with
cannam@90 426 * FLAC__metadata_simple_iterator_init()
cannam@90 427 * \retval FLAC__bool
cannam@90 428 * \c false if already at the last metadata block of the chain, else
cannam@90 429 * \c true.
cannam@90 430 */
cannam@90 431 FLAC_API FLAC__bool FLAC__metadata_simple_iterator_next(FLAC__Metadata_SimpleIterator *iterator);
cannam@90 432
cannam@90 433 /** Moves the iterator backward one metadata block, returning \c false if
cannam@90 434 * already at the beginning.
cannam@90 435 *
cannam@90 436 * \param iterator A pointer to an existing initialized iterator.
cannam@90 437 * \assert
cannam@90 438 * \code iterator != NULL \endcode
cannam@90 439 * \a iterator has been successfully initialized with
cannam@90 440 * FLAC__metadata_simple_iterator_init()
cannam@90 441 * \retval FLAC__bool
cannam@90 442 * \c false if already at the first metadata block of the chain, else
cannam@90 443 * \c true.
cannam@90 444 */
cannam@90 445 FLAC_API FLAC__bool FLAC__metadata_simple_iterator_prev(FLAC__Metadata_SimpleIterator *iterator);
cannam@90 446
cannam@90 447 /** Returns a flag telling if the current metadata block is the last.
cannam@90 448 *
cannam@90 449 * \param iterator A pointer to an existing initialized iterator.
cannam@90 450 * \assert
cannam@90 451 * \code iterator != NULL \endcode
cannam@90 452 * \a iterator has been successfully initialized with
cannam@90 453 * FLAC__metadata_simple_iterator_init()
cannam@90 454 * \retval FLAC__bool
cannam@90 455 * \c true if the current metadata block is the last in the file,
cannam@90 456 * else \c false.
cannam@90 457 */
cannam@90 458 FLAC_API FLAC__bool FLAC__metadata_simple_iterator_is_last(const FLAC__Metadata_SimpleIterator *iterator);
cannam@90 459
cannam@90 460 /** Get the offset of the metadata block at the current position. This
cannam@90 461 * avoids reading the actual block data which can save time for large
cannam@90 462 * blocks.
cannam@90 463 *
cannam@90 464 * \param iterator A pointer to an existing initialized iterator.
cannam@90 465 * \assert
cannam@90 466 * \code iterator != NULL \endcode
cannam@90 467 * \a iterator has been successfully initialized with
cannam@90 468 * FLAC__metadata_simple_iterator_init()
cannam@90 469 * \retval off_t
cannam@90 470 * The offset of the metadata block at the current iterator position.
cannam@90 471 * This is the byte offset relative to the beginning of the file of
cannam@90 472 * the current metadata block's header.
cannam@90 473 */
cannam@90 474 FLAC_API off_t FLAC__metadata_simple_iterator_get_block_offset(const FLAC__Metadata_SimpleIterator *iterator);
cannam@90 475
cannam@90 476 /** Get the type of the metadata block at the current position. This
cannam@90 477 * avoids reading the actual block data which can save time for large
cannam@90 478 * blocks.
cannam@90 479 *
cannam@90 480 * \param iterator A pointer to an existing initialized iterator.
cannam@90 481 * \assert
cannam@90 482 * \code iterator != NULL \endcode
cannam@90 483 * \a iterator has been successfully initialized with
cannam@90 484 * FLAC__metadata_simple_iterator_init()
cannam@90 485 * \retval FLAC__MetadataType
cannam@90 486 * The type of the metadata block at the current iterator position.
cannam@90 487 */
cannam@90 488 FLAC_API FLAC__MetadataType FLAC__metadata_simple_iterator_get_block_type(const FLAC__Metadata_SimpleIterator *iterator);
cannam@90 489
cannam@90 490 /** Get the length of the metadata block at the current position. This
cannam@90 491 * avoids reading the actual block data which can save time for large
cannam@90 492 * blocks.
cannam@90 493 *
cannam@90 494 * \param iterator A pointer to an existing initialized iterator.
cannam@90 495 * \assert
cannam@90 496 * \code iterator != NULL \endcode
cannam@90 497 * \a iterator has been successfully initialized with
cannam@90 498 * FLAC__metadata_simple_iterator_init()
cannam@90 499 * \retval unsigned
cannam@90 500 * The length of the metadata block at the current iterator position.
cannam@90 501 * The is same length as that in the
cannam@90 502 * <a href="http://flac.sourceforge.net/format.html#metadata_block_header">metadata block header</a>,
cannam@90 503 * i.e. the length of the metadata body that follows the header.
cannam@90 504 */
cannam@90 505 FLAC_API unsigned FLAC__metadata_simple_iterator_get_block_length(const FLAC__Metadata_SimpleIterator *iterator);
cannam@90 506
cannam@90 507 /** Get the application ID of the \c APPLICATION block at the current
cannam@90 508 * position. This avoids reading the actual block data which can save
cannam@90 509 * time for large blocks.
cannam@90 510 *
cannam@90 511 * \param iterator A pointer to an existing initialized iterator.
cannam@90 512 * \param id A pointer to a buffer of at least \c 4 bytes where
cannam@90 513 * the ID will be stored.
cannam@90 514 * \assert
cannam@90 515 * \code iterator != NULL \endcode
cannam@90 516 * \code id != NULL \endcode
cannam@90 517 * \a iterator has been successfully initialized with
cannam@90 518 * FLAC__metadata_simple_iterator_init()
cannam@90 519 * \retval FLAC__bool
cannam@90 520 * \c true if the ID was successfully read, else \c false, in which
cannam@90 521 * case you should check FLAC__metadata_simple_iterator_status() to
cannam@90 522 * find out why. If the status is
cannam@90 523 * \c FLAC__METADATA_SIMPLE_ITERATOR_STATUS_ILLEGAL_INPUT, then the
cannam@90 524 * current metadata block is not an \c APPLICATION block. Otherwise
cannam@90 525 * if the status is
cannam@90 526 * \c FLAC__METADATA_SIMPLE_ITERATOR_STATUS_READ_ERROR or
cannam@90 527 * \c FLAC__METADATA_SIMPLE_ITERATOR_STATUS_SEEK_ERROR, an I/O error
cannam@90 528 * occurred and the iterator can no longer be used.
cannam@90 529 */
cannam@90 530 FLAC_API FLAC__bool FLAC__metadata_simple_iterator_get_application_id(FLAC__Metadata_SimpleIterator *iterator, FLAC__byte *id);
cannam@90 531
cannam@90 532 /** Get the metadata block at the current position. You can modify the
cannam@90 533 * block but must use FLAC__metadata_simple_iterator_set_block() to
cannam@90 534 * write it back to the FLAC file.
cannam@90 535 *
cannam@90 536 * You must call FLAC__metadata_object_delete() on the returned object
cannam@90 537 * when you are finished with it.
cannam@90 538 *
cannam@90 539 * \param iterator A pointer to an existing initialized iterator.
cannam@90 540 * \assert
cannam@90 541 * \code iterator != NULL \endcode
cannam@90 542 * \a iterator has been successfully initialized with
cannam@90 543 * FLAC__metadata_simple_iterator_init()
cannam@90 544 * \retval FLAC__StreamMetadata*
cannam@90 545 * The current metadata block, or \c NULL if there was a memory
cannam@90 546 * allocation error.
cannam@90 547 */
cannam@90 548 FLAC_API FLAC__StreamMetadata *FLAC__metadata_simple_iterator_get_block(FLAC__Metadata_SimpleIterator *iterator);
cannam@90 549
cannam@90 550 /** Write a block back to the FLAC file. This function tries to be
cannam@90 551 * as efficient as possible; how the block is actually written is
cannam@90 552 * shown by the following:
cannam@90 553 *
cannam@90 554 * Existing block is a STREAMINFO block and the new block is a
cannam@90 555 * STREAMINFO block: the new block is written in place. Make sure
cannam@90 556 * you know what you're doing when changing the values of a
cannam@90 557 * STREAMINFO block.
cannam@90 558 *
cannam@90 559 * Existing block is a STREAMINFO block and the new block is a
cannam@90 560 * not a STREAMINFO block: this is an error since the first block
cannam@90 561 * must be a STREAMINFO block. Returns \c false without altering the
cannam@90 562 * file.
cannam@90 563 *
cannam@90 564 * Existing block is not a STREAMINFO block and the new block is a
cannam@90 565 * STREAMINFO block: this is an error since there may be only one
cannam@90 566 * STREAMINFO block. Returns \c false without altering the file.
cannam@90 567 *
cannam@90 568 * Existing block and new block are the same length: the existing
cannam@90 569 * block will be replaced by the new block, written in place.
cannam@90 570 *
cannam@90 571 * Existing block is longer than new block: if use_padding is \c true,
cannam@90 572 * the existing block will be overwritten in place with the new
cannam@90 573 * block followed by a PADDING block, if possible, to make the total
cannam@90 574 * size the same as the existing block. Remember that a padding
cannam@90 575 * block requires at least four bytes so if the difference in size
cannam@90 576 * between the new block and existing block is less than that, the
cannam@90 577 * entire file will have to be rewritten, using the new block's
cannam@90 578 * exact size. If use_padding is \c false, the entire file will be
cannam@90 579 * rewritten, replacing the existing block by the new block.
cannam@90 580 *
cannam@90 581 * Existing block is shorter than new block: if use_padding is \c true,
cannam@90 582 * the function will try and expand the new block into the following
cannam@90 583 * PADDING block, if it exists and doing so won't shrink the PADDING
cannam@90 584 * block to less than 4 bytes. If there is no following PADDING
cannam@90 585 * block, or it will shrink to less than 4 bytes, or use_padding is
cannam@90 586 * \c false, the entire file is rewritten, replacing the existing block
cannam@90 587 * with the new block. Note that in this case any following PADDING
cannam@90 588 * block is preserved as is.
cannam@90 589 *
cannam@90 590 * After writing the block, the iterator will remain in the same
cannam@90 591 * place, i.e. pointing to the new block.
cannam@90 592 *
cannam@90 593 * \param iterator A pointer to an existing initialized iterator.
cannam@90 594 * \param block The block to set.
cannam@90 595 * \param use_padding See above.
cannam@90 596 * \assert
cannam@90 597 * \code iterator != NULL \endcode
cannam@90 598 * \a iterator has been successfully initialized with
cannam@90 599 * FLAC__metadata_simple_iterator_init()
cannam@90 600 * \code block != NULL \endcode
cannam@90 601 * \retval FLAC__bool
cannam@90 602 * \c true if successful, else \c false.
cannam@90 603 */
cannam@90 604 FLAC_API FLAC__bool FLAC__metadata_simple_iterator_set_block(FLAC__Metadata_SimpleIterator *iterator, FLAC__StreamMetadata *block, FLAC__bool use_padding);
cannam@90 605
cannam@90 606 /** This is similar to FLAC__metadata_simple_iterator_set_block()
cannam@90 607 * except that instead of writing over an existing block, it appends
cannam@90 608 * a block after the existing block. \a use_padding is again used to
cannam@90 609 * tell the function to try an expand into following padding in an
cannam@90 610 * attempt to avoid rewriting the entire file.
cannam@90 611 *
cannam@90 612 * This function will fail and return \c false if given a STREAMINFO
cannam@90 613 * block.
cannam@90 614 *
cannam@90 615 * After writing the block, the iterator will be pointing to the
cannam@90 616 * new block.
cannam@90 617 *
cannam@90 618 * \param iterator A pointer to an existing initialized iterator.
cannam@90 619 * \param block The block to set.
cannam@90 620 * \param use_padding See above.
cannam@90 621 * \assert
cannam@90 622 * \code iterator != NULL \endcode
cannam@90 623 * \a iterator has been successfully initialized with
cannam@90 624 * FLAC__metadata_simple_iterator_init()
cannam@90 625 * \code block != NULL \endcode
cannam@90 626 * \retval FLAC__bool
cannam@90 627 * \c true if successful, else \c false.
cannam@90 628 */
cannam@90 629 FLAC_API FLAC__bool FLAC__metadata_simple_iterator_insert_block_after(FLAC__Metadata_SimpleIterator *iterator, FLAC__StreamMetadata *block, FLAC__bool use_padding);
cannam@90 630
cannam@90 631 /** Deletes the block at the current position. This will cause the
cannam@90 632 * entire FLAC file to be rewritten, unless \a use_padding is \c true,
cannam@90 633 * in which case the block will be replaced by an equal-sized PADDING
cannam@90 634 * block. The iterator will be left pointing to the block before the
cannam@90 635 * one just deleted.
cannam@90 636 *
cannam@90 637 * You may not delete the STREAMINFO block.
cannam@90 638 *
cannam@90 639 * \param iterator A pointer to an existing initialized iterator.
cannam@90 640 * \param use_padding See above.
cannam@90 641 * \assert
cannam@90 642 * \code iterator != NULL \endcode
cannam@90 643 * \a iterator has been successfully initialized with
cannam@90 644 * FLAC__metadata_simple_iterator_init()
cannam@90 645 * \retval FLAC__bool
cannam@90 646 * \c true if successful, else \c false.
cannam@90 647 */
cannam@90 648 FLAC_API FLAC__bool FLAC__metadata_simple_iterator_delete_block(FLAC__Metadata_SimpleIterator *iterator, FLAC__bool use_padding);
cannam@90 649
cannam@90 650 /* \} */
cannam@90 651
cannam@90 652
cannam@90 653 /** \defgroup flac_metadata_level2 FLAC/metadata.h: metadata level 2 interface
cannam@90 654 * \ingroup flac_metadata
cannam@90 655 *
cannam@90 656 * \brief
cannam@90 657 * The level 2 interface provides read-write access to FLAC file metadata;
cannam@90 658 * all metadata is read into memory, operated on in memory, and then written
cannam@90 659 * to file, which is more efficient than level 1 when editing multiple blocks.
cannam@90 660 *
cannam@90 661 * Currently Ogg FLAC is supported for read only, via
cannam@90 662 * FLAC__metadata_chain_read_ogg() but a subsequent
cannam@90 663 * FLAC__metadata_chain_write() will fail.
cannam@90 664 *
cannam@90 665 * The general usage of this interface is:
cannam@90 666 *
cannam@90 667 * - Create a new chain using FLAC__metadata_chain_new(). A chain is a
cannam@90 668 * linked list of FLAC metadata blocks.
cannam@90 669 * - Read all metadata into the the chain from a FLAC file using
cannam@90 670 * FLAC__metadata_chain_read() or FLAC__metadata_chain_read_ogg() and
cannam@90 671 * check the status.
cannam@90 672 * - Optionally, consolidate the padding using
cannam@90 673 * FLAC__metadata_chain_merge_padding() or
cannam@90 674 * FLAC__metadata_chain_sort_padding().
cannam@90 675 * - Create a new iterator using FLAC__metadata_iterator_new()
cannam@90 676 * - Initialize the iterator to point to the first element in the chain
cannam@90 677 * using FLAC__metadata_iterator_init()
cannam@90 678 * - Traverse the chain using FLAC__metadata_iterator_next and
cannam@90 679 * FLAC__metadata_iterator_prev().
cannam@90 680 * - Get a block for reading or modification using
cannam@90 681 * FLAC__metadata_iterator_get_block(). The pointer to the object
cannam@90 682 * inside the chain is returned, so the block is yours to modify.
cannam@90 683 * Changes will be reflected in the FLAC file when you write the
cannam@90 684 * chain. You can also add and delete blocks (see functions below).
cannam@90 685 * - When done, write out the chain using FLAC__metadata_chain_write().
cannam@90 686 * Make sure to read the whole comment to the function below.
cannam@90 687 * - Delete the chain using FLAC__metadata_chain_delete().
cannam@90 688 *
cannam@90 689 * \note
cannam@90 690 * Even though the FLAC file is not open while the chain is being
cannam@90 691 * manipulated, you must not alter the file externally during
cannam@90 692 * this time. The chain assumes the FLAC file will not change
cannam@90 693 * between the time of FLAC__metadata_chain_read()/FLAC__metadata_chain_read_ogg()
cannam@90 694 * and FLAC__metadata_chain_write().
cannam@90 695 *
cannam@90 696 * \note
cannam@90 697 * Do not modify the is_last, length, or type fields of returned
cannam@90 698 * FLAC__StreamMetadata objects. These are managed automatically.
cannam@90 699 *
cannam@90 700 * \note
cannam@90 701 * The metadata objects returned by FLAC__metadata_iterator_get_block()
cannam@90 702 * are owned by the chain; do not FLAC__metadata_object_delete() them.
cannam@90 703 * In the same way, blocks passed to FLAC__metadata_iterator_set_block()
cannam@90 704 * become owned by the chain and they will be deleted when the chain is
cannam@90 705 * deleted.
cannam@90 706 *
cannam@90 707 * \{
cannam@90 708 */
cannam@90 709
cannam@90 710 struct FLAC__Metadata_Chain;
cannam@90 711 /** The opaque structure definition for the level 2 chain type.
cannam@90 712 */
cannam@90 713 typedef struct FLAC__Metadata_Chain FLAC__Metadata_Chain;
cannam@90 714
cannam@90 715 struct FLAC__Metadata_Iterator;
cannam@90 716 /** The opaque structure definition for the level 2 iterator type.
cannam@90 717 */
cannam@90 718 typedef struct FLAC__Metadata_Iterator FLAC__Metadata_Iterator;
cannam@90 719
cannam@90 720 typedef enum {
cannam@90 721 FLAC__METADATA_CHAIN_STATUS_OK = 0,
cannam@90 722 /**< The chain is in the normal OK state */
cannam@90 723
cannam@90 724 FLAC__METADATA_CHAIN_STATUS_ILLEGAL_INPUT,
cannam@90 725 /**< The data passed into a function violated the function's usage criteria */
cannam@90 726
cannam@90 727 FLAC__METADATA_CHAIN_STATUS_ERROR_OPENING_FILE,
cannam@90 728 /**< The chain could not open the target file */
cannam@90 729
cannam@90 730 FLAC__METADATA_CHAIN_STATUS_NOT_A_FLAC_FILE,
cannam@90 731 /**< The chain could not find the FLAC signature at the start of the file */
cannam@90 732
cannam@90 733 FLAC__METADATA_CHAIN_STATUS_NOT_WRITABLE,
cannam@90 734 /**< The chain tried to write to a file that was not writable */
cannam@90 735
cannam@90 736 FLAC__METADATA_CHAIN_STATUS_BAD_METADATA,
cannam@90 737 /**< The chain encountered input that does not conform to the FLAC metadata specification */
cannam@90 738
cannam@90 739 FLAC__METADATA_CHAIN_STATUS_READ_ERROR,
cannam@90 740 /**< The chain encountered an error while reading the FLAC file */
cannam@90 741
cannam@90 742 FLAC__METADATA_CHAIN_STATUS_SEEK_ERROR,
cannam@90 743 /**< The chain encountered an error while seeking in the FLAC file */
cannam@90 744
cannam@90 745 FLAC__METADATA_CHAIN_STATUS_WRITE_ERROR,
cannam@90 746 /**< The chain encountered an error while writing the FLAC file */
cannam@90 747
cannam@90 748 FLAC__METADATA_CHAIN_STATUS_RENAME_ERROR,
cannam@90 749 /**< The chain encountered an error renaming the FLAC file */
cannam@90 750
cannam@90 751 FLAC__METADATA_CHAIN_STATUS_UNLINK_ERROR,
cannam@90 752 /**< The chain encountered an error removing the temporary file */
cannam@90 753
cannam@90 754 FLAC__METADATA_CHAIN_STATUS_MEMORY_ALLOCATION_ERROR,
cannam@90 755 /**< Memory allocation failed */
cannam@90 756
cannam@90 757 FLAC__METADATA_CHAIN_STATUS_INTERNAL_ERROR,
cannam@90 758 /**< The caller violated an assertion or an unexpected error occurred */
cannam@90 759
cannam@90 760 FLAC__METADATA_CHAIN_STATUS_INVALID_CALLBACKS,
cannam@90 761 /**< One or more of the required callbacks was NULL */
cannam@90 762
cannam@90 763 FLAC__METADATA_CHAIN_STATUS_READ_WRITE_MISMATCH,
cannam@90 764 /**< FLAC__metadata_chain_write() was called on a chain read by
cannam@90 765 * FLAC__metadata_chain_read_with_callbacks()/FLAC__metadata_chain_read_ogg_with_callbacks(),
cannam@90 766 * or
cannam@90 767 * FLAC__metadata_chain_write_with_callbacks()/FLAC__metadata_chain_write_with_callbacks_and_tempfile()
cannam@90 768 * was called on a chain read by
cannam@90 769 * FLAC__metadata_chain_read()/FLAC__metadata_chain_read_ogg().
cannam@90 770 * Matching read/write methods must always be used. */
cannam@90 771
cannam@90 772 FLAC__METADATA_CHAIN_STATUS_WRONG_WRITE_CALL
cannam@90 773 /**< FLAC__metadata_chain_write_with_callbacks() was called when the
cannam@90 774 * chain write requires a tempfile; use
cannam@90 775 * FLAC__metadata_chain_write_with_callbacks_and_tempfile() instead.
cannam@90 776 * Or, FLAC__metadata_chain_write_with_callbacks_and_tempfile() was
cannam@90 777 * called when the chain write does not require a tempfile; use
cannam@90 778 * FLAC__metadata_chain_write_with_callbacks() instead.
cannam@90 779 * Always check FLAC__metadata_chain_check_if_tempfile_needed()
cannam@90 780 * before writing via callbacks. */
cannam@90 781
cannam@90 782 } FLAC__Metadata_ChainStatus;
cannam@90 783
cannam@90 784 /** Maps a FLAC__Metadata_ChainStatus to a C string.
cannam@90 785 *
cannam@90 786 * Using a FLAC__Metadata_ChainStatus as the index to this array
cannam@90 787 * will give the string equivalent. The contents should not be modified.
cannam@90 788 */
cannam@90 789 extern FLAC_API const char * const FLAC__Metadata_ChainStatusString[];
cannam@90 790
cannam@90 791 /*********** FLAC__Metadata_Chain ***********/
cannam@90 792
cannam@90 793 /** Create a new chain instance.
cannam@90 794 *
cannam@90 795 * \retval FLAC__Metadata_Chain*
cannam@90 796 * \c NULL if there was an error allocating memory, else the new instance.
cannam@90 797 */
cannam@90 798 FLAC_API FLAC__Metadata_Chain *FLAC__metadata_chain_new(void);
cannam@90 799
cannam@90 800 /** Free a chain instance. Deletes the object pointed to by \a chain.
cannam@90 801 *
cannam@90 802 * \param chain A pointer to an existing chain.
cannam@90 803 * \assert
cannam@90 804 * \code chain != NULL \endcode
cannam@90 805 */
cannam@90 806 FLAC_API void FLAC__metadata_chain_delete(FLAC__Metadata_Chain *chain);
cannam@90 807
cannam@90 808 /** Get the current status of the chain. Call this after a function
cannam@90 809 * returns \c false to get the reason for the error. Also resets the
cannam@90 810 * status to FLAC__METADATA_CHAIN_STATUS_OK.
cannam@90 811 *
cannam@90 812 * \param chain A pointer to an existing chain.
cannam@90 813 * \assert
cannam@90 814 * \code chain != NULL \endcode
cannam@90 815 * \retval FLAC__Metadata_ChainStatus
cannam@90 816 * The current status of the chain.
cannam@90 817 */
cannam@90 818 FLAC_API FLAC__Metadata_ChainStatus FLAC__metadata_chain_status(FLAC__Metadata_Chain *chain);
cannam@90 819
cannam@90 820 /** Read all metadata from a FLAC file into the chain.
cannam@90 821 *
cannam@90 822 * \param chain A pointer to an existing chain.
cannam@90 823 * \param filename The path to the FLAC file to read.
cannam@90 824 * \assert
cannam@90 825 * \code chain != NULL \endcode
cannam@90 826 * \code filename != NULL \endcode
cannam@90 827 * \retval FLAC__bool
cannam@90 828 * \c true if a valid list of metadata blocks was read from
cannam@90 829 * \a filename, else \c false. On failure, check the status with
cannam@90 830 * FLAC__metadata_chain_status().
cannam@90 831 */
cannam@90 832 FLAC_API FLAC__bool FLAC__metadata_chain_read(FLAC__Metadata_Chain *chain, const char *filename);
cannam@90 833
cannam@90 834 /** Read all metadata from an Ogg FLAC file into the chain.
cannam@90 835 *
cannam@90 836 * \note Ogg FLAC metadata data writing is not supported yet and
cannam@90 837 * FLAC__metadata_chain_write() will fail.
cannam@90 838 *
cannam@90 839 * \param chain A pointer to an existing chain.
cannam@90 840 * \param filename The path to the Ogg FLAC file to read.
cannam@90 841 * \assert
cannam@90 842 * \code chain != NULL \endcode
cannam@90 843 * \code filename != NULL \endcode
cannam@90 844 * \retval FLAC__bool
cannam@90 845 * \c true if a valid list of metadata blocks was read from
cannam@90 846 * \a filename, else \c false. On failure, check the status with
cannam@90 847 * FLAC__metadata_chain_status().
cannam@90 848 */
cannam@90 849 FLAC_API FLAC__bool FLAC__metadata_chain_read_ogg(FLAC__Metadata_Chain *chain, const char *filename);
cannam@90 850
cannam@90 851 /** Read all metadata from a FLAC stream into the chain via I/O callbacks.
cannam@90 852 *
cannam@90 853 * The \a handle need only be open for reading, but must be seekable.
cannam@90 854 * The equivalent minimum stdio fopen() file mode is \c "r" (or \c "rb"
cannam@90 855 * for Windows).
cannam@90 856 *
cannam@90 857 * \param chain A pointer to an existing chain.
cannam@90 858 * \param handle The I/O handle of the FLAC stream to read. The
cannam@90 859 * handle will NOT be closed after the metadata is read;
cannam@90 860 * that is the duty of the caller.
cannam@90 861 * \param callbacks
cannam@90 862 * A set of callbacks to use for I/O. The mandatory
cannam@90 863 * callbacks are \a read, \a seek, and \a tell.
cannam@90 864 * \assert
cannam@90 865 * \code chain != NULL \endcode
cannam@90 866 * \retval FLAC__bool
cannam@90 867 * \c true if a valid list of metadata blocks was read from
cannam@90 868 * \a handle, else \c false. On failure, check the status with
cannam@90 869 * FLAC__metadata_chain_status().
cannam@90 870 */
cannam@90 871 FLAC_API FLAC__bool FLAC__metadata_chain_read_with_callbacks(FLAC__Metadata_Chain *chain, FLAC__IOHandle handle, FLAC__IOCallbacks callbacks);
cannam@90 872
cannam@90 873 /** Read all metadata from an Ogg FLAC stream into the chain via I/O callbacks.
cannam@90 874 *
cannam@90 875 * The \a handle need only be open for reading, but must be seekable.
cannam@90 876 * The equivalent minimum stdio fopen() file mode is \c "r" (or \c "rb"
cannam@90 877 * for Windows).
cannam@90 878 *
cannam@90 879 * \note Ogg FLAC metadata data writing is not supported yet and
cannam@90 880 * FLAC__metadata_chain_write() will fail.
cannam@90 881 *
cannam@90 882 * \param chain A pointer to an existing chain.
cannam@90 883 * \param handle The I/O handle of the Ogg FLAC stream to read. The
cannam@90 884 * handle will NOT be closed after the metadata is read;
cannam@90 885 * that is the duty of the caller.
cannam@90 886 * \param callbacks
cannam@90 887 * A set of callbacks to use for I/O. The mandatory
cannam@90 888 * callbacks are \a read, \a seek, and \a tell.
cannam@90 889 * \assert
cannam@90 890 * \code chain != NULL \endcode
cannam@90 891 * \retval FLAC__bool
cannam@90 892 * \c true if a valid list of metadata blocks was read from
cannam@90 893 * \a handle, else \c false. On failure, check the status with
cannam@90 894 * FLAC__metadata_chain_status().
cannam@90 895 */
cannam@90 896 FLAC_API FLAC__bool FLAC__metadata_chain_read_ogg_with_callbacks(FLAC__Metadata_Chain *chain, FLAC__IOHandle handle, FLAC__IOCallbacks callbacks);
cannam@90 897
cannam@90 898 /** Checks if writing the given chain would require the use of a
cannam@90 899 * temporary file, or if it could be written in place.
cannam@90 900 *
cannam@90 901 * Under certain conditions, padding can be utilized so that writing
cannam@90 902 * edited metadata back to the FLAC file does not require rewriting the
cannam@90 903 * entire file. If rewriting is required, then a temporary workfile is
cannam@90 904 * required. When writing metadata using callbacks, you must check
cannam@90 905 * this function to know whether to call
cannam@90 906 * FLAC__metadata_chain_write_with_callbacks() or
cannam@90 907 * FLAC__metadata_chain_write_with_callbacks_and_tempfile(). When
cannam@90 908 * writing with FLAC__metadata_chain_write(), the temporary file is
cannam@90 909 * handled internally.
cannam@90 910 *
cannam@90 911 * \param chain A pointer to an existing chain.
cannam@90 912 * \param use_padding
cannam@90 913 * Whether or not padding will be allowed to be used
cannam@90 914 * during the write. The value of \a use_padding given
cannam@90 915 * here must match the value later passed to
cannam@90 916 * FLAC__metadata_chain_write_with_callbacks() or
cannam@90 917 * FLAC__metadata_chain_write_with_callbacks_with_tempfile().
cannam@90 918 * \assert
cannam@90 919 * \code chain != NULL \endcode
cannam@90 920 * \retval FLAC__bool
cannam@90 921 * \c true if writing the current chain would require a tempfile, or
cannam@90 922 * \c false if metadata can be written in place.
cannam@90 923 */
cannam@90 924 FLAC_API FLAC__bool FLAC__metadata_chain_check_if_tempfile_needed(FLAC__Metadata_Chain *chain, FLAC__bool use_padding);
cannam@90 925
cannam@90 926 /** Write all metadata out to the FLAC file. This function tries to be as
cannam@90 927 * efficient as possible; how the metadata is actually written is shown by
cannam@90 928 * the following:
cannam@90 929 *
cannam@90 930 * If the current chain is the same size as the existing metadata, the new
cannam@90 931 * data is written in place.
cannam@90 932 *
cannam@90 933 * If the current chain is longer than the existing metadata, and
cannam@90 934 * \a use_padding is \c true, and the last block is a PADDING block of
cannam@90 935 * sufficient length, the function will truncate the final padding block
cannam@90 936 * so that the overall size of the metadata is the same as the existing
cannam@90 937 * metadata, and then just rewrite the metadata. Otherwise, if not all of
cannam@90 938 * the above conditions are met, the entire FLAC file must be rewritten.
cannam@90 939 * If you want to use padding this way it is a good idea to call
cannam@90 940 * FLAC__metadata_chain_sort_padding() first so that you have the maximum
cannam@90 941 * amount of padding to work with, unless you need to preserve ordering
cannam@90 942 * of the PADDING blocks for some reason.
cannam@90 943 *
cannam@90 944 * If the current chain is shorter than the existing metadata, and
cannam@90 945 * \a use_padding is \c true, and the final block is a PADDING block, the padding
cannam@90 946 * is extended to make the overall size the same as the existing data. If
cannam@90 947 * \a use_padding is \c true and the last block is not a PADDING block, a new
cannam@90 948 * PADDING block is added to the end of the new data to make it the same
cannam@90 949 * size as the existing data (if possible, see the note to
cannam@90 950 * FLAC__metadata_simple_iterator_set_block() about the four byte limit)
cannam@90 951 * and the new data is written in place. If none of the above apply or
cannam@90 952 * \a use_padding is \c false, the entire FLAC file is rewritten.
cannam@90 953 *
cannam@90 954 * If \a preserve_file_stats is \c true, the owner and modification time will
cannam@90 955 * be preserved even if the FLAC file is written.
cannam@90 956 *
cannam@90 957 * For this write function to be used, the chain must have been read with
cannam@90 958 * FLAC__metadata_chain_read()/FLAC__metadata_chain_read_ogg(), not
cannam@90 959 * FLAC__metadata_chain_read_with_callbacks()/FLAC__metadata_chain_read_ogg_with_callbacks().
cannam@90 960 *
cannam@90 961 * \param chain A pointer to an existing chain.
cannam@90 962 * \param use_padding See above.
cannam@90 963 * \param preserve_file_stats See above.
cannam@90 964 * \assert
cannam@90 965 * \code chain != NULL \endcode
cannam@90 966 * \retval FLAC__bool
cannam@90 967 * \c true if the write succeeded, else \c false. On failure,
cannam@90 968 * check the status with FLAC__metadata_chain_status().
cannam@90 969 */
cannam@90 970 FLAC_API FLAC__bool FLAC__metadata_chain_write(FLAC__Metadata_Chain *chain, FLAC__bool use_padding, FLAC__bool preserve_file_stats);
cannam@90 971
cannam@90 972 /** Write all metadata out to a FLAC stream via callbacks.
cannam@90 973 *
cannam@90 974 * (See FLAC__metadata_chain_write() for the details on how padding is
cannam@90 975 * used to write metadata in place if possible.)
cannam@90 976 *
cannam@90 977 * The \a handle must be open for updating and be seekable. The
cannam@90 978 * equivalent minimum stdio fopen() file mode is \c "r+" (or \c "r+b"
cannam@90 979 * for Windows).
cannam@90 980 *
cannam@90 981 * For this write function to be used, the chain must have been read with
cannam@90 982 * FLAC__metadata_chain_read_with_callbacks()/FLAC__metadata_chain_read_ogg_with_callbacks(),
cannam@90 983 * not FLAC__metadata_chain_read()/FLAC__metadata_chain_read_ogg().
cannam@90 984 * Also, FLAC__metadata_chain_check_if_tempfile_needed() must have returned
cannam@90 985 * \c false.
cannam@90 986 *
cannam@90 987 * \param chain A pointer to an existing chain.
cannam@90 988 * \param use_padding See FLAC__metadata_chain_write()
cannam@90 989 * \param handle The I/O handle of the FLAC stream to write. The
cannam@90 990 * handle will NOT be closed after the metadata is
cannam@90 991 * written; that is the duty of the caller.
cannam@90 992 * \param callbacks A set of callbacks to use for I/O. The mandatory
cannam@90 993 * callbacks are \a write and \a seek.
cannam@90 994 * \assert
cannam@90 995 * \code chain != NULL \endcode
cannam@90 996 * \retval FLAC__bool
cannam@90 997 * \c true if the write succeeded, else \c false. On failure,
cannam@90 998 * check the status with FLAC__metadata_chain_status().
cannam@90 999 */
cannam@90 1000 FLAC_API FLAC__bool FLAC__metadata_chain_write_with_callbacks(FLAC__Metadata_Chain *chain, FLAC__bool use_padding, FLAC__IOHandle handle, FLAC__IOCallbacks callbacks);
cannam@90 1001
cannam@90 1002 /** Write all metadata out to a FLAC stream via callbacks.
cannam@90 1003 *
cannam@90 1004 * (See FLAC__metadata_chain_write() for the details on how padding is
cannam@90 1005 * used to write metadata in place if possible.)
cannam@90 1006 *
cannam@90 1007 * This version of the write-with-callbacks function must be used when
cannam@90 1008 * FLAC__metadata_chain_check_if_tempfile_needed() returns true. In
cannam@90 1009 * this function, you must supply an I/O handle corresponding to the
cannam@90 1010 * FLAC file to edit, and a temporary handle to which the new FLAC
cannam@90 1011 * file will be written. It is the caller's job to move this temporary
cannam@90 1012 * FLAC file on top of the original FLAC file to complete the metadata
cannam@90 1013 * edit.
cannam@90 1014 *
cannam@90 1015 * The \a handle must be open for reading and be seekable. The
cannam@90 1016 * equivalent minimum stdio fopen() file mode is \c "r" (or \c "rb"
cannam@90 1017 * for Windows).
cannam@90 1018 *
cannam@90 1019 * The \a temp_handle must be open for writing. The
cannam@90 1020 * equivalent minimum stdio fopen() file mode is \c "w" (or \c "wb"
cannam@90 1021 * for Windows). It should be an empty stream, or at least positioned
cannam@90 1022 * at the start-of-file (in which case it is the caller's duty to
cannam@90 1023 * truncate it on return).
cannam@90 1024 *
cannam@90 1025 * For this write function to be used, the chain must have been read with
cannam@90 1026 * FLAC__metadata_chain_read_with_callbacks()/FLAC__metadata_chain_read_ogg_with_callbacks(),
cannam@90 1027 * not FLAC__metadata_chain_read()/FLAC__metadata_chain_read_ogg().
cannam@90 1028 * Also, FLAC__metadata_chain_check_if_tempfile_needed() must have returned
cannam@90 1029 * \c true.
cannam@90 1030 *
cannam@90 1031 * \param chain A pointer to an existing chain.
cannam@90 1032 * \param use_padding See FLAC__metadata_chain_write()
cannam@90 1033 * \param handle The I/O handle of the original FLAC stream to read.
cannam@90 1034 * The handle will NOT be closed after the metadata is
cannam@90 1035 * written; that is the duty of the caller.
cannam@90 1036 * \param callbacks A set of callbacks to use for I/O on \a handle.
cannam@90 1037 * The mandatory callbacks are \a read, \a seek, and
cannam@90 1038 * \a eof.
cannam@90 1039 * \param temp_handle The I/O handle of the FLAC stream to write. The
cannam@90 1040 * handle will NOT be closed after the metadata is
cannam@90 1041 * written; that is the duty of the caller.
cannam@90 1042 * \param temp_callbacks
cannam@90 1043 * A set of callbacks to use for I/O on temp_handle.
cannam@90 1044 * The only mandatory callback is \a write.
cannam@90 1045 * \assert
cannam@90 1046 * \code chain != NULL \endcode
cannam@90 1047 * \retval FLAC__bool
cannam@90 1048 * \c true if the write succeeded, else \c false. On failure,
cannam@90 1049 * check the status with FLAC__metadata_chain_status().
cannam@90 1050 */
cannam@90 1051 FLAC_API FLAC__bool FLAC__metadata_chain_write_with_callbacks_and_tempfile(FLAC__Metadata_Chain *chain, FLAC__bool use_padding, FLAC__IOHandle handle, FLAC__IOCallbacks callbacks, FLAC__IOHandle temp_handle, FLAC__IOCallbacks temp_callbacks);
cannam@90 1052
cannam@90 1053 /** Merge adjacent PADDING blocks into a single block.
cannam@90 1054 *
cannam@90 1055 * \note This function does not write to the FLAC file, it only
cannam@90 1056 * modifies the chain.
cannam@90 1057 *
cannam@90 1058 * \warning Any iterator on the current chain will become invalid after this
cannam@90 1059 * call. You should delete the iterator and get a new one.
cannam@90 1060 *
cannam@90 1061 * \param chain A pointer to an existing chain.
cannam@90 1062 * \assert
cannam@90 1063 * \code chain != NULL \endcode
cannam@90 1064 */
cannam@90 1065 FLAC_API void FLAC__metadata_chain_merge_padding(FLAC__Metadata_Chain *chain);
cannam@90 1066
cannam@90 1067 /** This function will move all PADDING blocks to the end on the metadata,
cannam@90 1068 * then merge them into a single block.
cannam@90 1069 *
cannam@90 1070 * \note This function does not write to the FLAC file, it only
cannam@90 1071 * modifies the chain.
cannam@90 1072 *
cannam@90 1073 * \warning Any iterator on the current chain will become invalid after this
cannam@90 1074 * call. You should delete the iterator and get a new one.
cannam@90 1075 *
cannam@90 1076 * \param chain A pointer to an existing chain.
cannam@90 1077 * \assert
cannam@90 1078 * \code chain != NULL \endcode
cannam@90 1079 */
cannam@90 1080 FLAC_API void FLAC__metadata_chain_sort_padding(FLAC__Metadata_Chain *chain);
cannam@90 1081
cannam@90 1082
cannam@90 1083 /*********** FLAC__Metadata_Iterator ***********/
cannam@90 1084
cannam@90 1085 /** Create a new iterator instance.
cannam@90 1086 *
cannam@90 1087 * \retval FLAC__Metadata_Iterator*
cannam@90 1088 * \c NULL if there was an error allocating memory, else the new instance.
cannam@90 1089 */
cannam@90 1090 FLAC_API FLAC__Metadata_Iterator *FLAC__metadata_iterator_new(void);
cannam@90 1091
cannam@90 1092 /** Free an iterator instance. Deletes the object pointed to by \a iterator.
cannam@90 1093 *
cannam@90 1094 * \param iterator A pointer to an existing iterator.
cannam@90 1095 * \assert
cannam@90 1096 * \code iterator != NULL \endcode
cannam@90 1097 */
cannam@90 1098 FLAC_API void FLAC__metadata_iterator_delete(FLAC__Metadata_Iterator *iterator);
cannam@90 1099
cannam@90 1100 /** Initialize the iterator to point to the first metadata block in the
cannam@90 1101 * given chain.
cannam@90 1102 *
cannam@90 1103 * \param iterator A pointer to an existing iterator.
cannam@90 1104 * \param chain A pointer to an existing and initialized (read) chain.
cannam@90 1105 * \assert
cannam@90 1106 * \code iterator != NULL \endcode
cannam@90 1107 * \code chain != NULL \endcode
cannam@90 1108 */
cannam@90 1109 FLAC_API void FLAC__metadata_iterator_init(FLAC__Metadata_Iterator *iterator, FLAC__Metadata_Chain *chain);
cannam@90 1110
cannam@90 1111 /** Moves the iterator forward one metadata block, returning \c false if
cannam@90 1112 * already at the end.
cannam@90 1113 *
cannam@90 1114 * \param iterator A pointer to an existing initialized iterator.
cannam@90 1115 * \assert
cannam@90 1116 * \code iterator != NULL \endcode
cannam@90 1117 * \a iterator has been successfully initialized with
cannam@90 1118 * FLAC__metadata_iterator_init()
cannam@90 1119 * \retval FLAC__bool
cannam@90 1120 * \c false if already at the last metadata block of the chain, else
cannam@90 1121 * \c true.
cannam@90 1122 */
cannam@90 1123 FLAC_API FLAC__bool FLAC__metadata_iterator_next(FLAC__Metadata_Iterator *iterator);
cannam@90 1124
cannam@90 1125 /** Moves the iterator backward one metadata block, returning \c false if
cannam@90 1126 * already at the beginning.
cannam@90 1127 *
cannam@90 1128 * \param iterator A pointer to an existing initialized iterator.
cannam@90 1129 * \assert
cannam@90 1130 * \code iterator != NULL \endcode
cannam@90 1131 * \a iterator has been successfully initialized with
cannam@90 1132 * FLAC__metadata_iterator_init()
cannam@90 1133 * \retval FLAC__bool
cannam@90 1134 * \c false if already at the first metadata block of the chain, else
cannam@90 1135 * \c true.
cannam@90 1136 */
cannam@90 1137 FLAC_API FLAC__bool FLAC__metadata_iterator_prev(FLAC__Metadata_Iterator *iterator);
cannam@90 1138
cannam@90 1139 /** Get the type of the metadata block at the current position.
cannam@90 1140 *
cannam@90 1141 * \param iterator A pointer to an existing initialized iterator.
cannam@90 1142 * \assert
cannam@90 1143 * \code iterator != NULL \endcode
cannam@90 1144 * \a iterator has been successfully initialized with
cannam@90 1145 * FLAC__metadata_iterator_init()
cannam@90 1146 * \retval FLAC__MetadataType
cannam@90 1147 * The type of the metadata block at the current iterator position.
cannam@90 1148 */
cannam@90 1149 FLAC_API FLAC__MetadataType FLAC__metadata_iterator_get_block_type(const FLAC__Metadata_Iterator *iterator);
cannam@90 1150
cannam@90 1151 /** Get the metadata block at the current position. You can modify
cannam@90 1152 * the block in place but must write the chain before the changes
cannam@90 1153 * are reflected to the FLAC file. You do not need to call
cannam@90 1154 * FLAC__metadata_iterator_set_block() to reflect the changes;
cannam@90 1155 * the pointer returned by FLAC__metadata_iterator_get_block()
cannam@90 1156 * points directly into the chain.
cannam@90 1157 *
cannam@90 1158 * \warning
cannam@90 1159 * Do not call FLAC__metadata_object_delete() on the returned object;
cannam@90 1160 * to delete a block use FLAC__metadata_iterator_delete_block().
cannam@90 1161 *
cannam@90 1162 * \param iterator A pointer to an existing initialized iterator.
cannam@90 1163 * \assert
cannam@90 1164 * \code iterator != NULL \endcode
cannam@90 1165 * \a iterator has been successfully initialized with
cannam@90 1166 * FLAC__metadata_iterator_init()
cannam@90 1167 * \retval FLAC__StreamMetadata*
cannam@90 1168 * The current metadata block.
cannam@90 1169 */
cannam@90 1170 FLAC_API FLAC__StreamMetadata *FLAC__metadata_iterator_get_block(FLAC__Metadata_Iterator *iterator);
cannam@90 1171
cannam@90 1172 /** Set the metadata block at the current position, replacing the existing
cannam@90 1173 * block. The new block passed in becomes owned by the chain and it will be
cannam@90 1174 * deleted when the chain is deleted.
cannam@90 1175 *
cannam@90 1176 * \param iterator A pointer to an existing initialized iterator.
cannam@90 1177 * \param block A pointer to a metadata block.
cannam@90 1178 * \assert
cannam@90 1179 * \code iterator != NULL \endcode
cannam@90 1180 * \a iterator has been successfully initialized with
cannam@90 1181 * FLAC__metadata_iterator_init()
cannam@90 1182 * \code block != NULL \endcode
cannam@90 1183 * \retval FLAC__bool
cannam@90 1184 * \c false if the conditions in the above description are not met, or
cannam@90 1185 * a memory allocation error occurs, otherwise \c true.
cannam@90 1186 */
cannam@90 1187 FLAC_API FLAC__bool FLAC__metadata_iterator_set_block(FLAC__Metadata_Iterator *iterator, FLAC__StreamMetadata *block);
cannam@90 1188
cannam@90 1189 /** Removes the current block from the chain. If \a replace_with_padding is
cannam@90 1190 * \c true, the block will instead be replaced with a padding block of equal
cannam@90 1191 * size. You can not delete the STREAMINFO block. The iterator will be
cannam@90 1192 * left pointing to the block before the one just "deleted", even if
cannam@90 1193 * \a replace_with_padding is \c true.
cannam@90 1194 *
cannam@90 1195 * \param iterator A pointer to an existing initialized iterator.
cannam@90 1196 * \param replace_with_padding See above.
cannam@90 1197 * \assert
cannam@90 1198 * \code iterator != NULL \endcode
cannam@90 1199 * \a iterator has been successfully initialized with
cannam@90 1200 * FLAC__metadata_iterator_init()
cannam@90 1201 * \retval FLAC__bool
cannam@90 1202 * \c false if the conditions in the above description are not met,
cannam@90 1203 * otherwise \c true.
cannam@90 1204 */
cannam@90 1205 FLAC_API FLAC__bool FLAC__metadata_iterator_delete_block(FLAC__Metadata_Iterator *iterator, FLAC__bool replace_with_padding);
cannam@90 1206
cannam@90 1207 /** Insert a new block before the current block. You cannot insert a block
cannam@90 1208 * before the first STREAMINFO block. You cannot insert a STREAMINFO block
cannam@90 1209 * as there can be only one, the one that already exists at the head when you
cannam@90 1210 * read in a chain. The chain takes ownership of the new block and it will be
cannam@90 1211 * deleted when the chain is deleted. The iterator will be left pointing to
cannam@90 1212 * the new block.
cannam@90 1213 *
cannam@90 1214 * \param iterator A pointer to an existing initialized iterator.
cannam@90 1215 * \param block A pointer to a metadata block to insert.
cannam@90 1216 * \assert
cannam@90 1217 * \code iterator != NULL \endcode
cannam@90 1218 * \a iterator has been successfully initialized with
cannam@90 1219 * FLAC__metadata_iterator_init()
cannam@90 1220 * \retval FLAC__bool
cannam@90 1221 * \c false if the conditions in the above description are not met, or
cannam@90 1222 * a memory allocation error occurs, otherwise \c true.
cannam@90 1223 */
cannam@90 1224 FLAC_API FLAC__bool FLAC__metadata_iterator_insert_block_before(FLAC__Metadata_Iterator *iterator, FLAC__StreamMetadata *block);
cannam@90 1225
cannam@90 1226 /** Insert a new block after the current block. You cannot insert a STREAMINFO
cannam@90 1227 * block as there can be only one, the one that already exists at the head when
cannam@90 1228 * you read in a chain. The chain takes ownership of the new block and it will
cannam@90 1229 * be deleted when the chain is deleted. The iterator will be left pointing to
cannam@90 1230 * the new block.
cannam@90 1231 *
cannam@90 1232 * \param iterator A pointer to an existing initialized iterator.
cannam@90 1233 * \param block A pointer to a metadata block to insert.
cannam@90 1234 * \assert
cannam@90 1235 * \code iterator != NULL \endcode
cannam@90 1236 * \a iterator has been successfully initialized with
cannam@90 1237 * FLAC__metadata_iterator_init()
cannam@90 1238 * \retval FLAC__bool
cannam@90 1239 * \c false if the conditions in the above description are not met, or
cannam@90 1240 * a memory allocation error occurs, otherwise \c true.
cannam@90 1241 */
cannam@90 1242 FLAC_API FLAC__bool FLAC__metadata_iterator_insert_block_after(FLAC__Metadata_Iterator *iterator, FLAC__StreamMetadata *block);
cannam@90 1243
cannam@90 1244 /* \} */
cannam@90 1245
cannam@90 1246
cannam@90 1247 /** \defgroup flac_metadata_object FLAC/metadata.h: metadata object methods
cannam@90 1248 * \ingroup flac_metadata
cannam@90 1249 *
cannam@90 1250 * \brief
cannam@90 1251 * This module contains methods for manipulating FLAC metadata objects.
cannam@90 1252 *
cannam@90 1253 * Since many are variable length we have to be careful about the memory
cannam@90 1254 * management. We decree that all pointers to data in the object are
cannam@90 1255 * owned by the object and memory-managed by the object.
cannam@90 1256 *
cannam@90 1257 * Use the FLAC__metadata_object_new() and FLAC__metadata_object_delete()
cannam@90 1258 * functions to create all instances. When using the
cannam@90 1259 * FLAC__metadata_object_set_*() functions to set pointers to data, set
cannam@90 1260 * \a copy to \c true to have the function make it's own copy of the data, or
cannam@90 1261 * to \c false to give the object ownership of your data. In the latter case
cannam@90 1262 * your pointer must be freeable by free() and will be free()d when the object
cannam@90 1263 * is FLAC__metadata_object_delete()d. It is legal to pass a null pointer as
cannam@90 1264 * the data pointer to a FLAC__metadata_object_set_*() function as long as
cannam@90 1265 * the length argument is 0 and the \a copy argument is \c false.
cannam@90 1266 *
cannam@90 1267 * The FLAC__metadata_object_new() and FLAC__metadata_object_clone() function
cannam@90 1268 * will return \c NULL in the case of a memory allocation error, otherwise a new
cannam@90 1269 * object. The FLAC__metadata_object_set_*() functions return \c false in the
cannam@90 1270 * case of a memory allocation error.
cannam@90 1271 *
cannam@90 1272 * We don't have the convenience of C++ here, so note that the library relies
cannam@90 1273 * on you to keep the types straight. In other words, if you pass, for
cannam@90 1274 * example, a FLAC__StreamMetadata* that represents a STREAMINFO block to
cannam@90 1275 * FLAC__metadata_object_application_set_data(), you will get an assertion
cannam@90 1276 * failure.
cannam@90 1277 *
cannam@90 1278 * For convenience the FLAC__metadata_object_vorbiscomment_*() functions
cannam@90 1279 * maintain a trailing NUL on each Vorbis comment entry. This is not counted
cannam@90 1280 * toward the length or stored in the stream, but it can make working with plain
cannam@90 1281 * comments (those that don't contain embedded-NULs in the value) easier.
cannam@90 1282 * Entries passed into these functions have trailing NULs added if missing, and
cannam@90 1283 * returned entries are guaranteed to have a trailing NUL.
cannam@90 1284 *
cannam@90 1285 * The FLAC__metadata_object_vorbiscomment_*() functions that take a Vorbis
cannam@90 1286 * comment entry/name/value will first validate that it complies with the Vorbis
cannam@90 1287 * comment specification and return false if it does not.
cannam@90 1288 *
cannam@90 1289 * There is no need to recalculate the length field on metadata blocks you
cannam@90 1290 * have modified. They will be calculated automatically before they are
cannam@90 1291 * written back to a file.
cannam@90 1292 *
cannam@90 1293 * \{
cannam@90 1294 */
cannam@90 1295
cannam@90 1296
cannam@90 1297 /** Create a new metadata object instance of the given type.
cannam@90 1298 *
cannam@90 1299 * The object will be "empty"; i.e. values and data pointers will be \c 0,
cannam@90 1300 * with the exception of FLAC__METADATA_TYPE_VORBIS_COMMENT, which will have
cannam@90 1301 * the vendor string set (but zero comments).
cannam@90 1302 *
cannam@90 1303 * Do not pass in a value greater than or equal to
cannam@90 1304 * \a FLAC__METADATA_TYPE_UNDEFINED unless you really know what you're
cannam@90 1305 * doing.
cannam@90 1306 *
cannam@90 1307 * \param type Type of object to create
cannam@90 1308 * \retval FLAC__StreamMetadata*
cannam@90 1309 * \c NULL if there was an error allocating memory or the type code is
cannam@90 1310 * greater than FLAC__MAX_METADATA_TYPE_CODE, else the new instance.
cannam@90 1311 */
cannam@90 1312 FLAC_API FLAC__StreamMetadata *FLAC__metadata_object_new(FLAC__MetadataType type);
cannam@90 1313
cannam@90 1314 /** Create a copy of an existing metadata object.
cannam@90 1315 *
cannam@90 1316 * The copy is a "deep" copy, i.e. dynamically allocated data within the
cannam@90 1317 * object is also copied. The caller takes ownership of the new block and
cannam@90 1318 * is responsible for freeing it with FLAC__metadata_object_delete().
cannam@90 1319 *
cannam@90 1320 * \param object Pointer to object to copy.
cannam@90 1321 * \assert
cannam@90 1322 * \code object != NULL \endcode
cannam@90 1323 * \retval FLAC__StreamMetadata*
cannam@90 1324 * \c NULL if there was an error allocating memory, else the new instance.
cannam@90 1325 */
cannam@90 1326 FLAC_API FLAC__StreamMetadata *FLAC__metadata_object_clone(const FLAC__StreamMetadata *object);
cannam@90 1327
cannam@90 1328 /** Free a metadata object. Deletes the object pointed to by \a object.
cannam@90 1329 *
cannam@90 1330 * The delete is a "deep" delete, i.e. dynamically allocated data within the
cannam@90 1331 * object is also deleted.
cannam@90 1332 *
cannam@90 1333 * \param object A pointer to an existing object.
cannam@90 1334 * \assert
cannam@90 1335 * \code object != NULL \endcode
cannam@90 1336 */
cannam@90 1337 FLAC_API void FLAC__metadata_object_delete(FLAC__StreamMetadata *object);
cannam@90 1338
cannam@90 1339 /** Compares two metadata objects.
cannam@90 1340 *
cannam@90 1341 * The compare is "deep", i.e. dynamically allocated data within the
cannam@90 1342 * object is also compared.
cannam@90 1343 *
cannam@90 1344 * \param block1 A pointer to an existing object.
cannam@90 1345 * \param block2 A pointer to an existing object.
cannam@90 1346 * \assert
cannam@90 1347 * \code block1 != NULL \endcode
cannam@90 1348 * \code block2 != NULL \endcode
cannam@90 1349 * \retval FLAC__bool
cannam@90 1350 * \c true if objects are identical, else \c false.
cannam@90 1351 */
cannam@90 1352 FLAC_API FLAC__bool FLAC__metadata_object_is_equal(const FLAC__StreamMetadata *block1, const FLAC__StreamMetadata *block2);
cannam@90 1353
cannam@90 1354 /** Sets the application data of an APPLICATION block.
cannam@90 1355 *
cannam@90 1356 * If \a copy is \c true, a copy of the data is stored; otherwise, the object
cannam@90 1357 * takes ownership of the pointer. The existing data will be freed if this
cannam@90 1358 * function is successful, otherwise the original data will remain if \a copy
cannam@90 1359 * is \c true and malloc() fails.
cannam@90 1360 *
cannam@90 1361 * \note It is safe to pass a const pointer to \a data if \a copy is \c true.
cannam@90 1362 *
cannam@90 1363 * \param object A pointer to an existing APPLICATION object.
cannam@90 1364 * \param data A pointer to the data to set.
cannam@90 1365 * \param length The length of \a data in bytes.
cannam@90 1366 * \param copy See above.
cannam@90 1367 * \assert
cannam@90 1368 * \code object != NULL \endcode
cannam@90 1369 * \code object->type == FLAC__METADATA_TYPE_APPLICATION \endcode
cannam@90 1370 * \code (data != NULL && length > 0) ||
cannam@90 1371 * (data == NULL && length == 0 && copy == false) \endcode
cannam@90 1372 * \retval FLAC__bool
cannam@90 1373 * \c false if \a copy is \c true and malloc() fails, else \c true.
cannam@90 1374 */
cannam@90 1375 FLAC_API FLAC__bool FLAC__metadata_object_application_set_data(FLAC__StreamMetadata *object, FLAC__byte *data, unsigned length, FLAC__bool copy);
cannam@90 1376
cannam@90 1377 /** Resize the seekpoint array.
cannam@90 1378 *
cannam@90 1379 * If the size shrinks, elements will truncated; if it grows, new placeholder
cannam@90 1380 * points will be added to the end.
cannam@90 1381 *
cannam@90 1382 * \param object A pointer to an existing SEEKTABLE object.
cannam@90 1383 * \param new_num_points The desired length of the array; may be \c 0.
cannam@90 1384 * \assert
cannam@90 1385 * \code object != NULL \endcode
cannam@90 1386 * \code object->type == FLAC__METADATA_TYPE_SEEKTABLE \endcode
cannam@90 1387 * \code (object->data.seek_table.points == NULL && object->data.seek_table.num_points == 0) ||
cannam@90 1388 * (object->data.seek_table.points != NULL && object->data.seek_table.num_points > 0) \endcode
cannam@90 1389 * \retval FLAC__bool
cannam@90 1390 * \c false if memory allocation error, else \c true.
cannam@90 1391 */
cannam@90 1392 FLAC_API FLAC__bool FLAC__metadata_object_seektable_resize_points(FLAC__StreamMetadata *object, unsigned new_num_points);
cannam@90 1393
cannam@90 1394 /** Set a seekpoint in a seektable.
cannam@90 1395 *
cannam@90 1396 * \param object A pointer to an existing SEEKTABLE object.
cannam@90 1397 * \param point_num Index into seekpoint array to set.
cannam@90 1398 * \param point The point to set.
cannam@90 1399 * \assert
cannam@90 1400 * \code object != NULL \endcode
cannam@90 1401 * \code object->type == FLAC__METADATA_TYPE_SEEKTABLE \endcode
cannam@90 1402 * \code object->data.seek_table.num_points > point_num \endcode
cannam@90 1403 */
cannam@90 1404 FLAC_API void FLAC__metadata_object_seektable_set_point(FLAC__StreamMetadata *object, unsigned point_num, FLAC__StreamMetadata_SeekPoint point);
cannam@90 1405
cannam@90 1406 /** Insert a seekpoint into a seektable.
cannam@90 1407 *
cannam@90 1408 * \param object A pointer to an existing SEEKTABLE object.
cannam@90 1409 * \param point_num Index into seekpoint array to set.
cannam@90 1410 * \param point The point to set.
cannam@90 1411 * \assert
cannam@90 1412 * \code object != NULL \endcode
cannam@90 1413 * \code object->type == FLAC__METADATA_TYPE_SEEKTABLE \endcode
cannam@90 1414 * \code object->data.seek_table.num_points >= point_num \endcode
cannam@90 1415 * \retval FLAC__bool
cannam@90 1416 * \c false if memory allocation error, else \c true.
cannam@90 1417 */
cannam@90 1418 FLAC_API FLAC__bool FLAC__metadata_object_seektable_insert_point(FLAC__StreamMetadata *object, unsigned point_num, FLAC__StreamMetadata_SeekPoint point);
cannam@90 1419
cannam@90 1420 /** Delete a seekpoint from a seektable.
cannam@90 1421 *
cannam@90 1422 * \param object A pointer to an existing SEEKTABLE object.
cannam@90 1423 * \param point_num Index into seekpoint array to set.
cannam@90 1424 * \assert
cannam@90 1425 * \code object != NULL \endcode
cannam@90 1426 * \code object->type == FLAC__METADATA_TYPE_SEEKTABLE \endcode
cannam@90 1427 * \code object->data.seek_table.num_points > point_num \endcode
cannam@90 1428 * \retval FLAC__bool
cannam@90 1429 * \c false if memory allocation error, else \c true.
cannam@90 1430 */
cannam@90 1431 FLAC_API FLAC__bool FLAC__metadata_object_seektable_delete_point(FLAC__StreamMetadata *object, unsigned point_num);
cannam@90 1432
cannam@90 1433 /** Check a seektable to see if it conforms to the FLAC specification.
cannam@90 1434 * See the format specification for limits on the contents of the
cannam@90 1435 * seektable.
cannam@90 1436 *
cannam@90 1437 * \param object A pointer to an existing SEEKTABLE object.
cannam@90 1438 * \assert
cannam@90 1439 * \code object != NULL \endcode
cannam@90 1440 * \code object->type == FLAC__METADATA_TYPE_SEEKTABLE \endcode
cannam@90 1441 * \retval FLAC__bool
cannam@90 1442 * \c false if seek table is illegal, else \c true.
cannam@90 1443 */
cannam@90 1444 FLAC_API FLAC__bool FLAC__metadata_object_seektable_is_legal(const FLAC__StreamMetadata *object);
cannam@90 1445
cannam@90 1446 /** Append a number of placeholder points to the end of a seek table.
cannam@90 1447 *
cannam@90 1448 * \note
cannam@90 1449 * As with the other ..._seektable_template_... functions, you should
cannam@90 1450 * call FLAC__metadata_object_seektable_template_sort() when finished
cannam@90 1451 * to make the seek table legal.
cannam@90 1452 *
cannam@90 1453 * \param object A pointer to an existing SEEKTABLE object.
cannam@90 1454 * \param num The number of placeholder points to append.
cannam@90 1455 * \assert
cannam@90 1456 * \code object != NULL \endcode
cannam@90 1457 * \code object->type == FLAC__METADATA_TYPE_SEEKTABLE \endcode
cannam@90 1458 * \retval FLAC__bool
cannam@90 1459 * \c false if memory allocation fails, else \c true.
cannam@90 1460 */
cannam@90 1461 FLAC_API FLAC__bool FLAC__metadata_object_seektable_template_append_placeholders(FLAC__StreamMetadata *object, unsigned num);
cannam@90 1462
cannam@90 1463 /** Append a specific seek point template to the end of a seek table.
cannam@90 1464 *
cannam@90 1465 * \note
cannam@90 1466 * As with the other ..._seektable_template_... functions, you should
cannam@90 1467 * call FLAC__metadata_object_seektable_template_sort() when finished
cannam@90 1468 * to make the seek table legal.
cannam@90 1469 *
cannam@90 1470 * \param object A pointer to an existing SEEKTABLE object.
cannam@90 1471 * \param sample_number The sample number of the seek point template.
cannam@90 1472 * \assert
cannam@90 1473 * \code object != NULL \endcode
cannam@90 1474 * \code object->type == FLAC__METADATA_TYPE_SEEKTABLE \endcode
cannam@90 1475 * \retval FLAC__bool
cannam@90 1476 * \c false if memory allocation fails, else \c true.
cannam@90 1477 */
cannam@90 1478 FLAC_API FLAC__bool FLAC__metadata_object_seektable_template_append_point(FLAC__StreamMetadata *object, FLAC__uint64 sample_number);
cannam@90 1479
cannam@90 1480 /** Append specific seek point templates to the end of a seek table.
cannam@90 1481 *
cannam@90 1482 * \note
cannam@90 1483 * As with the other ..._seektable_template_... functions, you should
cannam@90 1484 * call FLAC__metadata_object_seektable_template_sort() when finished
cannam@90 1485 * to make the seek table legal.
cannam@90 1486 *
cannam@90 1487 * \param object A pointer to an existing SEEKTABLE object.
cannam@90 1488 * \param sample_numbers An array of sample numbers for the seek points.
cannam@90 1489 * \param num The number of seek point templates to append.
cannam@90 1490 * \assert
cannam@90 1491 * \code object != NULL \endcode
cannam@90 1492 * \code object->type == FLAC__METADATA_TYPE_SEEKTABLE \endcode
cannam@90 1493 * \retval FLAC__bool
cannam@90 1494 * \c false if memory allocation fails, else \c true.
cannam@90 1495 */
cannam@90 1496 FLAC_API FLAC__bool FLAC__metadata_object_seektable_template_append_points(FLAC__StreamMetadata *object, FLAC__uint64 sample_numbers[], unsigned num);
cannam@90 1497
cannam@90 1498 /** Append a set of evenly-spaced seek point templates to the end of a
cannam@90 1499 * seek table.
cannam@90 1500 *
cannam@90 1501 * \note
cannam@90 1502 * As with the other ..._seektable_template_... functions, you should
cannam@90 1503 * call FLAC__metadata_object_seektable_template_sort() when finished
cannam@90 1504 * to make the seek table legal.
cannam@90 1505 *
cannam@90 1506 * \param object A pointer to an existing SEEKTABLE object.
cannam@90 1507 * \param num The number of placeholder points to append.
cannam@90 1508 * \param total_samples The total number of samples to be encoded;
cannam@90 1509 * the seekpoints will be spaced approximately
cannam@90 1510 * \a total_samples / \a num samples apart.
cannam@90 1511 * \assert
cannam@90 1512 * \code object != NULL \endcode
cannam@90 1513 * \code object->type == FLAC__METADATA_TYPE_SEEKTABLE \endcode
cannam@90 1514 * \code total_samples > 0 \endcode
cannam@90 1515 * \retval FLAC__bool
cannam@90 1516 * \c false if memory allocation fails, else \c true.
cannam@90 1517 */
cannam@90 1518 FLAC_API FLAC__bool FLAC__metadata_object_seektable_template_append_spaced_points(FLAC__StreamMetadata *object, unsigned num, FLAC__uint64 total_samples);
cannam@90 1519
cannam@90 1520 /** Append a set of evenly-spaced seek point templates to the end of a
cannam@90 1521 * seek table.
cannam@90 1522 *
cannam@90 1523 * \note
cannam@90 1524 * As with the other ..._seektable_template_... functions, you should
cannam@90 1525 * call FLAC__metadata_object_seektable_template_sort() when finished
cannam@90 1526 * to make the seek table legal.
cannam@90 1527 *
cannam@90 1528 * \param object A pointer to an existing SEEKTABLE object.
cannam@90 1529 * \param samples The number of samples apart to space the placeholder
cannam@90 1530 * points. The first point will be at sample \c 0, the
cannam@90 1531 * second at sample \a samples, then 2*\a samples, and
cannam@90 1532 * so on. As long as \a samples and \a total_samples
cannam@90 1533 * are greater than \c 0, there will always be at least
cannam@90 1534 * one seekpoint at sample \c 0.
cannam@90 1535 * \param total_samples The total number of samples to be encoded;
cannam@90 1536 * the seekpoints will be spaced
cannam@90 1537 * \a samples samples apart.
cannam@90 1538 * \assert
cannam@90 1539 * \code object != NULL \endcode
cannam@90 1540 * \code object->type == FLAC__METADATA_TYPE_SEEKTABLE \endcode
cannam@90 1541 * \code samples > 0 \endcode
cannam@90 1542 * \code total_samples > 0 \endcode
cannam@90 1543 * \retval FLAC__bool
cannam@90 1544 * \c false if memory allocation fails, else \c true.
cannam@90 1545 */
cannam@90 1546 FLAC_API FLAC__bool FLAC__metadata_object_seektable_template_append_spaced_points_by_samples(FLAC__StreamMetadata *object, unsigned samples, FLAC__uint64 total_samples);
cannam@90 1547
cannam@90 1548 /** Sort a seek table's seek points according to the format specification,
cannam@90 1549 * removing duplicates.
cannam@90 1550 *
cannam@90 1551 * \param object A pointer to a seek table to be sorted.
cannam@90 1552 * \param compact If \c false, behaves like FLAC__format_seektable_sort().
cannam@90 1553 * If \c true, duplicates are deleted and the seek table is
cannam@90 1554 * shrunk appropriately; the number of placeholder points
cannam@90 1555 * present in the seek table will be the same after the call
cannam@90 1556 * as before.
cannam@90 1557 * \assert
cannam@90 1558 * \code object != NULL \endcode
cannam@90 1559 * \code object->type == FLAC__METADATA_TYPE_SEEKTABLE \endcode
cannam@90 1560 * \retval FLAC__bool
cannam@90 1561 * \c false if realloc() fails, else \c true.
cannam@90 1562 */
cannam@90 1563 FLAC_API FLAC__bool FLAC__metadata_object_seektable_template_sort(FLAC__StreamMetadata *object, FLAC__bool compact);
cannam@90 1564
cannam@90 1565 /** Sets the vendor string in a VORBIS_COMMENT block.
cannam@90 1566 *
cannam@90 1567 * For convenience, a trailing NUL is added to the entry if it doesn't have
cannam@90 1568 * one already.
cannam@90 1569 *
cannam@90 1570 * If \a copy is \c true, a copy of the entry is stored; otherwise, the object
cannam@90 1571 * takes ownership of the \c entry.entry pointer.
cannam@90 1572 *
cannam@90 1573 * \note If this function returns \c false, the caller still owns the
cannam@90 1574 * pointer.
cannam@90 1575 *
cannam@90 1576 * \param object A pointer to an existing VORBIS_COMMENT object.
cannam@90 1577 * \param entry The entry to set the vendor string to.
cannam@90 1578 * \param copy See above.
cannam@90 1579 * \assert
cannam@90 1580 * \code object != NULL \endcode
cannam@90 1581 * \code object->type == FLAC__METADATA_TYPE_VORBIS_COMMENT \endcode
cannam@90 1582 * \code (entry.entry != NULL && entry.length > 0) ||
cannam@90 1583 * (entry.entry == NULL && entry.length == 0) \endcode
cannam@90 1584 * \retval FLAC__bool
cannam@90 1585 * \c false if memory allocation fails or \a entry does not comply with the
cannam@90 1586 * Vorbis comment specification, else \c true.
cannam@90 1587 */
cannam@90 1588 FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_set_vendor_string(FLAC__StreamMetadata *object, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool copy);
cannam@90 1589
cannam@90 1590 /** Resize the comment array.
cannam@90 1591 *
cannam@90 1592 * If the size shrinks, elements will truncated; if it grows, new empty
cannam@90 1593 * fields will be added to the end.
cannam@90 1594 *
cannam@90 1595 * \param object A pointer to an existing VORBIS_COMMENT object.
cannam@90 1596 * \param new_num_comments The desired length of the array; may be \c 0.
cannam@90 1597 * \assert
cannam@90 1598 * \code object != NULL \endcode
cannam@90 1599 * \code object->type == FLAC__METADATA_TYPE_VORBIS_COMMENT \endcode
cannam@90 1600 * \code (object->data.vorbis_comment.comments == NULL && object->data.vorbis_comment.num_comments == 0) ||
cannam@90 1601 * (object->data.vorbis_comment.comments != NULL && object->data.vorbis_comment.num_comments > 0) \endcode
cannam@90 1602 * \retval FLAC__bool
cannam@90 1603 * \c false if memory allocation fails, else \c true.
cannam@90 1604 */
cannam@90 1605 FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_resize_comments(FLAC__StreamMetadata *object, unsigned new_num_comments);
cannam@90 1606
cannam@90 1607 /** Sets a comment in a VORBIS_COMMENT block.
cannam@90 1608 *
cannam@90 1609 * For convenience, a trailing NUL is added to the entry if it doesn't have
cannam@90 1610 * one already.
cannam@90 1611 *
cannam@90 1612 * If \a copy is \c true, a copy of the entry is stored; otherwise, the object
cannam@90 1613 * takes ownership of the \c entry.entry pointer.
cannam@90 1614 *
cannam@90 1615 * \note If this function returns \c false, the caller still owns the
cannam@90 1616 * pointer.
cannam@90 1617 *
cannam@90 1618 * \param object A pointer to an existing VORBIS_COMMENT object.
cannam@90 1619 * \param comment_num Index into comment array to set.
cannam@90 1620 * \param entry The entry to set the comment to.
cannam@90 1621 * \param copy See above.
cannam@90 1622 * \assert
cannam@90 1623 * \code object != NULL \endcode
cannam@90 1624 * \code object->type == FLAC__METADATA_TYPE_VORBIS_COMMENT \endcode
cannam@90 1625 * \code comment_num < object->data.vorbis_comment.num_comments \endcode
cannam@90 1626 * \code (entry.entry != NULL && entry.length > 0) ||
cannam@90 1627 * (entry.entry == NULL && entry.length == 0) \endcode
cannam@90 1628 * \retval FLAC__bool
cannam@90 1629 * \c false if memory allocation fails or \a entry does not comply with the
cannam@90 1630 * Vorbis comment specification, else \c true.
cannam@90 1631 */
cannam@90 1632 FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_set_comment(FLAC__StreamMetadata *object, unsigned comment_num, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool copy);
cannam@90 1633
cannam@90 1634 /** Insert a comment in a VORBIS_COMMENT block at the given index.
cannam@90 1635 *
cannam@90 1636 * For convenience, a trailing NUL is added to the entry if it doesn't have
cannam@90 1637 * one already.
cannam@90 1638 *
cannam@90 1639 * If \a copy is \c true, a copy of the entry is stored; otherwise, the object
cannam@90 1640 * takes ownership of the \c entry.entry pointer.
cannam@90 1641 *
cannam@90 1642 * \note If this function returns \c false, the caller still owns the
cannam@90 1643 * pointer.
cannam@90 1644 *
cannam@90 1645 * \param object A pointer to an existing VORBIS_COMMENT object.
cannam@90 1646 * \param comment_num The index at which to insert the comment. The comments
cannam@90 1647 * at and after \a comment_num move right one position.
cannam@90 1648 * To append a comment to the end, set \a comment_num to
cannam@90 1649 * \c object->data.vorbis_comment.num_comments .
cannam@90 1650 * \param entry The comment to insert.
cannam@90 1651 * \param copy See above.
cannam@90 1652 * \assert
cannam@90 1653 * \code object != NULL \endcode
cannam@90 1654 * \code object->type == FLAC__METADATA_TYPE_VORBIS_COMMENT \endcode
cannam@90 1655 * \code object->data.vorbis_comment.num_comments >= comment_num \endcode
cannam@90 1656 * \code (entry.entry != NULL && entry.length > 0) ||
cannam@90 1657 * (entry.entry == NULL && entry.length == 0 && copy == false) \endcode
cannam@90 1658 * \retval FLAC__bool
cannam@90 1659 * \c false if memory allocation fails or \a entry does not comply with the
cannam@90 1660 * Vorbis comment specification, else \c true.
cannam@90 1661 */
cannam@90 1662 FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_insert_comment(FLAC__StreamMetadata *object, unsigned comment_num, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool copy);
cannam@90 1663
cannam@90 1664 /** Appends a comment to a VORBIS_COMMENT block.
cannam@90 1665 *
cannam@90 1666 * For convenience, a trailing NUL is added to the entry if it doesn't have
cannam@90 1667 * one already.
cannam@90 1668 *
cannam@90 1669 * If \a copy is \c true, a copy of the entry is stored; otherwise, the object
cannam@90 1670 * takes ownership of the \c entry.entry pointer.
cannam@90 1671 *
cannam@90 1672 * \note If this function returns \c false, the caller still owns the
cannam@90 1673 * pointer.
cannam@90 1674 *
cannam@90 1675 * \param object A pointer to an existing VORBIS_COMMENT object.
cannam@90 1676 * \param entry The comment to insert.
cannam@90 1677 * \param copy See above.
cannam@90 1678 * \assert
cannam@90 1679 * \code object != NULL \endcode
cannam@90 1680 * \code object->type == FLAC__METADATA_TYPE_VORBIS_COMMENT \endcode
cannam@90 1681 * \code (entry.entry != NULL && entry.length > 0) ||
cannam@90 1682 * (entry.entry == NULL && entry.length == 0 && copy == false) \endcode
cannam@90 1683 * \retval FLAC__bool
cannam@90 1684 * \c false if memory allocation fails or \a entry does not comply with the
cannam@90 1685 * Vorbis comment specification, else \c true.
cannam@90 1686 */
cannam@90 1687 FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_append_comment(FLAC__StreamMetadata *object, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool copy);
cannam@90 1688
cannam@90 1689 /** Replaces comments in a VORBIS_COMMENT block with a new one.
cannam@90 1690 *
cannam@90 1691 * For convenience, a trailing NUL is added to the entry if it doesn't have
cannam@90 1692 * one already.
cannam@90 1693 *
cannam@90 1694 * Depending on the the value of \a all, either all or just the first comment
cannam@90 1695 * whose field name(s) match the given entry's name will be replaced by the
cannam@90 1696 * given entry. If no comments match, \a entry will simply be appended.
cannam@90 1697 *
cannam@90 1698 * If \a copy is \c true, a copy of the entry is stored; otherwise, the object
cannam@90 1699 * takes ownership of the \c entry.entry pointer.
cannam@90 1700 *
cannam@90 1701 * \note If this function returns \c false, the caller still owns the
cannam@90 1702 * pointer.
cannam@90 1703 *
cannam@90 1704 * \param object A pointer to an existing VORBIS_COMMENT object.
cannam@90 1705 * \param entry The comment to insert.
cannam@90 1706 * \param all If \c true, all comments whose field name matches
cannam@90 1707 * \a entry's field name will be removed, and \a entry will
cannam@90 1708 * be inserted at the position of the first matching
cannam@90 1709 * comment. If \c false, only the first comment whose
cannam@90 1710 * field name matches \a entry's field name will be
cannam@90 1711 * replaced with \a entry.
cannam@90 1712 * \param copy See above.
cannam@90 1713 * \assert
cannam@90 1714 * \code object != NULL \endcode
cannam@90 1715 * \code object->type == FLAC__METADATA_TYPE_VORBIS_COMMENT \endcode
cannam@90 1716 * \code (entry.entry != NULL && entry.length > 0) ||
cannam@90 1717 * (entry.entry == NULL && entry.length == 0 && copy == false) \endcode
cannam@90 1718 * \retval FLAC__bool
cannam@90 1719 * \c false if memory allocation fails or \a entry does not comply with the
cannam@90 1720 * Vorbis comment specification, else \c true.
cannam@90 1721 */
cannam@90 1722 FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_replace_comment(FLAC__StreamMetadata *object, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool all, FLAC__bool copy);
cannam@90 1723
cannam@90 1724 /** Delete a comment in a VORBIS_COMMENT block at the given index.
cannam@90 1725 *
cannam@90 1726 * \param object A pointer to an existing VORBIS_COMMENT object.
cannam@90 1727 * \param comment_num The index of the comment to delete.
cannam@90 1728 * \assert
cannam@90 1729 * \code object != NULL \endcode
cannam@90 1730 * \code object->type == FLAC__METADATA_TYPE_VORBIS_COMMENT \endcode
cannam@90 1731 * \code object->data.vorbis_comment.num_comments > comment_num \endcode
cannam@90 1732 * \retval FLAC__bool
cannam@90 1733 * \c false if realloc() fails, else \c true.
cannam@90 1734 */
cannam@90 1735 FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_delete_comment(FLAC__StreamMetadata *object, unsigned comment_num);
cannam@90 1736
cannam@90 1737 /** Creates a Vorbis comment entry from NUL-terminated name and value strings.
cannam@90 1738 *
cannam@90 1739 * On return, the filled-in \a entry->entry pointer will point to malloc()ed
cannam@90 1740 * memory and shall be owned by the caller. For convenience the entry will
cannam@90 1741 * have a terminating NUL.
cannam@90 1742 *
cannam@90 1743 * \param entry A pointer to a Vorbis comment entry. The entry's
cannam@90 1744 * \c entry pointer should not point to allocated
cannam@90 1745 * memory as it will be overwritten.
cannam@90 1746 * \param field_name The field name in ASCII, \c NUL terminated.
cannam@90 1747 * \param field_value The field value in UTF-8, \c NUL terminated.
cannam@90 1748 * \assert
cannam@90 1749 * \code entry != NULL \endcode
cannam@90 1750 * \code field_name != NULL \endcode
cannam@90 1751 * \code field_value != NULL \endcode
cannam@90 1752 * \retval FLAC__bool
cannam@90 1753 * \c false if malloc() fails, or if \a field_name or \a field_value does
cannam@90 1754 * not comply with the Vorbis comment specification, else \c true.
cannam@90 1755 */
cannam@90 1756 FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_entry_from_name_value_pair(FLAC__StreamMetadata_VorbisComment_Entry *entry, const char *field_name, const char *field_value);
cannam@90 1757
cannam@90 1758 /** Splits a Vorbis comment entry into NUL-terminated name and value strings.
cannam@90 1759 *
cannam@90 1760 * The returned pointers to name and value will be allocated by malloc()
cannam@90 1761 * and shall be owned by the caller.
cannam@90 1762 *
cannam@90 1763 * \param entry An existing Vorbis comment entry.
cannam@90 1764 * \param field_name The address of where the returned pointer to the
cannam@90 1765 * field name will be stored.
cannam@90 1766 * \param field_value The address of where the returned pointer to the
cannam@90 1767 * field value will be stored.
cannam@90 1768 * \assert
cannam@90 1769 * \code (entry.entry != NULL && entry.length > 0) \endcode
cannam@90 1770 * \code memchr(entry.entry, '=', entry.length) != NULL \endcode
cannam@90 1771 * \code field_name != NULL \endcode
cannam@90 1772 * \code field_value != NULL \endcode
cannam@90 1773 * \retval FLAC__bool
cannam@90 1774 * \c false if memory allocation fails or \a entry does not comply with the
cannam@90 1775 * Vorbis comment specification, else \c true.
cannam@90 1776 */
cannam@90 1777 FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_entry_to_name_value_pair(const FLAC__StreamMetadata_VorbisComment_Entry entry, char **field_name, char **field_value);
cannam@90 1778
cannam@90 1779 /** Check if the given Vorbis comment entry's field name matches the given
cannam@90 1780 * field name.
cannam@90 1781 *
cannam@90 1782 * \param entry An existing Vorbis comment entry.
cannam@90 1783 * \param field_name The field name to check.
cannam@90 1784 * \param field_name_length The length of \a field_name, not including the
cannam@90 1785 * terminating \c NUL.
cannam@90 1786 * \assert
cannam@90 1787 * \code (entry.entry != NULL && entry.length > 0) \endcode
cannam@90 1788 * \retval FLAC__bool
cannam@90 1789 * \c true if the field names match, else \c false
cannam@90 1790 */
cannam@90 1791 FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_entry_matches(const FLAC__StreamMetadata_VorbisComment_Entry entry, const char *field_name, unsigned field_name_length);
cannam@90 1792
cannam@90 1793 /** Find a Vorbis comment with the given field name.
cannam@90 1794 *
cannam@90 1795 * The search begins at entry number \a offset; use an offset of 0 to
cannam@90 1796 * search from the beginning of the comment array.
cannam@90 1797 *
cannam@90 1798 * \param object A pointer to an existing VORBIS_COMMENT object.
cannam@90 1799 * \param offset The offset into the comment array from where to start
cannam@90 1800 * the search.
cannam@90 1801 * \param field_name The field name of the comment to find.
cannam@90 1802 * \assert
cannam@90 1803 * \code object != NULL \endcode
cannam@90 1804 * \code object->type == FLAC__METADATA_TYPE_VORBIS_COMMENT \endcode
cannam@90 1805 * \code field_name != NULL \endcode
cannam@90 1806 * \retval int
cannam@90 1807 * The offset in the comment array of the first comment whose field
cannam@90 1808 * name matches \a field_name, or \c -1 if no match was found.
cannam@90 1809 */
cannam@90 1810 FLAC_API int FLAC__metadata_object_vorbiscomment_find_entry_from(const FLAC__StreamMetadata *object, unsigned offset, const char *field_name);
cannam@90 1811
cannam@90 1812 /** Remove first Vorbis comment matching the given field name.
cannam@90 1813 *
cannam@90 1814 * \param object A pointer to an existing VORBIS_COMMENT object.
cannam@90 1815 * \param field_name The field name of comment to delete.
cannam@90 1816 * \assert
cannam@90 1817 * \code object != NULL \endcode
cannam@90 1818 * \code object->type == FLAC__METADATA_TYPE_VORBIS_COMMENT \endcode
cannam@90 1819 * \retval int
cannam@90 1820 * \c -1 for memory allocation error, \c 0 for no matching entries,
cannam@90 1821 * \c 1 for one matching entry deleted.
cannam@90 1822 */
cannam@90 1823 FLAC_API int FLAC__metadata_object_vorbiscomment_remove_entry_matching(FLAC__StreamMetadata *object, const char *field_name);
cannam@90 1824
cannam@90 1825 /** Remove all Vorbis comments matching the given field name.
cannam@90 1826 *
cannam@90 1827 * \param object A pointer to an existing VORBIS_COMMENT object.
cannam@90 1828 * \param field_name The field name of comments to delete.
cannam@90 1829 * \assert
cannam@90 1830 * \code object != NULL \endcode
cannam@90 1831 * \code object->type == FLAC__METADATA_TYPE_VORBIS_COMMENT \endcode
cannam@90 1832 * \retval int
cannam@90 1833 * \c -1 for memory allocation error, \c 0 for no matching entries,
cannam@90 1834 * else the number of matching entries deleted.
cannam@90 1835 */
cannam@90 1836 FLAC_API int FLAC__metadata_object_vorbiscomment_remove_entries_matching(FLAC__StreamMetadata *object, const char *field_name);
cannam@90 1837
cannam@90 1838 /** Create a new CUESHEET track instance.
cannam@90 1839 *
cannam@90 1840 * The object will be "empty"; i.e. values and data pointers will be \c 0.
cannam@90 1841 *
cannam@90 1842 * \retval FLAC__StreamMetadata_CueSheet_Track*
cannam@90 1843 * \c NULL if there was an error allocating memory, else the new instance.
cannam@90 1844 */
cannam@90 1845 FLAC_API FLAC__StreamMetadata_CueSheet_Track *FLAC__metadata_object_cuesheet_track_new(void);
cannam@90 1846
cannam@90 1847 /** Create a copy of an existing CUESHEET track object.
cannam@90 1848 *
cannam@90 1849 * The copy is a "deep" copy, i.e. dynamically allocated data within the
cannam@90 1850 * object is also copied. The caller takes ownership of the new object and
cannam@90 1851 * is responsible for freeing it with
cannam@90 1852 * FLAC__metadata_object_cuesheet_track_delete().
cannam@90 1853 *
cannam@90 1854 * \param object Pointer to object to copy.
cannam@90 1855 * \assert
cannam@90 1856 * \code object != NULL \endcode
cannam@90 1857 * \retval FLAC__StreamMetadata_CueSheet_Track*
cannam@90 1858 * \c NULL if there was an error allocating memory, else the new instance.
cannam@90 1859 */
cannam@90 1860 FLAC_API FLAC__StreamMetadata_CueSheet_Track *FLAC__metadata_object_cuesheet_track_clone(const FLAC__StreamMetadata_CueSheet_Track *object);
cannam@90 1861
cannam@90 1862 /** Delete a CUESHEET track object
cannam@90 1863 *
cannam@90 1864 * \param object A pointer to an existing CUESHEET track object.
cannam@90 1865 * \assert
cannam@90 1866 * \code object != NULL \endcode
cannam@90 1867 */
cannam@90 1868 FLAC_API void FLAC__metadata_object_cuesheet_track_delete(FLAC__StreamMetadata_CueSheet_Track *object);
cannam@90 1869
cannam@90 1870 /** Resize a track's index point array.
cannam@90 1871 *
cannam@90 1872 * If the size shrinks, elements will truncated; if it grows, new blank
cannam@90 1873 * indices will be added to the end.
cannam@90 1874 *
cannam@90 1875 * \param object A pointer to an existing CUESHEET object.
cannam@90 1876 * \param track_num The index of the track to modify. NOTE: this is not
cannam@90 1877 * necessarily the same as the track's \a number field.
cannam@90 1878 * \param new_num_indices The desired length of the array; may be \c 0.
cannam@90 1879 * \assert
cannam@90 1880 * \code object != NULL \endcode
cannam@90 1881 * \code object->type == FLAC__METADATA_TYPE_CUESHEET \endcode
cannam@90 1882 * \code object->data.cue_sheet.num_tracks > track_num \endcode
cannam@90 1883 * \code (object->data.cue_sheet.tracks[track_num].indices == NULL && object->data.cue_sheet.tracks[track_num].num_indices == 0) ||
cannam@90 1884 * (object->data.cue_sheet.tracks[track_num].indices != NULL && object->data.cue_sheet.tracks[track_num].num_indices > 0) \endcode
cannam@90 1885 * \retval FLAC__bool
cannam@90 1886 * \c false if memory allocation error, else \c true.
cannam@90 1887 */
cannam@90 1888 FLAC_API FLAC__bool FLAC__metadata_object_cuesheet_track_resize_indices(FLAC__StreamMetadata *object, unsigned track_num, unsigned new_num_indices);
cannam@90 1889
cannam@90 1890 /** Insert an index point in a CUESHEET track at the given index.
cannam@90 1891 *
cannam@90 1892 * \param object A pointer to an existing CUESHEET object.
cannam@90 1893 * \param track_num The index of the track to modify. NOTE: this is not
cannam@90 1894 * necessarily the same as the track's \a number field.
cannam@90 1895 * \param index_num The index into the track's index array at which to
cannam@90 1896 * insert the index point. NOTE: this is not necessarily
cannam@90 1897 * the same as the index point's \a number field. The
cannam@90 1898 * indices at and after \a index_num move right one
cannam@90 1899 * position. To append an index point to the end, set
cannam@90 1900 * \a index_num to
cannam@90 1901 * \c object->data.cue_sheet.tracks[track_num].num_indices .
cannam@90 1902 * \param index The index point to insert.
cannam@90 1903 * \assert
cannam@90 1904 * \code object != NULL \endcode
cannam@90 1905 * \code object->type == FLAC__METADATA_TYPE_CUESHEET \endcode
cannam@90 1906 * \code object->data.cue_sheet.num_tracks > track_num \endcode
cannam@90 1907 * \code object->data.cue_sheet.tracks[track_num].num_indices >= index_num \endcode
cannam@90 1908 * \retval FLAC__bool
cannam@90 1909 * \c false if realloc() fails, else \c true.
cannam@90 1910 */
cannam@90 1911 FLAC_API FLAC__bool FLAC__metadata_object_cuesheet_track_insert_index(FLAC__StreamMetadata *object, unsigned track_num, unsigned index_num, FLAC__StreamMetadata_CueSheet_Index index);
cannam@90 1912
cannam@90 1913 /** Insert a blank index point in a CUESHEET track at the given index.
cannam@90 1914 *
cannam@90 1915 * A blank index point is one in which all field values are zero.
cannam@90 1916 *
cannam@90 1917 * \param object A pointer to an existing CUESHEET object.
cannam@90 1918 * \param track_num The index of the track to modify. NOTE: this is not
cannam@90 1919 * necessarily the same as the track's \a number field.
cannam@90 1920 * \param index_num The index into the track's index array at which to
cannam@90 1921 * insert the index point. NOTE: this is not necessarily
cannam@90 1922 * the same as the index point's \a number field. The
cannam@90 1923 * indices at and after \a index_num move right one
cannam@90 1924 * position. To append an index point to the end, set
cannam@90 1925 * \a index_num to
cannam@90 1926 * \c object->data.cue_sheet.tracks[track_num].num_indices .
cannam@90 1927 * \assert
cannam@90 1928 * \code object != NULL \endcode
cannam@90 1929 * \code object->type == FLAC__METADATA_TYPE_CUESHEET \endcode
cannam@90 1930 * \code object->data.cue_sheet.num_tracks > track_num \endcode
cannam@90 1931 * \code object->data.cue_sheet.tracks[track_num].num_indices >= index_num \endcode
cannam@90 1932 * \retval FLAC__bool
cannam@90 1933 * \c false if realloc() fails, else \c true.
cannam@90 1934 */
cannam@90 1935 FLAC_API FLAC__bool FLAC__metadata_object_cuesheet_track_insert_blank_index(FLAC__StreamMetadata *object, unsigned track_num, unsigned index_num);
cannam@90 1936
cannam@90 1937 /** Delete an index point in a CUESHEET track at the given index.
cannam@90 1938 *
cannam@90 1939 * \param object A pointer to an existing CUESHEET object.
cannam@90 1940 * \param track_num The index into the track array of the track to
cannam@90 1941 * modify. NOTE: this is not necessarily the same
cannam@90 1942 * as the track's \a number field.
cannam@90 1943 * \param index_num The index into the track's index array of the index
cannam@90 1944 * to delete. NOTE: this is not necessarily the same
cannam@90 1945 * as the index's \a number field.
cannam@90 1946 * \assert
cannam@90 1947 * \code object != NULL \endcode
cannam@90 1948 * \code object->type == FLAC__METADATA_TYPE_CUESHEET \endcode
cannam@90 1949 * \code object->data.cue_sheet.num_tracks > track_num \endcode
cannam@90 1950 * \code object->data.cue_sheet.tracks[track_num].num_indices > index_num \endcode
cannam@90 1951 * \retval FLAC__bool
cannam@90 1952 * \c false if realloc() fails, else \c true.
cannam@90 1953 */
cannam@90 1954 FLAC_API FLAC__bool FLAC__metadata_object_cuesheet_track_delete_index(FLAC__StreamMetadata *object, unsigned track_num, unsigned index_num);
cannam@90 1955
cannam@90 1956 /** Resize the track array.
cannam@90 1957 *
cannam@90 1958 * If the size shrinks, elements will truncated; if it grows, new blank
cannam@90 1959 * tracks will be added to the end.
cannam@90 1960 *
cannam@90 1961 * \param object A pointer to an existing CUESHEET object.
cannam@90 1962 * \param new_num_tracks The desired length of the array; may be \c 0.
cannam@90 1963 * \assert
cannam@90 1964 * \code object != NULL \endcode
cannam@90 1965 * \code object->type == FLAC__METADATA_TYPE_CUESHEET \endcode
cannam@90 1966 * \code (object->data.cue_sheet.tracks == NULL && object->data.cue_sheet.num_tracks == 0) ||
cannam@90 1967 * (object->data.cue_sheet.tracks != NULL && object->data.cue_sheet.num_tracks > 0) \endcode
cannam@90 1968 * \retval FLAC__bool
cannam@90 1969 * \c false if memory allocation error, else \c true.
cannam@90 1970 */
cannam@90 1971 FLAC_API FLAC__bool FLAC__metadata_object_cuesheet_resize_tracks(FLAC__StreamMetadata *object, unsigned new_num_tracks);
cannam@90 1972
cannam@90 1973 /** Sets a track in a CUESHEET block.
cannam@90 1974 *
cannam@90 1975 * If \a copy is \c true, a copy of the track is stored; otherwise, the object
cannam@90 1976 * takes ownership of the \a track pointer.
cannam@90 1977 *
cannam@90 1978 * \param object A pointer to an existing CUESHEET object.
cannam@90 1979 * \param track_num Index into track array to set. NOTE: this is not
cannam@90 1980 * necessarily the same as the track's \a number field.
cannam@90 1981 * \param track The track to set the track to. You may safely pass in
cannam@90 1982 * a const pointer if \a copy is \c true.
cannam@90 1983 * \param copy See above.
cannam@90 1984 * \assert
cannam@90 1985 * \code object != NULL \endcode
cannam@90 1986 * \code object->type == FLAC__METADATA_TYPE_CUESHEET \endcode
cannam@90 1987 * \code track_num < object->data.cue_sheet.num_tracks \endcode
cannam@90 1988 * \code (track->indices != NULL && track->num_indices > 0) ||
cannam@90 1989 * (track->indices == NULL && track->num_indices == 0)
cannam@90 1990 * \retval FLAC__bool
cannam@90 1991 * \c false if \a copy is \c true and malloc() fails, else \c true.
cannam@90 1992 */
cannam@90 1993 FLAC_API FLAC__bool FLAC__metadata_object_cuesheet_set_track(FLAC__StreamMetadata *object, unsigned track_num, FLAC__StreamMetadata_CueSheet_Track *track, FLAC__bool copy);
cannam@90 1994
cannam@90 1995 /** Insert a track in a CUESHEET block at the given index.
cannam@90 1996 *
cannam@90 1997 * If \a copy is \c true, a copy of the track is stored; otherwise, the object
cannam@90 1998 * takes ownership of the \a track pointer.
cannam@90 1999 *
cannam@90 2000 * \param object A pointer to an existing CUESHEET object.
cannam@90 2001 * \param track_num The index at which to insert the track. NOTE: this
cannam@90 2002 * is not necessarily the same as the track's \a number
cannam@90 2003 * field. The tracks at and after \a track_num move right
cannam@90 2004 * one position. To append a track to the end, set
cannam@90 2005 * \a track_num to \c object->data.cue_sheet.num_tracks .
cannam@90 2006 * \param track The track to insert. You may safely pass in a const
cannam@90 2007 * pointer if \a copy is \c true.
cannam@90 2008 * \param copy See above.
cannam@90 2009 * \assert
cannam@90 2010 * \code object != NULL \endcode
cannam@90 2011 * \code object->type == FLAC__METADATA_TYPE_CUESHEET \endcode
cannam@90 2012 * \code object->data.cue_sheet.num_tracks >= track_num \endcode
cannam@90 2013 * \retval FLAC__bool
cannam@90 2014 * \c false if \a copy is \c true and malloc() fails, else \c true.
cannam@90 2015 */
cannam@90 2016 FLAC_API FLAC__bool FLAC__metadata_object_cuesheet_insert_track(FLAC__StreamMetadata *object, unsigned track_num, FLAC__StreamMetadata_CueSheet_Track *track, FLAC__bool copy);
cannam@90 2017
cannam@90 2018 /** Insert a blank track in a CUESHEET block at the given index.
cannam@90 2019 *
cannam@90 2020 * A blank track is one in which all field values are zero.
cannam@90 2021 *
cannam@90 2022 * \param object A pointer to an existing CUESHEET object.
cannam@90 2023 * \param track_num The index at which to insert the track. NOTE: this
cannam@90 2024 * is not necessarily the same as the track's \a number
cannam@90 2025 * field. The tracks at and after \a track_num move right
cannam@90 2026 * one position. To append a track to the end, set
cannam@90 2027 * \a track_num to \c object->data.cue_sheet.num_tracks .
cannam@90 2028 * \assert
cannam@90 2029 * \code object != NULL \endcode
cannam@90 2030 * \code object->type == FLAC__METADATA_TYPE_CUESHEET \endcode
cannam@90 2031 * \code object->data.cue_sheet.num_tracks >= track_num \endcode
cannam@90 2032 * \retval FLAC__bool
cannam@90 2033 * \c false if \a copy is \c true and malloc() fails, else \c true.
cannam@90 2034 */
cannam@90 2035 FLAC_API FLAC__bool FLAC__metadata_object_cuesheet_insert_blank_track(FLAC__StreamMetadata *object, unsigned track_num);
cannam@90 2036
cannam@90 2037 /** Delete a track in a CUESHEET block at the given index.
cannam@90 2038 *
cannam@90 2039 * \param object A pointer to an existing CUESHEET object.
cannam@90 2040 * \param track_num The index into the track array of the track to
cannam@90 2041 * delete. NOTE: this is not necessarily the same
cannam@90 2042 * as the track's \a number field.
cannam@90 2043 * \assert
cannam@90 2044 * \code object != NULL \endcode
cannam@90 2045 * \code object->type == FLAC__METADATA_TYPE_CUESHEET \endcode
cannam@90 2046 * \code object->data.cue_sheet.num_tracks > track_num \endcode
cannam@90 2047 * \retval FLAC__bool
cannam@90 2048 * \c false if realloc() fails, else \c true.
cannam@90 2049 */
cannam@90 2050 FLAC_API FLAC__bool FLAC__metadata_object_cuesheet_delete_track(FLAC__StreamMetadata *object, unsigned track_num);
cannam@90 2051
cannam@90 2052 /** Check a cue sheet to see if it conforms to the FLAC specification.
cannam@90 2053 * See the format specification for limits on the contents of the
cannam@90 2054 * cue sheet.
cannam@90 2055 *
cannam@90 2056 * \param object A pointer to an existing CUESHEET object.
cannam@90 2057 * \param check_cd_da_subset If \c true, check CUESHEET against more
cannam@90 2058 * stringent requirements for a CD-DA (audio) disc.
cannam@90 2059 * \param violation Address of a pointer to a string. If there is a
cannam@90 2060 * violation, a pointer to a string explanation of the
cannam@90 2061 * violation will be returned here. \a violation may be
cannam@90 2062 * \c NULL if you don't need the returned string. Do not
cannam@90 2063 * free the returned string; it will always point to static
cannam@90 2064 * data.
cannam@90 2065 * \assert
cannam@90 2066 * \code object != NULL \endcode
cannam@90 2067 * \code object->type == FLAC__METADATA_TYPE_CUESHEET \endcode
cannam@90 2068 * \retval FLAC__bool
cannam@90 2069 * \c false if cue sheet is illegal, else \c true.
cannam@90 2070 */
cannam@90 2071 FLAC_API FLAC__bool FLAC__metadata_object_cuesheet_is_legal(const FLAC__StreamMetadata *object, FLAC__bool check_cd_da_subset, const char **violation);
cannam@90 2072
cannam@90 2073 /** Calculate and return the CDDB/freedb ID for a cue sheet. The function
cannam@90 2074 * assumes the cue sheet corresponds to a CD; the result is undefined
cannam@90 2075 * if the cuesheet's is_cd bit is not set.
cannam@90 2076 *
cannam@90 2077 * \param object A pointer to an existing CUESHEET object.
cannam@90 2078 * \assert
cannam@90 2079 * \code object != NULL \endcode
cannam@90 2080 * \code object->type == FLAC__METADATA_TYPE_CUESHEET \endcode
cannam@90 2081 * \retval FLAC__uint32
cannam@90 2082 * The unsigned integer representation of the CDDB/freedb ID
cannam@90 2083 */
cannam@90 2084 FLAC_API FLAC__uint32 FLAC__metadata_object_cuesheet_calculate_cddb_id(const FLAC__StreamMetadata *object);
cannam@90 2085
cannam@90 2086 /** Sets the MIME type of a PICTURE block.
cannam@90 2087 *
cannam@90 2088 * If \a copy is \c true, a copy of the string is stored; otherwise, the object
cannam@90 2089 * takes ownership of the pointer. The existing string will be freed if this
cannam@90 2090 * function is successful, otherwise the original string will remain if \a copy
cannam@90 2091 * is \c true and malloc() fails.
cannam@90 2092 *
cannam@90 2093 * \note It is safe to pass a const pointer to \a mime_type if \a copy is \c true.
cannam@90 2094 *
cannam@90 2095 * \param object A pointer to an existing PICTURE object.
cannam@90 2096 * \param mime_type A pointer to the MIME type string. The string must be
cannam@90 2097 * ASCII characters 0x20-0x7e, NUL-terminated. No validation
cannam@90 2098 * is done.
cannam@90 2099 * \param copy See above.
cannam@90 2100 * \assert
cannam@90 2101 * \code object != NULL \endcode
cannam@90 2102 * \code object->type == FLAC__METADATA_TYPE_PICTURE \endcode
cannam@90 2103 * \code (mime_type != NULL) \endcode
cannam@90 2104 * \retval FLAC__bool
cannam@90 2105 * \c false if \a copy is \c true and malloc() fails, else \c true.
cannam@90 2106 */
cannam@90 2107 FLAC_API FLAC__bool FLAC__metadata_object_picture_set_mime_type(FLAC__StreamMetadata *object, char *mime_type, FLAC__bool copy);
cannam@90 2108
cannam@90 2109 /** Sets the description of a PICTURE block.
cannam@90 2110 *
cannam@90 2111 * If \a copy is \c true, a copy of the string is stored; otherwise, the object
cannam@90 2112 * takes ownership of the pointer. The existing string will be freed if this
cannam@90 2113 * function is successful, otherwise the original string will remain if \a copy
cannam@90 2114 * is \c true and malloc() fails.
cannam@90 2115 *
cannam@90 2116 * \note It is safe to pass a const pointer to \a description if \a copy is \c true.
cannam@90 2117 *
cannam@90 2118 * \param object A pointer to an existing PICTURE object.
cannam@90 2119 * \param description A pointer to the description string. The string must be
cannam@90 2120 * valid UTF-8, NUL-terminated. No validation is done.
cannam@90 2121 * \param copy See above.
cannam@90 2122 * \assert
cannam@90 2123 * \code object != NULL \endcode
cannam@90 2124 * \code object->type == FLAC__METADATA_TYPE_PICTURE \endcode
cannam@90 2125 * \code (description != NULL) \endcode
cannam@90 2126 * \retval FLAC__bool
cannam@90 2127 * \c false if \a copy is \c true and malloc() fails, else \c true.
cannam@90 2128 */
cannam@90 2129 FLAC_API FLAC__bool FLAC__metadata_object_picture_set_description(FLAC__StreamMetadata *object, FLAC__byte *description, FLAC__bool copy);
cannam@90 2130
cannam@90 2131 /** Sets the picture data of a PICTURE block.
cannam@90 2132 *
cannam@90 2133 * If \a copy is \c true, a copy of the data is stored; otherwise, the object
cannam@90 2134 * takes ownership of the pointer. Also sets the \a data_length field of the
cannam@90 2135 * metadata object to what is passed in as the \a length parameter. The
cannam@90 2136 * existing data will be freed if this function is successful, otherwise the
cannam@90 2137 * original data and data_length will remain if \a copy is \c true and
cannam@90 2138 * malloc() fails.
cannam@90 2139 *
cannam@90 2140 * \note It is safe to pass a const pointer to \a data if \a copy is \c true.
cannam@90 2141 *
cannam@90 2142 * \param object A pointer to an existing PICTURE object.
cannam@90 2143 * \param data A pointer to the data to set.
cannam@90 2144 * \param length The length of \a data in bytes.
cannam@90 2145 * \param copy See above.
cannam@90 2146 * \assert
cannam@90 2147 * \code object != NULL \endcode
cannam@90 2148 * \code object->type == FLAC__METADATA_TYPE_PICTURE \endcode
cannam@90 2149 * \code (data != NULL && length > 0) ||
cannam@90 2150 * (data == NULL && length == 0 && copy == false) \endcode
cannam@90 2151 * \retval FLAC__bool
cannam@90 2152 * \c false if \a copy is \c true and malloc() fails, else \c true.
cannam@90 2153 */
cannam@90 2154 FLAC_API FLAC__bool FLAC__metadata_object_picture_set_data(FLAC__StreamMetadata *object, FLAC__byte *data, FLAC__uint32 length, FLAC__bool copy);
cannam@90 2155
cannam@90 2156 /** Check a PICTURE block to see if it conforms to the FLAC specification.
cannam@90 2157 * See the format specification for limits on the contents of the
cannam@90 2158 * PICTURE block.
cannam@90 2159 *
cannam@90 2160 * \param object A pointer to existing PICTURE block to be checked.
cannam@90 2161 * \param violation Address of a pointer to a string. If there is a
cannam@90 2162 * violation, a pointer to a string explanation of the
cannam@90 2163 * violation will be returned here. \a violation may be
cannam@90 2164 * \c NULL if you don't need the returned string. Do not
cannam@90 2165 * free the returned string; it will always point to static
cannam@90 2166 * data.
cannam@90 2167 * \assert
cannam@90 2168 * \code object != NULL \endcode
cannam@90 2169 * \code object->type == FLAC__METADATA_TYPE_PICTURE \endcode
cannam@90 2170 * \retval FLAC__bool
cannam@90 2171 * \c false if PICTURE block is illegal, else \c true.
cannam@90 2172 */
cannam@90 2173 FLAC_API FLAC__bool FLAC__metadata_object_picture_is_legal(const FLAC__StreamMetadata *object, const char **violation);
cannam@90 2174
cannam@90 2175 /* \} */
cannam@90 2176
cannam@90 2177 #ifdef __cplusplus
cannam@90 2178 }
cannam@90 2179 #endif
cannam@90 2180
cannam@90 2181 #endif