annotate src/flac-1.2.1/include/FLAC/metadata.h @ 23:619f715526df sv_v2.1

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