Searched refs:vorbiscomment (Results 1 – 9 of 9) sorted by relevance
/external/flac/src/test_libFLAC/ |
D | metadata_object.c | 505 FLAC__StreamMetadata *block, *blockcopy, *vorbiscomment, *cuesheet, *picture; in test_metadata_object() local 1010 vorbiscomment = FLAC__metadata_object_clone(block); in test_metadata_object() 1011 if(0 == vorbiscomment) { in test_metadata_object() 1015 if(!mutils__compare_block(vorbiscomment, block)) in test_metadata_object() 1019 vc_resize_(vorbiscomment, 2); in test_metadata_object() 1020 …printf("testing FLAC__metadata_object_vorbiscomment_resize_comments(grow to %u)...", vorbiscomment… in test_metadata_object() 1021 …if(!FLAC__metadata_object_vorbiscomment_resize_comments(block, vorbiscomment->data.vorbis_comment.… in test_metadata_object() 1025 if(!mutils__compare_block(vorbiscomment, block)) in test_metadata_object() 1029 vc_resize_(vorbiscomment, 1); in test_metadata_object() 1030 …LAC__metadata_object_vorbiscomment_resize_comments(shrink to %u)...", vorbiscomment->data.vorbis_c… in test_metadata_object() [all …]
|
D | metadata_manip.c | 519 FLAC__StreamMetadata streaminfo, vorbiscomment, *cuesheet, picture, padding; in generate_file_() local 543 vorbiscomment.is_last = false; in generate_file_() 544 vorbiscomment.type = FLAC__METADATA_TYPE_VORBIS_COMMENT; in generate_file_() 545 vorbiscomment.length = (4 + vendor_string_length) + 4; in generate_file_() 546 vorbiscomment.data.vorbis_comment.vendor_string.length = vendor_string_length; in generate_file_() 547 vorbiscomment.data.vorbis_comment.vendor_string.entry = malloc_or_die_(vendor_string_length+1); in generate_file_() 548 …memcpy(vorbiscomment.data.vorbis_comment.vendor_string.entry, FLAC__VENDOR_STRING, vendor_string_l… in generate_file_() 549 vorbiscomment.data.vorbis_comment.num_comments = 0; in generate_file_() 550 vorbiscomment.data.vorbis_comment.comments = 0; in generate_file_() 600 metadata[n++] = &vorbiscomment; in generate_file_() [all …]
|
/external/flac/src/test_libs_common/ |
D | metadata_utils.c | 443 FLAC__StreamMetadata *vorbiscomment, in mutils__init_metadata_blocks() argument 502 vorbiscomment->is_last = false; in mutils__init_metadata_blocks() 503 vorbiscomment->type = FLAC__METADATA_TYPE_VORBIS_COMMENT; in mutils__init_metadata_blocks() 504 vorbiscomment->length = (4 + vendor_string_length) + 4 + (4 + 5) + (4 + 0); in mutils__init_metadata_blocks() 505 vorbiscomment->data.vorbis_comment.vendor_string.length = vendor_string_length; in mutils__init_metadata_blocks() 506 vorbiscomment->data.vorbis_comment.vendor_string.entry = malloc_or_die_(vendor_string_length+1); in mutils__init_metadata_blocks() 507 …memcpy(vorbiscomment->data.vorbis_comment.vendor_string.entry, FLAC__VENDOR_STRING, vendor_string_… in mutils__init_metadata_blocks() 508 vorbiscomment->data.vorbis_comment.num_comments = 2; in mutils__init_metadata_blocks() 509 …vorbiscomment->data.vorbis_comment.comments = malloc_or_die_(vorbiscomment->data.vorbis_comment.nu… in mutils__init_metadata_blocks() 510 vorbiscomment->data.vorbis_comment.comments[0].length = 5; in mutils__init_metadata_blocks() [all …]
|
/external/flac/include/test_libs_common/ |
D | metadata_utils.h | 53 FLAC__StreamMetadata *vorbiscomment, 65 FLAC__StreamMetadata *vorbiscomment,
|
/external/flac/src/flac/ |
D | Makefile.am | 43 vorbiscomment.c \ 50 vorbiscomment.h
|
D | CMakeLists.txt | 12 vorbiscomment.c
|
D | Makefile.lite | 50 vorbiscomment.c
|
/external/flac/src/test_libFLAC++/ |
D | metadata_manip.cpp | 505 ::FLAC__StreamMetadata streaminfo, vorbiscomment, *cuesheet, picture, padding; in generate_file_() 529 vorbiscomment.is_last = false; in generate_file_() 530 vorbiscomment.type = ::FLAC__METADATA_TYPE_VORBIS_COMMENT; in generate_file_() 531 vorbiscomment.length = (4 + vendor_string_length) + 4; in generate_file_() 532 vorbiscomment.data.vorbis_comment.vendor_string.length = vendor_string_length; in generate_file_() 533 …vorbiscomment.data.vorbis_comment.vendor_string.entry = (FLAC__byte*)malloc_or_die_(vendor_string_… in generate_file_() 534 …memcpy(vorbiscomment.data.vorbis_comment.vendor_string.entry, FLAC__VENDOR_STRING, vendor_string_l… in generate_file_() 535 vorbiscomment.data.vorbis_comment.num_comments = 0; in generate_file_() 536 vorbiscomment.data.vorbis_comment.comments = 0; in generate_file_() 586 metadata[n++] = &vorbiscomment; in generate_file_() [all …]
|
/external/flac/src/libFLAC++/ |
D | metadata.cpp | 101 const VorbisComment *vorbiscomment = dynamic_cast<const VorbisComment *>(object); in clone() local 114 if(0 != vorbiscomment) in clone() 115 return new VorbisComment(*vorbiscomment); in clone()
|