HomeSort by relevance Sort by last modified time
    Searched refs:vorbis_comment (Results 1 - 20 of 20) 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);
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/
stream_encoder_framing.c 62 FLAC__ASSERT(metadata->data.vorbis_comment.vendor_string.length == 0 || 0 != metadata->data.vorbis_comment.vendor_string.entry);
63 i -= metadata->data.vorbis_comment.vendor_string.length;
125 if(!FLAC__bitwriter_write_raw_uint32_little_endian(bw, metadata->data.vorbis_comment.num_comments))
127 for(i = 0; i < metadata->data.vorbis_comment.num_comments; i++) {
128 if(!FLAC__bitwriter_write_raw_uint32_little_endian(bw, metadata->data.vorbis_comment.comments[i].length))
130 if(!FLAC__bitwriter_write_byte_block(bw, metadata->data.vorbis_comment.comments[i].entry, metadata->data.vorbis_comment.comments[i].length))
stream_encoder.c 747 /* reorder metadata if necessary to ensure that any VORBIS_COMMENT is the first, according to the mapping spec */
1221 FLAC__StreamMetadata vorbis_comment; local
    [all...]
stream_decoder.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 164 /** The vendor string inserted by the encoder into the VORBIS_COMMENT block.
166 * VORBIS_COMMENT the trailing null is stripped.
618 /** Vorbis comment entry structure used in VORBIS_COMMENT blocks. (c.f. <A HREF="../format.html#metadata_block_vorbis_comment">format specification</A>)
632 /** FLAC VORBIS_COMMENT structure. (c.f. <A HREF="../format.html#metadata_block_vorbis_comment">format specification</A>)
851 FLAC__StreamMetadata_VorbisComment vorbis_comment; member in union:__anon11206::__anon11207
    [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 42 int _vorbis_unpack_comment(vorbis_comment *vc,oggpack_buffer *opb);
125 vorbis_comment mVc;
    [all...]
FLACExtractor.cpp 349 vc = &metadata->data.vorbis_comment;

Completed in 438 milliseconds