Displaying 3 results from an estimated 3 matches for "buffer_incr".
Did you mean:
  buffer_init
  
1999 Nov 15
1
(no subject)
Hello Monty,
I tried to complile vorbis under win32 (using MS Visual C 5.0)
I found some things:
1.) 
  In bitvise.c there must be buffer cleared after malloc:
void _oggpack_writeinit(oggpack_buffer *b){
  memset(b,0,sizeof(oggpack_buffer));
  b->ptr=b->buffer=malloc(BUFFER_INCREMENT);
+  memset(b->ptr,0,BUFFER_INCREMENT);
  b->storage=BUFFER_INCREMENT;
}
void _oggpack_write(oggpack_buffer *b,unsigned long value,int bits){
  if(b->endbyte+4>=b->storage){
    b->buffer=realloc(b->buffer,b->storage+BUFFER_INCREMENT);
+    memset(b->buffer+b->st...
1999 Nov 15
3
vorbis under win32
Hello Monty,
I tried to complile vorbis under win32 (using MS Visual C 5.0)
I found some things:
1.) 
  In bitvise.c there must be buffer cleared after malloc:
void _oggpack_writeinit(oggpack_buffer *b){
  memset(b,0,sizeof(oggpack_buffer));
  b->ptr=b->buffer=malloc(BUFFER_INCREMENT);
+  memset(b->ptr,0,BUFFER_INCREMENT);
  b->storage=BUFFER_INCREMENT;
}
void _oggpack_write(oggpack_buffer *b,unsigned long value,int bits){
  if(b->endbyte+4>=b->storage){
    b->buffer=realloc(b->buffer,b->storage+BUFFER_INCREMENT);
+    memset(b->buffer+b->st...
2002 Aug 19
1
small error in Ogg Vorbis FAQ
"Ogg Vorbis uses the Ogg bistream format, and the correct 
extension is .ogg"
 -- http://www.xiph.org/ogg/vorbis/faq.html
 I'm guessing it should read 'bitstream'.
<p>--- >8 ----
List archives:  http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To unsubscribe from this list, send a message to 'vorbis-dev-request@xiph.org'