Home
last modified time | relevance | path

Searched refs:vorbis_comment (Results 1 – 20 of 20) sorted by relevance

/external/tremolo/Tremolo/
Divorbiscodec.h79 typedef struct vorbis_comment{ struct
85 } vorbis_comment; argument
93 extern void vorbis_comment_init(vorbis_comment *vc);
94 extern void vorbis_comment_add(vorbis_comment *vc, char *comment);
95 extern void vorbis_comment_add_tag(vorbis_comment *vc,
97 extern char *vorbis_comment_query(vorbis_comment *vc, char *tag, int count);
98 extern int vorbis_comment_query_count(vorbis_comment *vc, char *tag);
99 extern void vorbis_comment_clear(vorbis_comment *vc);
Dtreminfo.c58 void vorbis_comment_init(vorbis_comment *vc){ in vorbis_comment_init()
74 char *vorbis_comment_query(vorbis_comment *vc, char *tag, int count){ in vorbis_comment_query()
95 int vorbis_comment_query_count(vorbis_comment *vc, char *tag){ in vorbis_comment_query_count()
110 void vorbis_comment_clear(vorbis_comment *vc){ in vorbis_comment_clear()
216 int _vorbis_unpack_comment(vorbis_comment *vc,oggpack_buffer *opb){ in _vorbis_unpack_comment()
340 int vorbis_dsp_headerin(vorbis_info *vi,vorbis_comment *vc,ogg_packet *op){ in vorbis_dsp_headerin()
Divorbisfile.h81 vorbis_comment vc;
131 extern vorbis_comment *ov_comment(OggVorbis_File *vf,int link);
Dcodec_internal.h222 extern int vorbis_dsp_headerin(vorbis_info *vi,vorbis_comment *vc,
Dvorbisfile.c283 vorbis_comment *vc, in _fetch_headers()
1542 vorbis_comment *ov_comment(OggVorbis_File *vf,int link){ in ov_comment()
/external/flac/libFLAC/
Dmetadata_object.c199 object->length += object->data.vorbis_comment.vendor_string.length; in vorbiscomment_calculate_length_()
201 for (i = 0; i < object->data.vorbis_comment.num_comments; i++) { in vorbiscomment_calculate_length_()
203 object->length += object->data.vorbis_comment.comments[i].length; in vorbiscomment_calculate_length_()
302 for (i = offset; i < object->data.vorbis_comment.num_comments; i++) { in vorbiscomment_find_entry_from_()
303 …if (FLAC__metadata_object_vorbiscomment_entry_matches(object->data.vorbis_comment.comments[i], fie… in vorbiscomment_find_entry_from_()
464 object->data.vorbis_comment.vendor_string.length = (unsigned)strlen(FLAC__VENDOR_STRING); in FLAC__metadata_object_new()
465 …opy_bytes_(&object->data.vorbis_comment.vendor_string.entry, (const FLAC__byte*)FLAC__VENDOR_STRIN… in FLAC__metadata_object_new()
559 if (to->data.vorbis_comment.vendor_string.entry != NULL) { in FLAC__metadata_object_clone()
560 free(to->data.vorbis_comment.vendor_string.entry); in FLAC__metadata_object_clone()
561 to->data.vorbis_comment.vendor_string.entry = 0; in FLAC__metadata_object_clone()
[all …]
Dstream_encoder_framing.c63 …FLAC__ASSERT(metadata->data.vorbis_comment.vendor_string.length == 0 || 0 != metadata->data.vorbis… in FLAC__add_metadata_block()
64 i -= metadata->data.vorbis_comment.vendor_string.length; in FLAC__add_metadata_block()
130 …if(!FLAC__bitwriter_write_raw_uint32_little_endian(bw, metadata->data.vorbis_comment.num_comments)) in FLAC__add_metadata_block()
132 for(i = 0; i < metadata->data.vorbis_comment.num_comments; i++) { in FLAC__add_metadata_block()
133 …if(!FLAC__bitwriter_write_raw_uint32_little_endian(bw, metadata->data.vorbis_comment.comments[i].l… in FLAC__add_metadata_block()
135 …itwriter_write_byte_block(bw, metadata->data.vorbis_comment.comments[i].entry, metadata->data.vorb… in FLAC__add_metadata_block()
Dstream_encoder.c1210 FLAC__StreamMetadata vorbis_comment; in init_stream_internal_() local
1211 vorbis_comment.type = FLAC__METADATA_TYPE_VORBIS_COMMENT; in init_stream_internal_()
1212 vorbis_comment.is_last = (encoder->protected_->num_metadata_blocks == 0); in init_stream_internal_()
1213 vorbis_comment.length = 4 + 4; /* MAGIC NUMBER */ in init_stream_internal_()
1214 vorbis_comment.data.vorbis_comment.vendor_string.length = 0; in init_stream_internal_()
1215 vorbis_comment.data.vorbis_comment.vendor_string.entry = 0; in init_stream_internal_()
1216 vorbis_comment.data.vorbis_comment.num_comments = 0; in init_stream_internal_()
1217 vorbis_comment.data.vorbis_comment.comments = 0; in init_stream_internal_()
1218 if(!FLAC__add_metadata_block(&vorbis_comment, encoder->private_->frame)) { in init_stream_internal_()
Dstream_decoder.c1482 if(!read_metadata_vorbiscomment_(decoder, &block.data.vorbis_comment, real_length)) in read_metadata_()
1522 if(0 != block.data.vorbis_comment.vendor_string.entry) in read_metadata_()
1523 free(block.data.vorbis_comment.vendor_string.entry); in read_metadata_()
1524 if(block.data.vorbis_comment.num_comments > 0) in read_metadata_()
1525 for(i = 0; i < block.data.vorbis_comment.num_comments; i++) in read_metadata_()
1526 if(0 != block.data.vorbis_comment.comments[i].entry) in read_metadata_()
1527 free(block.data.vorbis_comment.comments[i].entry); in read_metadata_()
1528 if(0 != block.data.vorbis_comment.comments) in read_metadata_()
1529 free(block.data.vorbis_comment.comments); in read_metadata_()
Dmetadata_iterators.c2167 …block_data_vorbis_comment_cb_(handle, read_cb, seek_cb, &block->data.vorbis_comment, block->length… in read_metadata_block_data_cb_()
2632 …return write_metadata_block_data_vorbis_comment_cb_(handle, write_cb, &block->data.vorbis_comment); in write_metadata_block_data_cb_()
/external/llvm/test/CodeGen/Thumb/
D2009-08-12-RegInfoAssert.ll3 %struct.vorbis_comment = type { i8**, i32*, i32, i8* }
10 define i8* @vorbis_comment_query(%struct.vorbis_comment* nocapture %vc, i8* %tag, i32 %count) nounw…
15 …%3 = getelementptr %struct.vorbis_comment, %struct.vorbis_comment* %vc, i32 0, i32 0; <i8***> [#us…
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Thumb/
D2009-08-12-RegInfoAssert.ll3 %struct.vorbis_comment = type { i8**, i32*, i32, i8* }
10 define i8* @vorbis_comment_query(%struct.vorbis_comment* nocapture %vc, i8* %tag, i32 %count) nounw…
15 …%3 = getelementptr %struct.vorbis_comment, %struct.vorbis_comment* %vc, i32 0, i32 0; <i8***> [#us…
/external/swiftshader/third_party/LLVM/test/CodeGen/Thumb/
D2009-08-12-RegInfoAssert.ll3 %struct.vorbis_comment = type { i8**, i32*, i32, i8* }
10 define i8* @vorbis_comment_query(%struct.vorbis_comment* nocapture %vc, i8* %tag, i32 %count) nounw…
15 %3 = getelementptr %struct.vorbis_comment* %vc, i32 0, i32 0; <i8***> [#uses=1]
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/
D2008-07-07-DanglingDeadInsts.ll5 %struct.vorbis_comment = type { i8**, i32*, i32, i8* }
89 define i32 @vorbis_comment_query_count(%struct.vorbis_comment* %vc, i8* %tag) nounwind {
/external/swiftshader/third_party/LLVM/test/CodeGen/X86/
D2008-07-07-DanglingDeadInsts.ll5 %struct.vorbis_comment = type { i8**, i32*, i32, i8* }
89 define i32 @vorbis_comment_query_count(%struct.vorbis_comment* %vc, i8* %tag) nounwind {
/external/llvm/test/CodeGen/X86/
D2008-07-07-DanglingDeadInsts.ll5 %struct.vorbis_comment = type { i8**, i32*, i32, i8* }
89 define i32 @vorbis_comment_query_count(%struct.vorbis_comment* %vc, i8* %tag) nounwind {
/external/swiftshader/third_party/llvm-7.0/llvm/test/Analysis/Dominators/
D2007-01-14-BreakCritEdges.ll5 …nc_state, i32, i64*, i64*, i32*, i64*, %struct.vorbis_info*, %struct.vorbis_comment*, i64, i32, i3…
12 %struct.vorbis_comment = type { i8**, i32*, i32, i8* }
/external/llvm/test/Analysis/Dominators/
D2007-01-14-BreakCritEdges.ll4 …nc_state, i32, i64*, i64*, i32*, i64*, %struct.vorbis_info*, %struct.vorbis_comment*, i64, i32, i3…
11 %struct.vorbis_comment = type { i8**, i32*, i32, i8* }
/external/swiftshader/third_party/LLVM/test/Analysis/Dominators/
D2007-01-14-BreakCritEdges.ll4 …nc_state, i32, i64*, i64*, i32*, i64*, %struct.vorbis_info*, %struct.vorbis_comment*, i64, i32, i3…
11 %struct.vorbis_comment = type { i8**, i32*, i32, i8* }
/external/flac/include/FLAC/
Dformat.h851 FLAC__StreamMetadata_VorbisComment vorbis_comment; member