Lines Matching refs:vendor_string
1535 if(0 != block.data.vorbis_comment.vendor_string.entry)
1536 free(block.data.vorbis_comment.vendor_string.entry);
1707 if (!FLAC__bitreader_read_uint32_little_endian(decoder->private_->input, &obj->vendor_string.length))
1709 if (obj->vendor_string.length > 0) {
1710 if (length < obj->vendor_string.length) {
1711 obj->vendor_string.length = 0;
1712 obj->vendor_string.entry = 0;
1716 length -= obj->vendor_string.length;
1717 if (0 == (obj->vendor_string.entry = safe_malloc_add_2op_(obj->vendor_string.length, /*+*/1))) {
1721 if (!FLAC__bitreader_read_byte_block_aligned_no_crc(decoder->private_->input, obj->vendor_string.entry, obj->vendor_string.length))
1723 obj->vendor_string.entry[obj->vendor_string.length] = '\0';
1726 obj->vendor_string.entry = 0;