/external/tremolo/Tremolo/ |
ivorbiscodec.h | 79 typedef struct vorbis_comment{ struct 85 } vorbis_comment; typedef in typeref:struct:vorbis_comment 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);
|
ivorbisfile.h | 81 vorbis_comment vc; 131 extern vorbis_comment *ov_comment(OggVorbis_File *vf,int link);
|
treminfo.c | 58 void vorbis_comment_init(vorbis_comment *vc){ 74 char *vorbis_comment_query(vorbis_comment *vc, char *tag, int count){ 95 int vorbis_comment_query_count(vorbis_comment *vc, char *tag){ 110 void vorbis_comment_clear(vorbis_comment *vc){ 216 int _vorbis_unpack_comment(vorbis_comment *vc,oggpack_buffer *opb){ 340 int vorbis_dsp_headerin(vorbis_info *vi,vorbis_comment *vc,ogg_packet *op){
|
codec_internal.h | 222 extern int vorbis_dsp_headerin(vorbis_info *vi,vorbis_comment *vc,
|
vorbisfile.c | 283 vorbis_comment *vc, [all...] |
/external/libvorbis/include/vorbis/ |
codec.h | 140 typedef struct vorbis_comment{ struct 148 } vorbis_comment; typedef in typeref:struct:vorbis_comment 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...] |
vorbisfile.h | 128 vorbis_comment *vc; 187 extern vorbis_comment *ov_comment(OggVorbis_File *vf,int link);
|
/external/flac/libFLAC/ |
metadata_object.c | 197 object->length += object->data.vorbis_comment.vendor_string.length; 199 for(i = 0; i < object->data.vorbis_comment.num_comments; i++) { 201 object->length += object->data.vorbis_comment.comments[i].length; 303 for(i = offset; i < object->data.vorbis_comment.num_comments; i++) { 304 if(FLAC__metadata_object_vorbiscomment_entry_matches(object->data.vorbis_comment.comments[i], field_name, field_name_length)) 467 object->data.vorbis_comment.vendor_string.length = (unsigned)strlen(FLAC__VENDOR_STRING); 468 if(!copy_bytes_(&object->data.vorbis_comment.vendor_string.entry, (const FLAC__byte*)FLAC__VENDOR_STRING, object->data.vorbis_comment.vendor_string.length+1)) { 563 if(0 != to->data.vorbis_comment.vendor_string.entry) { 564 free(to->data.vorbis_comment.vendor_string.entry) [all...] |
stream_encoder_framing.c | 66 FLAC__ASSERT(metadata->data.vorbis_comment.vendor_string.length == 0 || 0 != metadata->data.vorbis_comment.vendor_string.entry); 67 i -= metadata->data.vorbis_comment.vendor_string.length; 129 if(!FLAC__bitwriter_write_raw_uint32_little_endian(bw, metadata->data.vorbis_comment.num_comments)) 131 for(i = 0; i < metadata->data.vorbis_comment.num_comments; i++) { 132 if(!FLAC__bitwriter_write_raw_uint32_little_endian(bw, metadata->data.vorbis_comment.comments[i].length)) 134 if(!FLAC__bitwriter_write_byte_block(bw, metadata->data.vorbis_comment.comments[i].entry, metadata->data.vorbis_comment.comments[i].length))
|
stream_encoder.c | 775 /* reorder metadata if necessary to ensure that any VORBIS_COMMENT is the first, according to the (…) 1096 FLAC__StreamMetadata vorbis_comment; local [all...] |
stream_decoder.c | [all...] |
metadata_iterators.c | [all...] |
/external/libvorbis/doc/vorbisfile/ |
Makefile.am | 21 style.css threads.html vorbis_comment.html vorbis_info.html\
|
/external/libvorbis/lib/ |
info.c | 61 void vorbis_comment_init(vorbis_comment *vc){ 65 void vorbis_comment_add(vorbis_comment *vc,const char *comment){ 77 void vorbis_comment_add_tag(vorbis_comment *vc, const char *tag, const char *contents){ 97 char *vorbis_comment_query(vorbis_comment *vc, const char *tag, int count){ 118 int vorbis_comment_query_count(vorbis_comment *vc, const char *tag){ 133 void vorbis_comment_clear(vorbis_comment *vc){ 240 static int _vorbis_unpack_comment(vorbis_comment *vc,oggpack_buffer *opb){ 379 int vorbis_synthesis_headerin(vorbis_info *vi,vorbis_comment *vc,ogg_packet *op){ 461 static int _vorbis_pack_comment(oggpack_buffer *opb,vorbis_comment *vc){ 547 int vorbis_commentheader_out(vorbis_comment *vc [all...] |
vorbisfile.c | 281 static int _fetch_headers(OggVorbis_File *vf,vorbis_info *vi,vorbis_comment *vc, 523 vorbis_comment vc; [all...] |
/external/libvorbis/examples/ |
encoder_example.c | 50 vorbis_comment vc; /* struct that stores all the user comments */
|
decoder_example.c | 52 vorbis_comment vc; /* struct that stores all the bitstream user comments */
|
/external/libvorbis/test/ |
write_read.c | 39 vorbis_comment vc; 141 vorbis_comment vc;
|
/external/flac/include/FLAC/ |
format.h | 163 /** The vendor string inserted by the encoder into the VORBIS_COMMENT block. 165 * VORBIS_COMMENT the trailing null is stripped. 615 /** Vorbis comment entry structure used in VORBIS_COMMENT blocks. (c.f. <A HREF="../format.html#metadata_block_vorbis_comment">format specification</A>) 629 /** FLAC VORBIS_COMMENT structure. (c.f. <A HREF="../format.html#metadata_block_vorbis_comment">format specification</A>) 848 FLAC__StreamMetadata_VorbisComment vorbis_comment; member in union:__anon18306::__anon18307 [all...] |
/frameworks/av/media/libstagefright/codecs/vorbis/dec/ |
SoftVorbis.cpp | 31 int _vorbis_unpack_comment(vorbis_comment *vc,oggpack_buffer *opb);
|
/frameworks/av/media/libstagefright/ |
OggExtractor.cpp | 40 int _vorbis_unpack_comment(vorbis_comment *vc,oggpack_buffer *opb); 111 vorbis_comment mVc;
|
FLACExtractor.cpp | 349 vc = &metadata->data.vorbis_comment;
|