Searched refs:vorbis_comment (Results 26 - 40 of 40) sorted by relevance

12

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/flac-1.2.1/src/flac/
H A Dmain.c275 FLAC__StreamMetadata *vorbis_comment; member in struct:__anon843
598 if(0 == (option_values.vorbis_comment = FLAC__metadata_object_new(FLAC__METADATA_TYPE_VORBIS_COMMENT)))
749 if(!flac__vorbiscomment_add(option_values.vorbis_comment, option_argument, /*value_from_file=*/true, /*raw=*/!option_values.utf8_convert, &violation))
942 if(!flac__vorbiscomment_add(option_values.vorbis_comment, option_argument, /*value_from_file=*/false, /*raw=*/!option_values.utf8_convert, &violation))
1076 if(0 != option_values.vorbis_comment)
1077 FLAC__metadata_object_delete(option_values.vorbis_comment);
1834 common_options.vorbis_comment = option_values.vorbis_comment;
H A Dencode.c1865 /* @@@ change to append -T values from options.vorbis_comment if input has VC already? */
1871 if(flac_decoder_data->metadata_blocks[i]->type == FLAC__METADATA_TYPE_VORBIS_COMMENT && options.vorbis_comment->data.vorbis_comment.num_comments > 0) {
1885 if((!vc_found || options.vorbis_comment->data.vorbis_comment.num_comments > 0) && flac_decoder_data->num_metadata_blocks < sizeof(flac_decoder_data->metadata_blocks)/sizeof(flac_decoder_data->metadata_blocks[0])) {
1887 FLAC__StreamMetadata *vc = FLAC__metadata_object_clone(options.vorbis_comment);
2070 if(!flac__utils_set_channel_mask_tag(options.vorbis_comment, channel_mask)) {
2076 static_metadata_append(&static_metadata, options.vorbis_comment, /*needs_delete=*/false);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/flac-1.2.1/include/FLAC/
H A Dformat.h848 FLAC__StreamMetadata_VorbisComment vorbis_comment; member in union:__anon796::__anon797
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/flac-1.2.1/src/metaflac/
H A Doperations.c612 write_vc_field(0, &block->data.vorbis_comment.vendor_string, raw, stdout);
613 PPR; printf(" comments: %u\n", block->data.vorbis_comment.num_comments);
614 for(i = 0; i < block->data.vorbis_comment.num_comments; i++) {
616 write_vc_field(0, &block->data.vorbis_comment.comments[i], raw, stdout);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dlibvorbis.c48 vorbis_comment vc ;
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/flac-1.2.1/src/test_libFLAC/
H A Dmetadata_manip.c539 vorbiscomment.data.vorbis_comment.vendor_string.length = vendor_string_length;
540 vorbiscomment.data.vorbis_comment.vendor_string.entry = malloc_or_die_(vendor_string_length+1);
541 memcpy(vorbiscomment.data.vorbis_comment.vendor_string.entry, FLAC__VENDOR_STRING, vendor_string_length+1);
542 vorbiscomment.data.vorbis_comment.num_comments = 0;
543 vorbiscomment.data.vorbis_comment.comments = 0;
612 free(vorbiscomment.data.vorbis_comment.vendor_string.entry);
729 if(tags->data.vorbis_comment.num_comments != 0)
730 return die_("mismatch in tags->data.vorbis_comment.num_comments");
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/flac-1.2.1/src/test_libFLAC++/
H A Dmetadata_manip.cpp524 vorbiscomment.data.vorbis_comment.vendor_string.length = vendor_string_length;
525 vorbiscomment.data.vorbis_comment.vendor_string.entry = (FLAC__byte*)malloc_or_die_(vendor_string_length+1);
526 memcpy(vorbiscomment.data.vorbis_comment.vendor_string.entry, FLAC__VENDOR_STRING, vendor_string_length+1);
527 vorbiscomment.data.vorbis_comment.num_comments = 0;
528 vorbiscomment.data.vorbis_comment.comments = 0;
602 free(vorbiscomment.data.vorbis_comment.vendor_string.entry);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/flac-1.2.1/src/libFLAC/
H A Dstream_encoder.c1096 FLAC__StreamMetadata vorbis_comment; local
1097 vorbis_comment.type = FLAC__METADATA_TYPE_VORBIS_COMMENT;
1098 vorbis_comment.is_last = (encoder->protected_->num_metadata_blocks == 0);
1099 vorbis_comment.length = 4 + 4; /* MAGIC NUMBER */
1100 vorbis_comment.data.vorbis_comment.vendor_string.length = 0;
1101 vorbis_comment.data.vorbis_comment.vendor_string.entry = 0;
1102 vorbis_comment.data.vorbis_comment
[all...]
H A Dstream_decoder.c1511 if(!read_metadata_vorbiscomment_(decoder, &block.data.vorbis_comment))
1551 if(0 != block.data.vorbis_comment.vendor_string.entry)
1552 free(block.data.vorbis_comment.vendor_string.entry);
1553 if(block.data.vorbis_comment.num_comments > 0)
1554 for(i = 0; i < block.data.vorbis_comment.num_comments; i++)
1555 if(0 != block.data.vorbis_comment.comments[i].entry)
1556 free(block.data.vorbis_comment.comments[i].entry);
1557 if(0 != block.data.vorbis_comment.comments)
1558 free(block.data.vorbis_comment.comments);
H A Dmetadata_iterators.c2109 return read_metadata_block_data_vorbis_comment_cb_(handle, read_cb, &block->data.vorbis_comment);
2541 return write_metadata_block_data_vorbis_comment_cb_(handle, write_cb, &block->data.vorbis_comment);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/minidlna/tagutils/
H A Dtagutils-ogg.c59 vorbis_comment vc;
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/minidlna.03.14/tagutils/
H A Dtagutils-ogg.c58 vorbis_comment vc;
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/minidlna.07.26/tagutils/
H A Dtagutils-ogg.c59 vorbis_comment vc;
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/libvorbis-1.2.3/doc/vorbisfile/
H A DMakefile.in211 style.css threads.html vorbis_comment.html vorbis_info.html\
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/libvorbis-1.2.3/lib/
H A Dvorbisfile.c280 static int _fetch_headers(OggVorbis_File *vf,vorbis_info *vi,vorbis_comment *vc,
522 vorbis_comment vc;
1785 vorbis_comment *ov_comment(OggVorbis_File *vf,int link){

Completed in 169 milliseconds

12