Fix shift by negative value when reading blocksize.
[platform/upstream/libvorbis.git] / lib / info.c
1 /********************************************************************
2  *                                                                  *
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.       *
7  *                                                                  *
8  * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2015             *
9  * by the Xiph.Org Foundation http://www.xiph.org/                  *
10  *                                                                  *
11  ********************************************************************
12
13  function: maintain the info structure, info <-> header packets
14
15  ********************************************************************/
16
17 /* general handling of the header and the vorbis_info structure (and
18    substructures) */
19
20 #include <stdlib.h>
21 #include <string.h>
22 #include <ctype.h>
23 #include <ogg/ogg.h>
24 #include "vorbis/codec.h"
25 #include "codec_internal.h"
26 #include "codebook.h"
27 #include "registry.h"
28 #include "window.h"
29 #include "psy.h"
30 #include "misc.h"
31 #include "os.h"
32
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)"
35
36 /* helpers */
37 static void _v_writestring(oggpack_buffer *o,const char *s, int bytes){
38
39   while(bytes--){
40     oggpack_write(o,*s++,8);
41   }
42 }
43
44 static void _v_readstring(oggpack_buffer *o,char *buf,int bytes){
45   while(bytes--){
46     *buf++=oggpack_read(o,8);
47   }
48 }
49
50 void vorbis_comment_init(vorbis_comment *vc){
51   memset(vc,0,sizeof(*vc));
52 }
53
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);
62   vc->comments++;
63   vc->user_comments[vc->comments]=NULL;
64 }
65
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);
69   strcpy(comment, tag);
70   strcat(comment, "=");
71   strcat(comment, contents);
72   vorbis_comment_add(vc, comment);
73   _ogg_free(comment);
74 }
75
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){
79   int c=0;
80   while(c < n){
81     if(toupper(s1[c]) != toupper(s2[c]))
82       return !0;
83     c++;
84   }
85   return 0;
86 }
87
88 char *vorbis_comment_query(vorbis_comment *vc, const char *tag, int count){
89   long i;
90   int found = 0;
91   int taglen = strlen(tag)+1; /* +1 for the = we append */
92   char *fulltag = _ogg_malloc(taglen+1);
93
94   strcpy(fulltag, tag);
95   strcat(fulltag, "=");
96
97   for(i=0;i<vc->comments;i++){
98     if(!tagcompare(vc->user_comments[i], fulltag, taglen)){
99       if(count == found) {
100         /* We return a pointer to the data, not a copy */
101         _ogg_free(fulltag);
102         return vc->user_comments[i] + taglen;
103       } else {
104         found++;
105       }
106     }
107   }
108   _ogg_free(fulltag);
109   return NULL; /* didn't find anything */
110 }
111
112 int vorbis_comment_query_count(vorbis_comment *vc, const char *tag){
113   int i,count=0;
114   int taglen = strlen(tag)+1; /* +1 for the = we append */
115   char *fulltag = _ogg_malloc(taglen+1);
116   strcpy(fulltag,tag);
117   strcat(fulltag, "=");
118
119   for(i=0;i<vc->comments;i++){
120     if(!tagcompare(vc->user_comments[i], fulltag, taglen))
121       count++;
122   }
123
124   _ogg_free(fulltag);
125   return count;
126 }
127
128 void vorbis_comment_clear(vorbis_comment *vc){
129   if(vc){
130     long i;
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);
135     }
136     if(vc->comment_lengths)_ogg_free(vc->comment_lengths);
137     if(vc->vendor)_ogg_free(vc->vendor);
138     memset(vc,0,sizeof(*vc));
139   }
140 }
141
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;
147 }
148
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));
153 }
154
155 void vorbis_info_clear(vorbis_info *vi){
156   codec_setup_info     *ci=vi->codec_setup;
157   int i;
158
159   if(ci){
160
161     for(i=0;i<ci->modes;i++)
162       if(ci->mode_param[i])_ogg_free(ci->mode_param[i]);
163
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
167                               cannot be trusted */
168         _mapping_P[ci->map_type[i]]->free_info(ci->map_param[i]);
169
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
173                                 cannot be trusted */
174         _floor_P[ci->floor_type[i]]->free_info(ci->floor_param[i]);
175
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
179                                   cannot be trusted */
180         _residue_P[ci->residue_type[i]]->free_info(ci->residue_param[i]);
181
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]);
186       }
187       if(ci->fullbooks)
188         vorbis_book_clear(ci->fullbooks+i);
189     }
190     if(ci->fullbooks)
191         _ogg_free(ci->fullbooks);
192
193     for(i=0;i<ci->psys;i++)
194       _vi_psy_free(ci->psy_param[i]);
195
196     _ogg_free(ci);
197   }
198
199   memset(vi,0,sizeof(*vi));
200 }
201
202 /* Header packing/unpacking ********************************************/
203
204 static int _vorbis_unpack_info(vorbis_info *vi,oggpack_buffer *opb){
205   codec_setup_info     *ci=vi->codec_setup;
206   int bs;
207   if(!ci)return(OV_EFAULT);
208
209   vi->version=oggpack_read(opb,32);
210   if(vi->version!=0)return(OV_EVERSION);
211
212   vi->channels=oggpack_read(opb,8);
213   vi->rate=oggpack_read(opb,32);
214
215   vi->bitrate_upper=(ogg_int32_t)oggpack_read(opb,32);
216   vi->bitrate_nominal=(ogg_int32_t)oggpack_read(opb,32);
217   vi->bitrate_lower=(ogg_int32_t)oggpack_read(opb,32);
218
219   bs = oggpack_read(opb,4);
220   if(bs<0)goto err_out;
221   ci->blocksizes[0]=1<<bs;
222   bs = oggpack_read(opb,4);
223   if(bs<0)goto err_out;
224   ci->blocksizes[1]=1<<bs;
225
226   if(vi->rate<1)goto err_out;
227   if(vi->channels<1)goto err_out;
228   if(ci->blocksizes[0]<64)goto err_out;
229   if(ci->blocksizes[1]<ci->blocksizes[0])goto err_out;
230   if(ci->blocksizes[1]>8192)goto err_out;
231
232   if(oggpack_read(opb,1)!=1)goto err_out; /* EOP check */
233
234   return(0);
235  err_out:
236   vorbis_info_clear(vi);
237   return(OV_EBADHEADER);
238 }
239
240 static int _vorbis_unpack_comment(vorbis_comment *vc,oggpack_buffer *opb){
241   int i;
242   int vendorlen=oggpack_read(opb,32);
243   if(vendorlen<0)goto err_out;
244   if(vendorlen>opb->storage-8)goto err_out;
245   vc->vendor=_ogg_calloc(vendorlen+1,1);
246   _v_readstring(opb,vc->vendor,vendorlen);
247   i=oggpack_read(opb,32);
248   if(i<0)goto err_out;
249   if(i>((opb->storage-oggpack_bytes(opb))>>2))goto err_out;
250   vc->comments=i;
251   vc->user_comments=_ogg_calloc(vc->comments+1,sizeof(*vc->user_comments));
252   vc->comment_lengths=_ogg_calloc(vc->comments+1, sizeof(*vc->comment_lengths));
253
254   for(i=0;i<vc->comments;i++){
255     int len=oggpack_read(opb,32);
256     if(len<0)goto err_out;
257     if(len>opb->storage-oggpack_bytes(opb))goto err_out;
258     vc->comment_lengths[i]=len;
259     vc->user_comments[i]=_ogg_calloc(len+1,1);
260     _v_readstring(opb,vc->user_comments[i],len);
261   }
262   if(oggpack_read(opb,1)!=1)goto err_out; /* EOP check */
263
264   return(0);
265  err_out:
266   vorbis_comment_clear(vc);
267   return(OV_EBADHEADER);
268 }
269
270 /* all of the real encoding details are here.  The modes, books,
271    everything */
272 static int _vorbis_unpack_books(vorbis_info *vi,oggpack_buffer *opb){
273   codec_setup_info     *ci=vi->codec_setup;
274   int i;
275
276   /* codebooks */
277   ci->books=oggpack_read(opb,8)+1;
278   if(ci->books<=0)goto err_out;
279   for(i=0;i<ci->books;i++){
280     ci->book_param[i]=vorbis_staticbook_unpack(opb);
281     if(!ci->book_param[i])goto err_out;
282   }
283
284   /* time backend settings; hooks are unused */
285   {
286     int times=oggpack_read(opb,6)+1;
287     if(times<=0)goto err_out;
288     for(i=0;i<times;i++){
289       int test=oggpack_read(opb,16);
290       if(test<0 || test>=VI_TIMEB)goto err_out;
291     }
292   }
293
294   /* floor backend settings */
295   ci->floors=oggpack_read(opb,6)+1;
296   if(ci->floors<=0)goto err_out;
297   for(i=0;i<ci->floors;i++){
298     ci->floor_type[i]=oggpack_read(opb,16);
299     if(ci->floor_type[i]<0 || ci->floor_type[i]>=VI_FLOORB)goto err_out;
300     ci->floor_param[i]=_floor_P[ci->floor_type[i]]->unpack(vi,opb);
301     if(!ci->floor_param[i])goto err_out;
302   }
303
304   /* residue backend settings */
305   ci->residues=oggpack_read(opb,6)+1;
306   if(ci->residues<=0)goto err_out;
307   for(i=0;i<ci->residues;i++){
308     ci->residue_type[i]=oggpack_read(opb,16);
309     if(ci->residue_type[i]<0 || ci->residue_type[i]>=VI_RESB)goto err_out;
310     ci->residue_param[i]=_residue_P[ci->residue_type[i]]->unpack(vi,opb);
311     if(!ci->residue_param[i])goto err_out;
312   }
313
314   /* map backend settings */
315   ci->maps=oggpack_read(opb,6)+1;
316   if(ci->maps<=0)goto err_out;
317   for(i=0;i<ci->maps;i++){
318     ci->map_type[i]=oggpack_read(opb,16);
319     if(ci->map_type[i]<0 || ci->map_type[i]>=VI_MAPB)goto err_out;
320     ci->map_param[i]=_mapping_P[ci->map_type[i]]->unpack(vi,opb);
321     if(!ci->map_param[i])goto err_out;
322   }
323
324   /* mode settings */
325   ci->modes=oggpack_read(opb,6)+1;
326   if(ci->modes<=0)goto err_out;
327   for(i=0;i<ci->modes;i++){
328     ci->mode_param[i]=_ogg_calloc(1,sizeof(*ci->mode_param[i]));
329     ci->mode_param[i]->blockflag=oggpack_read(opb,1);
330     ci->mode_param[i]->windowtype=oggpack_read(opb,16);
331     ci->mode_param[i]->transformtype=oggpack_read(opb,16);
332     ci->mode_param[i]->mapping=oggpack_read(opb,8);
333
334     if(ci->mode_param[i]->windowtype>=VI_WINDOWB)goto err_out;
335     if(ci->mode_param[i]->transformtype>=VI_WINDOWB)goto err_out;
336     if(ci->mode_param[i]->mapping>=ci->maps)goto err_out;
337     if(ci->mode_param[i]->mapping<0)goto err_out;
338   }
339
340   if(oggpack_read(opb,1)!=1)goto err_out; /* top level EOP check */
341
342   return(0);
343  err_out:
344   vorbis_info_clear(vi);
345   return(OV_EBADHEADER);
346 }
347
348 /* Is this packet a vorbis ID header? */
349 int vorbis_synthesis_idheader(ogg_packet *op){
350   oggpack_buffer opb;
351   char buffer[6];
352
353   if(op){
354     oggpack_readinit(&opb,op->packet,op->bytes);
355
356     if(!op->b_o_s)
357       return(0); /* Not the initial packet */
358
359     if(oggpack_read(&opb,8) != 1)
360       return 0; /* not an ID header */
361
362     memset(buffer,0,6);
363     _v_readstring(&opb,buffer,6);
364     if(memcmp(buffer,"vorbis",6))
365       return 0; /* not vorbis */
366
367     return 1;
368   }
369
370   return 0;
371 }
372
373 /* The Vorbis header is in three packets; the initial small packet in
374    the first page that identifies basic parameters, a second packet
375    with bitstream comments and a third packet that holds the
376    codebook. */
377
378 int vorbis_synthesis_headerin(vorbis_info *vi,vorbis_comment *vc,ogg_packet *op){
379   oggpack_buffer opb;
380
381   if(op){
382     oggpack_readinit(&opb,op->packet,op->bytes);
383
384     /* Which of the three types of header is this? */
385     /* Also verify header-ness, vorbis */
386     {
387       char buffer[6];
388       int packtype=oggpack_read(&opb,8);
389       memset(buffer,0,6);
390       _v_readstring(&opb,buffer,6);
391       if(memcmp(buffer,"vorbis",6)){
392         /* not a vorbis header */
393         return(OV_ENOTVORBIS);
394       }
395       switch(packtype){
396       case 0x01: /* least significant *bit* is read first */
397         if(!op->b_o_s){
398           /* Not the initial packet */
399           return(OV_EBADHEADER);
400         }
401         if(vi->rate!=0){
402           /* previously initialized info header */
403           return(OV_EBADHEADER);
404         }
405
406         return(_vorbis_unpack_info(vi,&opb));
407
408       case 0x03: /* least significant *bit* is read first */
409         if(vi->rate==0){
410           /* um... we didn't get the initial header */
411           return(OV_EBADHEADER);
412         }
413         if(vc->vendor!=NULL){
414           /* previously initialized comment header */
415           return(OV_EBADHEADER);
416         }
417
418         return(_vorbis_unpack_comment(vc,&opb));
419
420       case 0x05: /* least significant *bit* is read first */
421         if(vi->rate==0 || vc->vendor==NULL){
422           /* um... we didn;t get the initial header or comments yet */
423           return(OV_EBADHEADER);
424         }
425         if(vi->codec_setup==NULL){
426           /* improperly initialized vorbis_info */
427           return(OV_EFAULT);
428         }
429         if(((codec_setup_info *)vi->codec_setup)->books>0){
430           /* previously initialized setup header */
431           return(OV_EBADHEADER);
432         }
433
434         return(_vorbis_unpack_books(vi,&opb));
435
436       default:
437         /* Not a valid vorbis header type */
438         return(OV_EBADHEADER);
439         break;
440       }
441     }
442   }
443   return(OV_EBADHEADER);
444 }
445
446 /* pack side **********************************************************/
447
448 static int _vorbis_pack_info(oggpack_buffer *opb,vorbis_info *vi){
449   codec_setup_info     *ci=vi->codec_setup;
450   if(!ci||
451      ci->blocksizes[0]<64||
452      ci->blocksizes[1]<ci->blocksizes[0]){
453     return(OV_EFAULT);
454   }
455
456   /* preamble */
457   oggpack_write(opb,0x01,8);
458   _v_writestring(opb,"vorbis", 6);
459
460   /* basic information about the stream */
461   oggpack_write(opb,0x00,32);
462   oggpack_write(opb,vi->channels,8);
463   oggpack_write(opb,vi->rate,32);
464
465   oggpack_write(opb,vi->bitrate_upper,32);
466   oggpack_write(opb,vi->bitrate_nominal,32);
467   oggpack_write(opb,vi->bitrate_lower,32);
468
469   oggpack_write(opb,ov_ilog(ci->blocksizes[0]-1),4);
470   oggpack_write(opb,ov_ilog(ci->blocksizes[1]-1),4);
471   oggpack_write(opb,1,1);
472
473   return(0);
474 }
475
476 static int _vorbis_pack_comment(oggpack_buffer *opb,vorbis_comment *vc){
477   int bytes = strlen(ENCODE_VENDOR_STRING);
478
479   /* preamble */
480   oggpack_write(opb,0x03,8);
481   _v_writestring(opb,"vorbis", 6);
482
483   /* vendor */
484   oggpack_write(opb,bytes,32);
485   _v_writestring(opb,ENCODE_VENDOR_STRING, bytes);
486
487   /* comments */
488
489   oggpack_write(opb,vc->comments,32);
490   if(vc->comments){
491     int i;
492     for(i=0;i<vc->comments;i++){
493       if(vc->user_comments[i]){
494         oggpack_write(opb,vc->comment_lengths[i],32);
495         _v_writestring(opb,vc->user_comments[i], vc->comment_lengths[i]);
496       }else{
497         oggpack_write(opb,0,32);
498       }
499     }
500   }
501   oggpack_write(opb,1,1);
502
503   return(0);
504 }
505
506 static int _vorbis_pack_books(oggpack_buffer *opb,vorbis_info *vi){
507   codec_setup_info     *ci=vi->codec_setup;
508   int i;
509   if(!ci)return(OV_EFAULT);
510
511   oggpack_write(opb,0x05,8);
512   _v_writestring(opb,"vorbis", 6);
513
514   /* books */
515   oggpack_write(opb,ci->books-1,8);
516   for(i=0;i<ci->books;i++)
517     if(vorbis_staticbook_pack(ci->book_param[i],opb))goto err_out;
518
519   /* times; hook placeholders */
520   oggpack_write(opb,0,6);
521   oggpack_write(opb,0,16);
522
523   /* floors */
524   oggpack_write(opb,ci->floors-1,6);
525   for(i=0;i<ci->floors;i++){
526     oggpack_write(opb,ci->floor_type[i],16);
527     if(_floor_P[ci->floor_type[i]]->pack)
528       _floor_P[ci->floor_type[i]]->pack(ci->floor_param[i],opb);
529     else
530       goto err_out;
531   }
532
533   /* residues */
534   oggpack_write(opb,ci->residues-1,6);
535   for(i=0;i<ci->residues;i++){
536     oggpack_write(opb,ci->residue_type[i],16);
537     _residue_P[ci->residue_type[i]]->pack(ci->residue_param[i],opb);
538   }
539
540   /* maps */
541   oggpack_write(opb,ci->maps-1,6);
542   for(i=0;i<ci->maps;i++){
543     oggpack_write(opb,ci->map_type[i],16);
544     _mapping_P[ci->map_type[i]]->pack(vi,ci->map_param[i],opb);
545   }
546
547   /* modes */
548   oggpack_write(opb,ci->modes-1,6);
549   for(i=0;i<ci->modes;i++){
550     oggpack_write(opb,ci->mode_param[i]->blockflag,1);
551     oggpack_write(opb,ci->mode_param[i]->windowtype,16);
552     oggpack_write(opb,ci->mode_param[i]->transformtype,16);
553     oggpack_write(opb,ci->mode_param[i]->mapping,8);
554   }
555   oggpack_write(opb,1,1);
556
557   return(0);
558 err_out:
559   return(-1);
560 }
561
562 int vorbis_commentheader_out(vorbis_comment *vc,
563                                           ogg_packet *op){
564
565   oggpack_buffer opb;
566
567   oggpack_writeinit(&opb);
568   if(_vorbis_pack_comment(&opb,vc)){
569     oggpack_writeclear(&opb);
570     return OV_EIMPL;
571   }
572
573   op->packet = _ogg_malloc(oggpack_bytes(&opb));
574   memcpy(op->packet, opb.buffer, oggpack_bytes(&opb));
575
576   op->bytes=oggpack_bytes(&opb);
577   op->b_o_s=0;
578   op->e_o_s=0;
579   op->granulepos=0;
580   op->packetno=1;
581
582   oggpack_writeclear(&opb);
583   return 0;
584 }
585
586 int vorbis_analysis_headerout(vorbis_dsp_state *v,
587                               vorbis_comment *vc,
588                               ogg_packet *op,
589                               ogg_packet *op_comm,
590                               ogg_packet *op_code){
591   int ret=OV_EIMPL;
592   vorbis_info *vi=v->vi;
593   oggpack_buffer opb;
594   private_state *b=v->backend_state;
595
596   if(!b||vi->channels<=0||vi->channels>256){
597     b = NULL;
598     ret=OV_EFAULT;
599     goto err_out;
600   }
601
602   /* first header packet **********************************************/
603
604   oggpack_writeinit(&opb);
605   if(_vorbis_pack_info(&opb,vi))goto err_out;
606
607   /* build the packet */
608   if(b->header)_ogg_free(b->header);
609   b->header=_ogg_malloc(oggpack_bytes(&opb));
610   memcpy(b->header,opb.buffer,oggpack_bytes(&opb));
611   op->packet=b->header;
612   op->bytes=oggpack_bytes(&opb);
613   op->b_o_s=1;
614   op->e_o_s=0;
615   op->granulepos=0;
616   op->packetno=0;
617
618   /* second header packet (comments) **********************************/
619
620   oggpack_reset(&opb);
621   if(_vorbis_pack_comment(&opb,vc))goto err_out;
622
623   if(b->header1)_ogg_free(b->header1);
624   b->header1=_ogg_malloc(oggpack_bytes(&opb));
625   memcpy(b->header1,opb.buffer,oggpack_bytes(&opb));
626   op_comm->packet=b->header1;
627   op_comm->bytes=oggpack_bytes(&opb);
628   op_comm->b_o_s=0;
629   op_comm->e_o_s=0;
630   op_comm->granulepos=0;
631   op_comm->packetno=1;
632
633   /* third header packet (modes/codebooks) ****************************/
634
635   oggpack_reset(&opb);
636   if(_vorbis_pack_books(&opb,vi))goto err_out;
637
638   if(b->header2)_ogg_free(b->header2);
639   b->header2=_ogg_malloc(oggpack_bytes(&opb));
640   memcpy(b->header2,opb.buffer,oggpack_bytes(&opb));
641   op_code->packet=b->header2;
642   op_code->bytes=oggpack_bytes(&opb);
643   op_code->b_o_s=0;
644   op_code->e_o_s=0;
645   op_code->granulepos=0;
646   op_code->packetno=2;
647
648   oggpack_writeclear(&opb);
649   return(0);
650  err_out:
651   memset(op,0,sizeof(*op));
652   memset(op_comm,0,sizeof(*op_comm));
653   memset(op_code,0,sizeof(*op_code));
654
655   if(b){
656     if(vi->channels>0)oggpack_writeclear(&opb);
657     if(b->header)_ogg_free(b->header);
658     if(b->header1)_ogg_free(b->header1);
659     if(b->header2)_ogg_free(b->header2);
660     b->header=NULL;
661     b->header1=NULL;
662     b->header2=NULL;
663   }
664   return(ret);
665 }
666
667 double vorbis_granule_time(vorbis_dsp_state *v,ogg_int64_t granulepos){
668   if(granulepos == -1) return -1;
669
670   /* We're not guaranteed a 64 bit unsigned type everywhere, so we
671      have to put the unsigned granpo in a signed type. */
672   if(granulepos>=0){
673     return((double)granulepos/v->vi->rate);
674   }else{
675     ogg_int64_t granuleoff=0xffffffff;
676     granuleoff<<=31;
677     granuleoff|=0x7ffffffff;
678     return(((double)granulepos+2+granuleoff+granuleoff)/v->vi->rate);
679   }
680 }
681
682 const char *vorbis_version_string(void){
683   return GENERAL_VENDOR_STRING;
684 }