Searched refs:comment_num (Results 1 - 6 of 6) sorted by relevance

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/flac/include/FLAC/
H A Dmetadata.h1619 * \param comment_num Index into comment array to set.
1625 * \code comment_num < object->data.vorbis_comment.num_comments \endcode
1632 FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_set_comment(FLAC__StreamMetadata *object, unsigned comment_num, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool copy);
1646 * \param comment_num The index at which to insert the comment. The comments
1647 * at and after \a comment_num move right one position.
1648 * To append a comment to the end, set \a comment_num to
1655 * \code object->data.vorbis_comment.num_comments >= comment_num \endcode
1662 FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_insert_comment(FLAC__StreamMetadata *object, unsigned comment_num, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool copy);
1727 * \param comment_num The index of the comment to delete.
1731 * \code object->data.vorbis_comment.num_comments > comment_num \endcod
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/flac/include/FLAC/
H A Dmetadata.h1619 * \param comment_num Index into comment array to set.
1625 * \code comment_num < object->data.vorbis_comment.num_comments \endcode
1632 FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_set_comment(FLAC__StreamMetadata *object, unsigned comment_num, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool copy);
1646 * \param comment_num The index at which to insert the comment. The comments
1647 * at and after \a comment_num move right one position.
1648 * To append a comment to the end, set \a comment_num to
1655 * \code object->data.vorbis_comment.num_comments >= comment_num \endcode
1662 FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_insert_comment(FLAC__StreamMetadata *object, unsigned comment_num, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool copy);
1727 * \param comment_num The index of the comment to delete.
1731 * \code object->data.vorbis_comment.num_comments > comment_num \endcod
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/flac/include/FLAC/
H A Dmetadata.h1619 * \param comment_num Index into comment array to set.
1625 * \code comment_num < object->data.vorbis_comment.num_comments \endcode
1632 FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_set_comment(FLAC__StreamMetadata *object, unsigned comment_num, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool copy);
1646 * \param comment_num The index at which to insert the comment. The comments
1647 * at and after \a comment_num move right one position.
1648 * To append a comment to the end, set \a comment_num to
1655 * \code object->data.vorbis_comment.num_comments >= comment_num \endcode
1662 FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_insert_comment(FLAC__StreamMetadata *object, unsigned comment_num, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool copy);
1727 * \param comment_num The index of the comment to delete.
1731 * \code object->data.vorbis_comment.num_comments > comment_num \endcod
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/flac/src/libFLAC/
H A Dmetadata_object.c1208 FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_set_comment(FLAC__StreamMetadata *object, unsigned comment_num, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool copy) argument
1211 FLAC__ASSERT(comment_num < object->data.vorbis_comment.num_comments);
1215 return vorbiscomment_set_entry_(object, &object->data.vorbis_comment.comments[comment_num], &entry, copy);
1218 FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_insert_comment(FLAC__StreamMetadata *object, unsigned comment_num, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool copy) argument
1224 FLAC__ASSERT(comment_num <= object->data.vorbis_comment.num_comments);
1234 /* move all comments >= comment_num forward one space */
1235 memmove(&vc->comments[comment_num+1], &vc->comments[comment_num], sizeof(FLAC__StreamMetadata_VorbisComment_Entry)*(vc->num_comments-1-comment_num));
1236 vc->comments[comment_num]
1289 FLAC__metadata_object_vorbiscomment_delete_comment(FLAC__StreamMetadata *object, unsigned comment_num) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/flac/src/libFLAC/
H A Dmetadata_object.c1208 FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_set_comment(FLAC__StreamMetadata *object, unsigned comment_num, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool copy) argument
1211 FLAC__ASSERT(comment_num < object->data.vorbis_comment.num_comments);
1215 return vorbiscomment_set_entry_(object, &object->data.vorbis_comment.comments[comment_num], &entry, copy);
1218 FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_insert_comment(FLAC__StreamMetadata *object, unsigned comment_num, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool copy) argument
1224 FLAC__ASSERT(comment_num <= object->data.vorbis_comment.num_comments);
1234 /* move all comments >= comment_num forward one space */
1235 memmove(&vc->comments[comment_num+1], &vc->comments[comment_num], sizeof(FLAC__StreamMetadata_VorbisComment_Entry)*(vc->num_comments-1-comment_num));
1236 vc->comments[comment_num]
1289 FLAC__metadata_object_vorbiscomment_delete_comment(FLAC__StreamMetadata *object, unsigned comment_num) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/flac/src/libFLAC/
H A Dmetadata_object.c1208 FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_set_comment(FLAC__StreamMetadata *object, unsigned comment_num, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool copy) argument
1211 FLAC__ASSERT(comment_num < object->data.vorbis_comment.num_comments);
1215 return vorbiscomment_set_entry_(object, &object->data.vorbis_comment.comments[comment_num], &entry, copy);
1218 FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_insert_comment(FLAC__StreamMetadata *object, unsigned comment_num, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool copy) argument
1224 FLAC__ASSERT(comment_num <= object->data.vorbis_comment.num_comments);
1234 /* move all comments >= comment_num forward one space */
1235 memmove(&vc->comments[comment_num+1], &vc->comments[comment_num], sizeof(FLAC__StreamMetadata_VorbisComment_Entry)*(vc->num_comments-1-comment_num));
1236 vc->comments[comment_num]
1289 FLAC__metadata_object_vorbiscomment_delete_comment(FLAC__StreamMetadata *object, unsigned comment_num) argument
[all...]

Completed in 138 milliseconds