Home | History | Annotate | Download | only in FLAC

Lines Matching refs:field_name

1746  * \param field_name         The field name in ASCII, \c NUL terminated.
1750 * \code field_name != NULL \endcode
1753 * \c false if malloc() fails, or if \a field_name or \a field_value does
1756 FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_entry_from_name_value_pair(FLAC__StreamMetadata_VorbisComment_Entry *entry, const char *field_name, const char *field_value);
1764 * \param field_name The address of where the returned pointer to the
1771 * \code field_name != NULL \endcode
1777 FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_entry_to_name_value_pair(const FLAC__StreamMetadata_VorbisComment_Entry entry, char **field_name, char **field_value);
1783 * \param field_name The field name to check.
1784 * \param field_name_length The length of \a field_name, not including the
1791 FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_entry_matches(const FLAC__StreamMetadata_VorbisComment_Entry entry, const char *field_name, unsigned field_name_length);
1801 * \param field_name The field name of the comment to find.
1805 * \code field_name != NULL \endcode
1808 * name matches \a field_name, or \c -1 if no match was found.
1810 FLAC_API int FLAC__metadata_object_vorbiscomment_find_entry_from(const FLAC__StreamMetadata *object, unsigned offset, const char *field_name);
1815 * \param field_name The field name of comment to delete.
1823 FLAC_API int FLAC__metadata_object_vorbiscomment_remove_entry_matching(FLAC__StreamMetadata *object, const char *field_name);
1828 * \param field_name The field name of comments to delete.
1836 FLAC_API int FLAC__metadata_object_vorbiscomment_remove_entries_matching(FLAC__StreamMetadata *object, const char *field_name);