Home
last modified time | relevance | path

Searched refs:vorbis_comment (Results 1 – 23 of 23) 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/libvorbis/include/vorbis/
Dcodec.h140 typedef struct vorbis_comment{ struct
148 } vorbis_comment; argument
168 extern void vorbis_comment_init(vorbis_comment *vc);
169 extern void vorbis_comment_add(vorbis_comment *vc, const char *comment);
170 extern void vorbis_comment_add_tag(vorbis_comment *vc,
172 extern char *vorbis_comment_query(vorbis_comment *vc, const char *tag, int count);
173 extern int vorbis_comment_query_count(vorbis_comment *vc, const char *tag);
174 extern void vorbis_comment_clear(vorbis_comment *vc);
187 extern int vorbis_commentheader_out(vorbis_comment *vc, ogg_packet *op);
189 vorbis_comment *vc,
[all …]
Dvorbisfile.h128 vorbis_comment *vc;
187 extern vorbis_comment *ov_comment(OggVorbis_File *vf,int link);
/external/flac/libFLAC/
Dmetadata_object.c197 object->length += object->data.vorbis_comment.vendor_string.length; in vorbiscomment_calculate_length_()
199 for(i = 0; i < object->data.vorbis_comment.num_comments; i++) { in vorbiscomment_calculate_length_()
201 object->length += object->data.vorbis_comment.comments[i].length; in vorbiscomment_calculate_length_()
303 for(i = offset; i < object->data.vorbis_comment.num_comments; i++) { in vorbiscomment_find_entry_from_()
304 …if(FLAC__metadata_object_vorbiscomment_entry_matches(object->data.vorbis_comment.comments[i], fiel… in vorbiscomment_find_entry_from_()
467 object->data.vorbis_comment.vendor_string.length = (unsigned)strlen(FLAC__VENDOR_STRING); in FLAC__metadata_object_new()
468 …opy_bytes_(&object->data.vorbis_comment.vendor_string.entry, (const FLAC__byte*)FLAC__VENDOR_STRIN… in FLAC__metadata_object_new()
563 if(0 != to->data.vorbis_comment.vendor_string.entry) { in FLAC__metadata_object_clone()
564 free(to->data.vorbis_comment.vendor_string.entry); in FLAC__metadata_object_clone()
565 to->data.vorbis_comment.vendor_string.entry = 0; in FLAC__metadata_object_clone()
[all …]
Dstream_encoder_framing.c66 …FLAC__ASSERT(metadata->data.vorbis_comment.vendor_string.length == 0 || 0 != metadata->data.vorbis… in FLAC__add_metadata_block()
67 i -= metadata->data.vorbis_comment.vendor_string.length; in FLAC__add_metadata_block()
129 …if(!FLAC__bitwriter_write_raw_uint32_little_endian(bw, metadata->data.vorbis_comment.num_comments)) in FLAC__add_metadata_block()
131 for(i = 0; i < metadata->data.vorbis_comment.num_comments; i++) { in FLAC__add_metadata_block()
132 …if(!FLAC__bitwriter_write_raw_uint32_little_endian(bw, metadata->data.vorbis_comment.comments[i].l… in FLAC__add_metadata_block()
134 …itwriter_write_byte_block(bw, metadata->data.vorbis_comment.comments[i].entry, metadata->data.vorb… in FLAC__add_metadata_block()
Dstream_encoder.c1096 FLAC__StreamMetadata vorbis_comment; in init_stream_internal_() local
1097 vorbis_comment.type = FLAC__METADATA_TYPE_VORBIS_COMMENT; in init_stream_internal_()
1098 vorbis_comment.is_last = (encoder->protected_->num_metadata_blocks == 0); in init_stream_internal_()
1099 vorbis_comment.length = 4 + 4; /* MAGIC NUMBER */ in init_stream_internal_()
1100 vorbis_comment.data.vorbis_comment.vendor_string.length = 0; in init_stream_internal_()
1101 vorbis_comment.data.vorbis_comment.vendor_string.entry = 0; in init_stream_internal_()
1102 vorbis_comment.data.vorbis_comment.num_comments = 0; in init_stream_internal_()
1103 vorbis_comment.data.vorbis_comment.comments = 0; in init_stream_internal_()
1104 if(!FLAC__add_metadata_block(&vorbis_comment, encoder->private_->frame)) { in init_stream_internal_()
Dstream_decoder.c1517 if(!read_metadata_vorbiscomment_(decoder, &block.data.vorbis_comment)) in read_metadata_()
1557 if(0 != block.data.vorbis_comment.vendor_string.entry) in read_metadata_()
1558 free(block.data.vorbis_comment.vendor_string.entry); in read_metadata_()
1559 if(block.data.vorbis_comment.num_comments > 0) in read_metadata_()
1560 for(i = 0; i < block.data.vorbis_comment.num_comments; i++) in read_metadata_()
1561 if(0 != block.data.vorbis_comment.comments[i].entry) in read_metadata_()
1562 free(block.data.vorbis_comment.comments[i].entry); in read_metadata_()
1563 if(0 != block.data.vorbis_comment.comments) in read_metadata_()
1564 free(block.data.vorbis_comment.comments); in read_metadata_()
Dmetadata_iterators.c2110 return read_metadata_block_data_vorbis_comment_cb_(handle, read_cb, &block->data.vorbis_comment); in read_metadata_block_data_cb_()
2542 …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* %vc, i32 0, i32 0; <i8***> [#uses=1]
/external/libvorbis/lib/
Dinfo.c61 void vorbis_comment_init(vorbis_comment *vc){ in vorbis_comment_init()
65 void vorbis_comment_add(vorbis_comment *vc,const char *comment){ in vorbis_comment_add()
77 void vorbis_comment_add_tag(vorbis_comment *vc, const char *tag, const char *contents){ in vorbis_comment_add_tag()
97 char *vorbis_comment_query(vorbis_comment *vc, const char *tag, int count){ in vorbis_comment_query()
118 int vorbis_comment_query_count(vorbis_comment *vc, const char *tag){ in vorbis_comment_query_count()
133 void vorbis_comment_clear(vorbis_comment *vc){ in vorbis_comment_clear()
240 static int _vorbis_unpack_comment(vorbis_comment *vc,oggpack_buffer *opb){ in _vorbis_unpack_comment()
379 int vorbis_synthesis_headerin(vorbis_info *vi,vorbis_comment *vc,ogg_packet *op){ in vorbis_synthesis_headerin()
461 static int _vorbis_pack_comment(oggpack_buffer *opb,vorbis_comment *vc){ in _vorbis_pack_comment()
547 int vorbis_commentheader_out(vorbis_comment *vc, in vorbis_commentheader_out()
[all …]
Dvorbisfile.c281 static int _fetch_headers(OggVorbis_File *vf,vorbis_info *vi,vorbis_comment *vc, in _fetch_headers()
523 vorbis_comment vc; in _bisect_forward_serialno()
1786 vorbis_comment *ov_comment(OggVorbis_File *vf,int link){ in ov_comment()
/external/libvorbis/test/
Dwrite_read.c39 vorbis_comment vc; in write_vorbis_data_or_die()
141 vorbis_comment vc; in read_vorbis_data_or_die()
/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/libvorbis/doc/vorbisfile/
DMakefile.am21 style.css threads.html vorbis_comment.html vorbis_info.html\
DMakefile.in213 style.css threads.html vorbis_comment.html vorbis_info.html\
/external/libvorbis/examples/
Dencoder_example.c50 vorbis_comment vc; /* struct that stores all the user comments */ in main()
Ddecoder_example.c52 vorbis_comment vc; /* struct that stores all the bitstream user comments */ in main()
/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/flac/include/FLAC/
Dformat.h848 FLAC__StreamMetadata_VorbisComment vorbis_comment; member