metadata.h
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:82k
源码类别:

Windows CE

开发平台:

C/C++

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