HomeSort by relevance Sort by last modified time
    Searched refs:vorbis_comment (Results 1 - 14 of 14) sorted by null

  /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);
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){
313 int vorbis_dsp_headerin(vorbis_info *vi,vorbis_comment *vc,ogg_packet *op){
ivorbisfile.h 81 vorbis_comment vc;
131 extern vorbis_comment *ov_comment(OggVorbis_File *vf,int link);
codec_internal.h 222 extern int vorbis_dsp_headerin(vorbis_info *vi,vorbis_comment *vc,
vorbisfile.c 283 vorbis_comment *vc,
    [all...]
  /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/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:__anon6452::__anon6453
    [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;

Completed in 666 milliseconds