Displaying 1 result from an estimated 1 matches for "flac__metadata_chainstatusstr".
2004 Sep 10
1
metaflac bug
...f memory allocating VORBIS_COMMENT block");
- while(FLAC__metadata_iterator_next(iterator))
- ;
- if(!FLAC__metadata_iterator_insert_block_after(iterator, block)) {
- fprintf(stderr, "%s: ERROR: adding new VORBIS_COMMENT block to metadata, status =\"%s\"\n", filename, FLAC__Metadata_ChainStatusString[FLAC__metadata_chain_status(chain)]);
- return false;
+ if(!found_vc_block)
+ /* create a new block if necessary */
+ if(operation->type == OP__SET_VC_FIELD || operation->type == OP__IMPORT_VC_FROM) {
+ block = FLAC__metadata_object_new(FLAC__METADATA_TYPE_VORBIS_COMMENT);
+ if(0...