Displaying 2 results from an estimated 2 matches for "header_tail".
Did you mean:
head_tail
2003 Jul 22
2
Patch to get libogg2 to build with gcc 2.96
...revision 1.1.2.12
diff -u -r1.1.2.12 stream.c
--- stream.c 29 Mar 2003 00:07:32 -0000 1.1.2.12
+++ stream.c 22 Jul 2003 20:51:09 -0000
@@ -290,9 +290,10 @@
/* process/prepare next page, if any */
ogg_page og; /* only for parsing header values */
- og.header=os->header_tail; /* only for parsing header values */
- long pageno=ogg_page_pageno(&og);
+ long pageno;
oggbyte_buffer ob;
+ og.header=os->header_tail; /* only for parsing header values */
+ pageno=ogg_page_pageno(&og);
oggbyte_init(&ob,os->header_tail,0);...
2006 Oct 09
1
Vorbis primitive API examples (LONG)
...fifo_head;
ogg_reference *fifo_tail;
long fifo_fill;
/* stream sync management */
int unsynced;
int headerbytes;
int bodybytes;
} ogg_sync_state;
typedef struct ogg_stream_state {
ogg_reference *header_head;
ogg_reference *header_tail;
ogg_reference *body_head;
ogg_reference *body_tail;
int e_o_s; /* set when we have buffered the last
packet in the logical bitstream */
int b_o_s; /* set after we've written the initial page
of a l...