/external/tremolo/Tremolo/ |
D | ivorbiscodec.h | 79 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);
|
D | treminfo.c | 58 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()
|
D | ivorbisfile.h | 81 vorbis_comment vc; 131 extern vorbis_comment *ov_comment(OggVorbis_File *vf,int link);
|
D | codec_internal.h | 222 extern int vorbis_dsp_headerin(vorbis_info *vi,vorbis_comment *vc,
|
D | vorbisfile.c | 283 vorbis_comment *vc, in _fetch_headers() 1542 vorbis_comment *ov_comment(OggVorbis_File *vf,int link){ in ov_comment()
|
/external/libvorbis/include/vorbis/ |
D | codec.h | 140 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 …]
|
D | vorbisfile.h | 128 vorbis_comment *vc; 187 extern vorbis_comment *ov_comment(OggVorbis_File *vf,int link);
|
/external/llvm/test/CodeGen/Thumb/ |
D | 2009-08-12-RegInfoAssert.ll | 3 %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/libvorbis/lib/ |
D | info.c | 61 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 …]
|
D | vorbisfile.c | 281 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/flac/libFLAC/ |
D | stream_encoder_framing.c | 62 …FLAC__ASSERT(metadata->data.vorbis_comment.vendor_string.length == 0 || 0 != metadata->data.vorbis… in FLAC__add_metadata_block() 63 i -= metadata->data.vorbis_comment.vendor_string.length; in FLAC__add_metadata_block() 125 …if(!FLAC__bitwriter_write_raw_uint32_little_endian(bw, metadata->data.vorbis_comment.num_comments)) in FLAC__add_metadata_block() 127 for(i = 0; i < metadata->data.vorbis_comment.num_comments; i++) { in FLAC__add_metadata_block() 128 …if(!FLAC__bitwriter_write_raw_uint32_little_endian(bw, metadata->data.vorbis_comment.comments[i].l… in FLAC__add_metadata_block() 130 …itwriter_write_byte_block(bw, metadata->data.vorbis_comment.comments[i].entry, metadata->data.vorb… in FLAC__add_metadata_block()
|
D | stream_encoder.c | 1221 FLAC__StreamMetadata vorbis_comment; in init_stream_internal_() local 1222 vorbis_comment.type = FLAC__METADATA_TYPE_VORBIS_COMMENT; in init_stream_internal_() 1223 vorbis_comment.is_last = (encoder->protected_->num_metadata_blocks == 0); in init_stream_internal_() 1224 vorbis_comment.length = 4 + 4; /* MAGIC NUMBER */ in init_stream_internal_() 1225 vorbis_comment.data.vorbis_comment.vendor_string.length = 0; in init_stream_internal_() 1226 vorbis_comment.data.vorbis_comment.vendor_string.entry = 0; in init_stream_internal_() 1227 vorbis_comment.data.vorbis_comment.num_comments = 0; in init_stream_internal_() 1228 vorbis_comment.data.vorbis_comment.comments = 0; in init_stream_internal_() 1229 if(!FLAC__add_metadata_block(&vorbis_comment, encoder->private_->frame)) { in init_stream_internal_()
|
D | stream_decoder.c | 1495 if(!read_metadata_vorbiscomment_(decoder, &block.data.vorbis_comment, real_length)) in read_metadata_() 1535 if(0 != block.data.vorbis_comment.vendor_string.entry) in read_metadata_() 1536 free(block.data.vorbis_comment.vendor_string.entry); in read_metadata_() 1537 if(block.data.vorbis_comment.num_comments > 0) in read_metadata_() 1538 for(i = 0; i < block.data.vorbis_comment.num_comments; i++) in read_metadata_() 1539 if(0 != block.data.vorbis_comment.comments[i].entry) in read_metadata_() 1540 free(block.data.vorbis_comment.comments[i].entry); in read_metadata_() 1541 if(0 != block.data.vorbis_comment.comments) in read_metadata_() 1542 free(block.data.vorbis_comment.comments); in read_metadata_()
|
/external/libvorbis/test/ |
D | write_read.c | 39 vorbis_comment vc; in write_vorbis_data_or_die() 141 vorbis_comment vc; in read_vorbis_data_or_die()
|
/external/llvm/test/CodeGen/X86/ |
D | 2008-07-07-DanglingDeadInsts.ll | 5 %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/ |
D | Makefile.am | 21 style.css threads.html vorbis_comment.html vorbis_info.html\
|
D | Makefile.in | 213 style.css threads.html vorbis_comment.html vorbis_info.html\
|
/external/libvorbis/examples/ |
D | encoder_example.c | 50 vorbis_comment vc; /* struct that stores all the user comments */ in main()
|
D | decoder_example.c | 52 vorbis_comment vc; /* struct that stores all the bitstream user comments */ in main()
|
/external/llvm/test/Analysis/Dominators/ |
D | 2007-01-14-BreakCritEdges.ll | 4 …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/ |
D | format.h | 851 FLAC__StreamMetadata_VorbisComment vorbis_comment; member
|