1 /********************************************************************
3 * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
4 * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
5 * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
6 * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
8 * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2015 *
9 * by the Xiph.Org Foundation http://www.xiph.org/ *
11 ********************************************************************
13 function: maintain the info structure, info <-> header packets
15 ********************************************************************/
17 /* general handling of the header and the vorbis_info structure (and
24 #include "vorbis/codec.h"
25 #include "codec_internal.h"
33 #define GENERAL_VENDOR_STRING "Xiph.Org libVorbis 1.3.6"
34 #define ENCODE_VENDOR_STRING "Xiph.Org libVorbis I 20180316 (Now 100% fewer shells)"
37 static void _v_writestring(oggpack_buffer *o,const char *s, int bytes){
40 oggpack_write(o,*s++,8);
44 static void _v_readstring(oggpack_buffer *o,char *buf,int bytes){
46 *buf++=oggpack_read(o,8);
50 void vorbis_comment_init(vorbis_comment *vc){
51 memset(vc,0,sizeof(*vc));
54 void vorbis_comment_add(vorbis_comment *vc,const char *comment){
55 vc->user_comments=_ogg_realloc(vc->user_comments,
56 (vc->comments+2)*sizeof(*vc->user_comments));
57 vc->comment_lengths=_ogg_realloc(vc->comment_lengths,
58 (vc->comments+2)*sizeof(*vc->comment_lengths));
59 vc->comment_lengths[vc->comments]=strlen(comment);
60 vc->user_comments[vc->comments]=_ogg_malloc(vc->comment_lengths[vc->comments]+1);
61 strcpy(vc->user_comments[vc->comments], comment);
63 vc->user_comments[vc->comments]=NULL;
66 void vorbis_comment_add_tag(vorbis_comment *vc, const char *tag, const char *contents){
67 /* Length for key and value +2 for = and \0 */
68 char *comment=_ogg_malloc(strlen(tag)+strlen(contents)+2);
71 strcat(comment, contents);
72 vorbis_comment_add(vc, comment);
76 /* This is more or less the same as strncasecmp - but that doesn't exist
77 * everywhere, and this is a fairly trivial function, so we include it */
78 static int tagcompare(const char *s1, const char *s2, int n){
81 if(toupper(s1[c]) != toupper(s2[c]))
88 char *vorbis_comment_query(vorbis_comment *vc, const char *tag, int count){
91 int taglen = strlen(tag)+1; /* +1 for the = we append */
92 char *fulltag = _ogg_malloc(taglen+1);
97 for(i=0;i<vc->comments;i++){
98 if(!tagcompare(vc->user_comments[i], fulltag, taglen)){
100 /* We return a pointer to the data, not a copy */
102 return vc->user_comments[i] + taglen;
109 return NULL; /* didn't find anything */
112 int vorbis_comment_query_count(vorbis_comment *vc, const char *tag){
114 int taglen = strlen(tag)+1; /* +1 for the = we append */
115 char *fulltag = _ogg_malloc(taglen+1);
117 strcat(fulltag, "=");
119 for(i=0;i<vc->comments;i++){
120 if(!tagcompare(vc->user_comments[i], fulltag, taglen))
128 void vorbis_comment_clear(vorbis_comment *vc){
131 if(vc->user_comments){
132 for(i=0;i<vc->comments;i++)
133 if(vc->user_comments[i])_ogg_free(vc->user_comments[i]);
134 _ogg_free(vc->user_comments);
136 if(vc->comment_lengths)_ogg_free(vc->comment_lengths);
137 if(vc->vendor)_ogg_free(vc->vendor);
138 memset(vc,0,sizeof(*vc));
142 /* blocksize 0 is guaranteed to be short, 1 is guaranteed to be long.
143 They may be equal, but short will never ge greater than long */
144 int vorbis_info_blocksize(vorbis_info *vi,int zo){
145 codec_setup_info *ci = vi->codec_setup;
146 return ci ? ci->blocksizes[zo] : -1;
149 /* used by synthesis, which has a full, alloced vi */
150 void vorbis_info_init(vorbis_info *vi){
151 memset(vi,0,sizeof(*vi));
152 vi->codec_setup=_ogg_calloc(1,sizeof(codec_setup_info));
155 void vorbis_info_clear(vorbis_info *vi){
156 codec_setup_info *ci=vi->codec_setup;
161 for(i=0;i<ci->modes;i++)
162 if(ci->mode_param[i])_ogg_free(ci->mode_param[i]);
164 for(i=0;i<ci->maps;i++) /* unpack does the range checking */
165 if(ci->map_param[i]) /* this may be cleaning up an aborted
166 unpack, in which case the below type
168 _mapping_P[ci->map_type[i]]->free_info(ci->map_param[i]);
170 for(i=0;i<ci->floors;i++) /* unpack does the range checking */
171 if(ci->floor_param[i]) /* this may be cleaning up an aborted
172 unpack, in which case the below type
174 _floor_P[ci->floor_type[i]]->free_info(ci->floor_param[i]);
176 for(i=0;i<ci->residues;i++) /* unpack does the range checking */
177 if(ci->residue_param[i]) /* this may be cleaning up an aborted
178 unpack, in which case the below type
180 _residue_P[ci->residue_type[i]]->free_info(ci->residue_param[i]);
182 for(i=0;i<ci->books;i++){
183 if(ci->book_param[i]){
184 /* knows if the book was not alloced */
185 vorbis_staticbook_destroy(ci->book_param[i]);
188 vorbis_book_clear(ci->fullbooks+i);
191 _ogg_free(ci->fullbooks);
193 for(i=0;i<ci->psys;i++)
194 _vi_psy_free(ci->psy_param[i]);
199 memset(vi,0,sizeof(*vi));
202 /* Header packing/unpacking ********************************************/
204 static int _vorbis_unpack_info(vorbis_info *vi,oggpack_buffer *opb){
205 codec_setup_info *ci=vi->codec_setup;
206 if(!ci)return(OV_EFAULT);
208 vi->version=oggpack_read(opb,32);
209 if(vi->version!=0)return(OV_EVERSION);
211 vi->channels=oggpack_read(opb,8);
212 vi->rate=oggpack_read(opb,32);
214 vi->bitrate_upper=(ogg_int32_t)oggpack_read(opb,32);
215 vi->bitrate_nominal=(ogg_int32_t)oggpack_read(opb,32);
216 vi->bitrate_lower=(ogg_int32_t)oggpack_read(opb,32);
218 ci->blocksizes[0]=1<<oggpack_read(opb,4);
219 ci->blocksizes[1]=1<<oggpack_read(opb,4);
221 if(vi->rate<1)goto err_out;
222 if(vi->channels<1)goto err_out;
223 if(ci->blocksizes[0]<64)goto err_out;
224 if(ci->blocksizes[1]<ci->blocksizes[0])goto err_out;
225 if(ci->blocksizes[1]>8192)goto err_out;
227 if(oggpack_read(opb,1)!=1)goto err_out; /* EOP check */
231 vorbis_info_clear(vi);
232 return(OV_EBADHEADER);
235 static int _vorbis_unpack_comment(vorbis_comment *vc,oggpack_buffer *opb){
237 int vendorlen=oggpack_read(opb,32);
238 if(vendorlen<0)goto err_out;
239 if(vendorlen>opb->storage-8)goto err_out;
240 vc->vendor=_ogg_calloc(vendorlen+1,1);
241 _v_readstring(opb,vc->vendor,vendorlen);
242 i=oggpack_read(opb,32);
244 if(i>((opb->storage-oggpack_bytes(opb))>>2))goto err_out;
246 vc->user_comments=_ogg_calloc(vc->comments+1,sizeof(*vc->user_comments));
247 vc->comment_lengths=_ogg_calloc(vc->comments+1, sizeof(*vc->comment_lengths));
249 for(i=0;i<vc->comments;i++){
250 int len=oggpack_read(opb,32);
251 if(len<0)goto err_out;
252 if(len>opb->storage-oggpack_bytes(opb))goto err_out;
253 vc->comment_lengths[i]=len;
254 vc->user_comments[i]=_ogg_calloc(len+1,1);
255 _v_readstring(opb,vc->user_comments[i],len);
257 if(oggpack_read(opb,1)!=1)goto err_out; /* EOP check */
261 vorbis_comment_clear(vc);
262 return(OV_EBADHEADER);
265 /* all of the real encoding details are here. The modes, books,
267 static int _vorbis_unpack_books(vorbis_info *vi,oggpack_buffer *opb){
268 codec_setup_info *ci=vi->codec_setup;
272 ci->books=oggpack_read(opb,8)+1;
273 if(ci->books<=0)goto err_out;
274 for(i=0;i<ci->books;i++){
275 ci->book_param[i]=vorbis_staticbook_unpack(opb);
276 if(!ci->book_param[i])goto err_out;
279 /* time backend settings; hooks are unused */
281 int times=oggpack_read(opb,6)+1;
282 if(times<=0)goto err_out;
283 for(i=0;i<times;i++){
284 int test=oggpack_read(opb,16);
285 if(test<0 || test>=VI_TIMEB)goto err_out;
289 /* floor backend settings */
290 ci->floors=oggpack_read(opb,6)+1;
291 if(ci->floors<=0)goto err_out;
292 for(i=0;i<ci->floors;i++){
293 ci->floor_type[i]=oggpack_read(opb,16);
294 if(ci->floor_type[i]<0 || ci->floor_type[i]>=VI_FLOORB)goto err_out;
295 ci->floor_param[i]=_floor_P[ci->floor_type[i]]->unpack(vi,opb);
296 if(!ci->floor_param[i])goto err_out;
299 /* residue backend settings */
300 ci->residues=oggpack_read(opb,6)+1;
301 if(ci->residues<=0)goto err_out;
302 for(i=0;i<ci->residues;i++){
303 ci->residue_type[i]=oggpack_read(opb,16);
304 if(ci->residue_type[i]<0 || ci->residue_type[i]>=VI_RESB)goto err_out;
305 ci->residue_param[i]=_residue_P[ci->residue_type[i]]->unpack(vi,opb);
306 if(!ci->residue_param[i])goto err_out;
309 /* map backend settings */
310 ci->maps=oggpack_read(opb,6)+1;
311 if(ci->maps<=0)goto err_out;
312 for(i=0;i<ci->maps;i++){
313 ci->map_type[i]=oggpack_read(opb,16);
314 if(ci->map_type[i]<0 || ci->map_type[i]>=VI_MAPB)goto err_out;
315 ci->map_param[i]=_mapping_P[ci->map_type[i]]->unpack(vi,opb);
316 if(!ci->map_param[i])goto err_out;
320 ci->modes=oggpack_read(opb,6)+1;
321 if(ci->modes<=0)goto err_out;
322 for(i=0;i<ci->modes;i++){
323 ci->mode_param[i]=_ogg_calloc(1,sizeof(*ci->mode_param[i]));
324 ci->mode_param[i]->blockflag=oggpack_read(opb,1);
325 ci->mode_param[i]->windowtype=oggpack_read(opb,16);
326 ci->mode_param[i]->transformtype=oggpack_read(opb,16);
327 ci->mode_param[i]->mapping=oggpack_read(opb,8);
329 if(ci->mode_param[i]->windowtype>=VI_WINDOWB)goto err_out;
330 if(ci->mode_param[i]->transformtype>=VI_WINDOWB)goto err_out;
331 if(ci->mode_param[i]->mapping>=ci->maps)goto err_out;
332 if(ci->mode_param[i]->mapping<0)goto err_out;
335 if(oggpack_read(opb,1)!=1)goto err_out; /* top level EOP check */
339 vorbis_info_clear(vi);
340 return(OV_EBADHEADER);
343 /* Is this packet a vorbis ID header? */
344 int vorbis_synthesis_idheader(ogg_packet *op){
349 oggpack_readinit(&opb,op->packet,op->bytes);
352 return(0); /* Not the initial packet */
354 if(oggpack_read(&opb,8) != 1)
355 return 0; /* not an ID header */
358 _v_readstring(&opb,buffer,6);
359 if(memcmp(buffer,"vorbis",6))
360 return 0; /* not vorbis */
368 /* The Vorbis header is in three packets; the initial small packet in
369 the first page that identifies basic parameters, a second packet
370 with bitstream comments and a third packet that holds the
373 int vorbis_synthesis_headerin(vorbis_info *vi,vorbis_comment *vc,ogg_packet *op){
377 oggpack_readinit(&opb,op->packet,op->bytes);
379 /* Which of the three types of header is this? */
380 /* Also verify header-ness, vorbis */
383 int packtype=oggpack_read(&opb,8);
385 _v_readstring(&opb,buffer,6);
386 if(memcmp(buffer,"vorbis",6)){
387 /* not a vorbis header */
388 return(OV_ENOTVORBIS);
391 case 0x01: /* least significant *bit* is read first */
393 /* Not the initial packet */
394 return(OV_EBADHEADER);
397 /* previously initialized info header */
398 return(OV_EBADHEADER);
401 return(_vorbis_unpack_info(vi,&opb));
403 case 0x03: /* least significant *bit* is read first */
405 /* um... we didn't get the initial header */
406 return(OV_EBADHEADER);
408 if(vc->vendor!=NULL){
409 /* previously initialized comment header */
410 return(OV_EBADHEADER);
413 return(_vorbis_unpack_comment(vc,&opb));
415 case 0x05: /* least significant *bit* is read first */
416 if(vi->rate==0 || vc->vendor==NULL){
417 /* um... we didn;t get the initial header or comments yet */
418 return(OV_EBADHEADER);
420 if(vi->codec_setup==NULL){
421 /* improperly initialized vorbis_info */
424 if(((codec_setup_info *)vi->codec_setup)->books>0){
425 /* previously initialized setup header */
426 return(OV_EBADHEADER);
429 return(_vorbis_unpack_books(vi,&opb));
432 /* Not a valid vorbis header type */
433 return(OV_EBADHEADER);
438 return(OV_EBADHEADER);
441 /* pack side **********************************************************/
443 static int _vorbis_pack_info(oggpack_buffer *opb,vorbis_info *vi){
444 codec_setup_info *ci=vi->codec_setup;
446 ci->blocksizes[0]<64||
447 ci->blocksizes[1]<ci->blocksizes[0]){
452 oggpack_write(opb,0x01,8);
453 _v_writestring(opb,"vorbis", 6);
455 /* basic information about the stream */
456 oggpack_write(opb,0x00,32);
457 oggpack_write(opb,vi->channels,8);
458 oggpack_write(opb,vi->rate,32);
460 oggpack_write(opb,vi->bitrate_upper,32);
461 oggpack_write(opb,vi->bitrate_nominal,32);
462 oggpack_write(opb,vi->bitrate_lower,32);
464 oggpack_write(opb,ov_ilog(ci->blocksizes[0]-1),4);
465 oggpack_write(opb,ov_ilog(ci->blocksizes[1]-1),4);
466 oggpack_write(opb,1,1);
471 static int _vorbis_pack_comment(oggpack_buffer *opb,vorbis_comment *vc){
472 int bytes = strlen(ENCODE_VENDOR_STRING);
475 oggpack_write(opb,0x03,8);
476 _v_writestring(opb,"vorbis", 6);
479 oggpack_write(opb,bytes,32);
480 _v_writestring(opb,ENCODE_VENDOR_STRING, bytes);
484 oggpack_write(opb,vc->comments,32);
487 for(i=0;i<vc->comments;i++){
488 if(vc->user_comments[i]){
489 oggpack_write(opb,vc->comment_lengths[i],32);
490 _v_writestring(opb,vc->user_comments[i], vc->comment_lengths[i]);
492 oggpack_write(opb,0,32);
496 oggpack_write(opb,1,1);
501 static int _vorbis_pack_books(oggpack_buffer *opb,vorbis_info *vi){
502 codec_setup_info *ci=vi->codec_setup;
504 if(!ci)return(OV_EFAULT);
506 oggpack_write(opb,0x05,8);
507 _v_writestring(opb,"vorbis", 6);
510 oggpack_write(opb,ci->books-1,8);
511 for(i=0;i<ci->books;i++)
512 if(vorbis_staticbook_pack(ci->book_param[i],opb))goto err_out;
514 /* times; hook placeholders */
515 oggpack_write(opb,0,6);
516 oggpack_write(opb,0,16);
519 oggpack_write(opb,ci->floors-1,6);
520 for(i=0;i<ci->floors;i++){
521 oggpack_write(opb,ci->floor_type[i],16);
522 if(_floor_P[ci->floor_type[i]]->pack)
523 _floor_P[ci->floor_type[i]]->pack(ci->floor_param[i],opb);
529 oggpack_write(opb,ci->residues-1,6);
530 for(i=0;i<ci->residues;i++){
531 oggpack_write(opb,ci->residue_type[i],16);
532 _residue_P[ci->residue_type[i]]->pack(ci->residue_param[i],opb);
536 oggpack_write(opb,ci->maps-1,6);
537 for(i=0;i<ci->maps;i++){
538 oggpack_write(opb,ci->map_type[i],16);
539 _mapping_P[ci->map_type[i]]->pack(vi,ci->map_param[i],opb);
543 oggpack_write(opb,ci->modes-1,6);
544 for(i=0;i<ci->modes;i++){
545 oggpack_write(opb,ci->mode_param[i]->blockflag,1);
546 oggpack_write(opb,ci->mode_param[i]->windowtype,16);
547 oggpack_write(opb,ci->mode_param[i]->transformtype,16);
548 oggpack_write(opb,ci->mode_param[i]->mapping,8);
550 oggpack_write(opb,1,1);
557 int vorbis_commentheader_out(vorbis_comment *vc,
562 oggpack_writeinit(&opb);
563 if(_vorbis_pack_comment(&opb,vc)){
564 oggpack_writeclear(&opb);
568 op->packet = _ogg_malloc(oggpack_bytes(&opb));
569 memcpy(op->packet, opb.buffer, oggpack_bytes(&opb));
571 op->bytes=oggpack_bytes(&opb);
577 oggpack_writeclear(&opb);
581 int vorbis_analysis_headerout(vorbis_dsp_state *v,
585 ogg_packet *op_code){
587 vorbis_info *vi=v->vi;
589 private_state *b=v->backend_state;
591 if(!b||vi->channels<=0||vi->channels>256){
597 /* first header packet **********************************************/
599 oggpack_writeinit(&opb);
600 if(_vorbis_pack_info(&opb,vi))goto err_out;
602 /* build the packet */
603 if(b->header)_ogg_free(b->header);
604 b->header=_ogg_malloc(oggpack_bytes(&opb));
605 memcpy(b->header,opb.buffer,oggpack_bytes(&opb));
606 op->packet=b->header;
607 op->bytes=oggpack_bytes(&opb);
613 /* second header packet (comments) **********************************/
616 if(_vorbis_pack_comment(&opb,vc))goto err_out;
618 if(b->header1)_ogg_free(b->header1);
619 b->header1=_ogg_malloc(oggpack_bytes(&opb));
620 memcpy(b->header1,opb.buffer,oggpack_bytes(&opb));
621 op_comm->packet=b->header1;
622 op_comm->bytes=oggpack_bytes(&opb);
625 op_comm->granulepos=0;
628 /* third header packet (modes/codebooks) ****************************/
631 if(_vorbis_pack_books(&opb,vi))goto err_out;
633 if(b->header2)_ogg_free(b->header2);
634 b->header2=_ogg_malloc(oggpack_bytes(&opb));
635 memcpy(b->header2,opb.buffer,oggpack_bytes(&opb));
636 op_code->packet=b->header2;
637 op_code->bytes=oggpack_bytes(&opb);
640 op_code->granulepos=0;
643 oggpack_writeclear(&opb);
646 memset(op,0,sizeof(*op));
647 memset(op_comm,0,sizeof(*op_comm));
648 memset(op_code,0,sizeof(*op_code));
651 if(vi->channels>0)oggpack_writeclear(&opb);
652 if(b->header)_ogg_free(b->header);
653 if(b->header1)_ogg_free(b->header1);
654 if(b->header2)_ogg_free(b->header2);
662 double vorbis_granule_time(vorbis_dsp_state *v,ogg_int64_t granulepos){
663 if(granulepos == -1) return -1;
665 /* We're not guaranteed a 64 bit unsigned type everywhere, so we
666 have to put the unsigned granpo in a signed type. */
668 return((double)granulepos/v->vi->rate);
670 ogg_int64_t granuleoff=0xffffffff;
672 granuleoff|=0x7ffffffff;
673 return(((double)granulepos+2+granuleoff+granuleoff)/v->vi->rate);
677 const char *vorbis_version_string(void){
678 return GENERAL_VENDOR_STRING;