[xiph-cvs] cvs commit: ogg/src bitwise.c framing.c

Segher Boessenkool segher at xiph.org
Wed Dec 19 16:58:47 PST 2001



segher      01/12/19 16:58:45

  Modified:    doc/ogg  bitpacking.html decoding.html encoding.html
                        general.html ogg_page_bos.html
                        ogg_page_continued.html ogg_page_eos.html
                        ogg_page_granulepos.html ogg_page_packets.html
                        ogg_page_pageno.html ogg_page_serialno.html
                        ogg_page_version.html ogg_stream_destroy.html
                        ogg_stream_eos.html ogg_stream_flush.html
                        ogg_stream_init.html ogg_stream_packetin.html
                        ogg_stream_pagein.html ogg_stream_pageout.html
                        ogg_stream_state.html ogg_sync_buffer.html
                        ogg_sync_init.html ogg_sync_pageout.html
                        ogg_sync_pageseek.html ogg_sync_reset.html
                        ogg_sync_state.html ogg_sync_wrote.html
                        oggpack_adv.html oggpack_adv1.html
                        oggpack_adv_huff.html oggpack_bits.html
                        oggpack_buffer.html oggpack_bytes.html
                        oggpack_get_buffer.html oggpack_look.html
                        oggpack_look1.html oggpack_look_huff.html
                        oggpack_read.html oggpack_read1.html
                        oggpack_readinit.html oggpack_reset.html
                        oggpack_write.html oggpack_writeclear.html
                        oggpack_writeinit.html style.css
               include/ogg ogg.h os_types.h
               src      bitwise.c framing.c
  Log:
  lots of extremely minor fixes

Revision  Changes    Path
1.2       +15 -15    ogg/doc/ogg/bitpacking.html

Index: bitpacking.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/bitpacking.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- bitpacking.html	2001/02/26 04:06:25	1.1
+++ bitpacking.html	2001/12/20 00:58:36	1.2
@@ -27,63 +27,63 @@
 <tr valign=top>
 <td><a href="oggpack_writeinit.html">oggpack_writeinit</a></td>
         <td>Initializes a buffer for writing using this bitpacking library.</td>
-</tr>
+</tr>
 <tr valign=top>
 <td><a href="oggpack_reset.html">oggpack_reset</a></td>
         <td>Clears and resets the buffer to the initial position.</td>
-</tr>
+</tr>
 <tr valign=top>
 <td><a href="oggpack_writeclear.html">oggpack_writeclear</a></td>
         <td>Frees the memory used by the buffer.</td>
-</tr>
+</tr>
 <tr valign=top>
 <td><a href="oggpack_readinit.html">oggpack_readinit</a></td>
         <td>Initializes a buffer for reading using this bitpacking library.</td>
-</tr>
+</tr>
 <tr valign=top>
 <td><a href="oggpack_write.html">oggpack_write</a></td>
         <td>Writes bytes to the specified location within the buffer.</td>
-</tr>
+</tr>
 <tr valign=top>
 <td><a href="oggpack_look.html">oggpack_look</a></td>
         <td>Look at a specified number of bits, <=32, without advancing the location pointer.</td>
-</tr>
+</tr>
 <tr valign=top>
 <td><a href="oggpack_look_huff.html">oggpack_look_huff</a></td>
         <td>Look at a specified number of bits, <=8, without advancing the location pointer.</td>
-</tr>
+</tr>
 <tr valign=top>
 <td><a href="oggpack_look1.html">oggpack_look1</a></td>
         <td>Looks at one bit without advancing the location pointer.</td>
-</tr>
+</tr>
 <tr valign=top>
 <td><a href="oggpack_adv.html">oggpack_adv</a></td>
         <td>Advances the location pointer by a specified number of bits.</td>
-</tr>
+</tr>
 <tr valign=top>
 <td><a href="oggpack_adv_huff.html">oggpack_adv_huff</a></td>
         <td>Advances the location pointer by a specified number of bits, and checks for buffer overflow.</td>
-</tr>
+</tr>
 <tr valign=top>
 <td><a href="oggpack_adv1.html">oggpack_adv1</a></td>
         <td>Advances the location pointer by one bit.</td>
-</tr>
+</tr>
 <tr valign=top>
 <td><a href="oggpack_read.html">oggpack_read</a></td>
         <td>Reads a specified number of bits from the buffer.</td>
-</tr>
+</tr>
 <tr valign=top>
 <td><a href="oggpack_read1.html">oggpack_read1</a></td>
         <td>Reads one bit from the buffer.</td>
-</tr>
+</tr>
 <tr valign=top>
 <td><a href="oggpack_bytes.html">oggpack_bytes</a></td>
         <td>Returns the total number of bytes contained within the buffer.</td>
-</tr>
+</tr>
 <tr valign=top>
 <td><a href="oggpack_bits.html">oggpack_bits</a></td>
         <td>Returns the total number of bits contained within the buffer.</td>
-</tr>
+</tr>
 <tr valign=top>
 <td><a href="oggpack_get_buffer.html">oggpack_get_buffer</a></td>
         <td>Returns a pointer to the buffer encapsulated within the <a href="oggpack_buffer.html">oggpack_buffer</a> struct.</td>

1.3       +2 -2      ogg/doc/ogg/decoding.html

Index: decoding.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/decoding.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- decoding.html	2001/05/28 05:30:19	1.2
+++ decoding.html	2001/12/20 00:58:36	1.3
@@ -14,12 +14,12 @@
 </table>
 
 <h1>Decoding</h1>
-<p>Libogg contains a set of functions used in the decoding process.
+<p>Libogg contains a set of functions used in the decoding process.
 <p>
 All the <b>libogg</b> specific functions are declared in "ogg/ogg.h".
 <p>
 <p>Decoding is based around the ogg synchronization layer.  The <a href="ogg_sync_state.html">ogg_sync_state</a> struct coordinates between incoming data and the decoder.  We read data into the synchronization layer, submit the data to the stream, and output raw packets to the decoder.
-<p>Decoding through the Ogg layer follows a specific logical sequence.  A read loop follows these logical steps:
+<p>Decoding through the Ogg layer follows a specific logical sequence.  A read loop follows these logical steps:
 <ul>
 <li>Expose a buffer using <a href="ogg_sync_buffer.html">ogg_sync_buffer()</a>.
 <li>Read data into the buffer, using fread() or a similar function.

1.2       +14 -14    ogg/doc/ogg/encoding.html

Index: encoding.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/encoding.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- encoding.html	2001/02/26 04:06:25	1.1
+++ encoding.html	2001/12/20 00:58:36	1.2
@@ -14,20 +14,20 @@
 </table>
 
 <h1>Encoding</h1>
-<p>Libogg contains a set of functions used in the encoding process.
+<p>Libogg contains a set of functions used in the encoding process.
 <p>
 All the <b>libogg</b> specific functions are declared in "ogg/ogg.h".
-<p>
+<p>
 <p>When encoding, the encoding engine will output raw packets which must be placed into an Ogg bitstream.
-<p>Raw packets are inserted into the stream, and an <a href="ogg_page.html">ogg_page</a> is output when enough packets have been written to create a full page.  The pages output are pointers to buffered packet segments, and can then be written out and saved as an ogg stream.
-<p>There are a couple of basic steps:
-<ul>
-<li>Use the encoding engine to produce a raw packet of data.
-<li>Call <a href="ogg_stream_packetin.html">ogg_stream_packetin</a> to submit a raw packet to the stream.
+<p>Raw packets are inserted into the stream, and an <a href="ogg_page.html">ogg_page</a> is output when enough packets have been written to create a full page.  The pages output are pointers to buffered packet segments, and can then be written out and saved as an ogg stream.
+<p>There are a couple of basic steps:
+<ul>
+<li>Use the encoding engine to produce a raw packet of data.
+<li>Call <a href="ogg_stream_packetin.html">ogg_stream_packetin</a> to submit a raw packet to the stream.
 <li>Use <a href="ogg_stream_pageout.html">ogg_stream_pageout</a> to output a page, if enough data has been submitted.  Otherwise, continue submitting data.
-</ul>
-<br><br>
-
+</ul>
+<br><br>
+
 <table border=1 color=black width=50% cellspacing=0 cellpadding=7>
 <tr bgcolor=#cccccc>
         <td><b>function</b></td>
@@ -36,15 +36,15 @@
 <tr valign=top>
 <td><a href="ogg_stream_packetin.html">ogg_stream_packetin</a></td>
         <td>Submits a raw packet to the streaming layer, so that it can be formed into a page.</td>
-</tr>
-<tr valign=top>
+</tr>
+<tr valign=top>
 <td><a href="ogg_stream_pageout.html">ogg_stream_pageout</a></td>
         <td>Outputs a completed page if the stream contains enough packets to form a full page.<td>
-</tr>
+</tr>
 <tr valign=top>
 <td><a href="ogg_stream_flush.html">ogg_stream_flush</a></td>
         <td>Forces any remaining packets in the stream to be returned as a page of any size.<td>
-</tr>
+</tr>
 </table>
 
 <br><br>

1.3       +14 -14    ogg/doc/ogg/general.html

Index: general.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/general.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- general.html	2001/12/19 00:47:18	1.2
+++ general.html	2001/12/20 00:58:36	1.3
@@ -14,11 +14,11 @@
 </table>
 
 <h1>General Functions</h1>
-<p>Libogg contains several functions which are generally useful when using Ogg streaming, whether encoding or decoding.
+<p>Libogg contains several functions which are generally useful when using Ogg streaming, whether encoding or decoding.
 <p>
 All the <b>libogg</b> specific functions are declared in "ogg/ogg.h".
-<p>
-<p>These functions can be used to manipulate some of the basic elements of Ogg - streams and pages.  Streams and pages are important during both the encode and decode process.
+<p>
+<p>These functions can be used to manipulate some of the basic elements of Ogg - streams and pages.  Streams and pages are important during both the encode and decode process.
 <br>
 
 <table border=1 color=black width=50% cellspacing=0 cellpadding=7>
@@ -29,27 +29,27 @@
 <tr valign=top>
 <td><a href="ogg_stream_init.html">ogg_stream_init</a></td>
         <td>Initializes an Ogg bitstream.</td>
-</tr>
+</tr>
 <tr valign=top>
 <td><a href="ogg_stream_clear.html">ogg_stream_clear</a></td>
         <td>Clears the storage within the Ogg stream, but does not free the stream itself.<td>
-</tr>
+</tr>
 <tr valign=top>
 <td><a href="ogg_stream_reset.html">ogg_stream_reset</a></td>
         <td>Resets the stream status to its initial position.</td>
-</tr>
+</tr>
 <tr valign=top>
 <td><a href="ogg_stream_destroy.html">ogg_stream_destroy</a></td>
         <td>Frees the entire Ogg stream.</td>
-</tr>
+</tr>
 <tr valign=top>
 <td><a href="ogg_stream_eos.html">ogg_stream_eos</a></td>
         <td>Indicates whether we are at the end of the stream.</td>
-</tr>
+</tr>
 <tr valign=top>
 <td><a href="ogg_page_version.html">ogg_page_version</a></td>
         <td>Returns the version of ogg_page that this stream/page uses</td>
-</tr>
+</tr>
 <tr valign=top>
 <td><a href="ogg_page_continued.html">ogg_page_continued</a></td>
         <td>Indicates if the current page contains a continued packet from the last page.</td>
@@ -61,23 +61,23 @@
 <tr valign=top>
 <td><a href="ogg_page_bos.html">ogg_page_bos</a></td>
         <td>Indicates if the current page is the beginning of the stream.</td>
-</tr>
+</tr>
 <tr valign=top>
 <td><a href="ogg_page_eos.html">ogg_page_eos</a></td>
         <td>Indicates if the current page is the end of the stream.</td>
-</tr>
+</tr>
 <tr valign=top>
 <td><a href="ogg_page_granulepos.html">ogg_page_granulepos</a></td>
         <td>Returns the precise playback location of this page.</td>
-</tr>
+</tr>
 <tr valign=top>
 <td><a href="ogg_page_serialno.html">ogg_page_serialno</a></td>
         <td>Returns the unique serial number of the logical bitstream associated with this page.</td>
-</tr>
+</tr>
 <tr valign=top>
 <td><a href="ogg_page_pageno.html">ogg_page_pageno</a></td>
         <td>Returns the sequential page number for this page.</td>
-</tr>
+</tr>
 <tr valign=top>
 <td><a href="ogg_packet_clear.html">ogg_packet_clear</a><td>
         <td>Clears the ogg_packet structure.</td>

1.3       +6 -6      ogg/doc/ogg/ogg_page_bos.html

Index: ogg_page_bos.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/ogg_page_bos.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ogg_page_bos.html	2001/11/24 06:55:22	1.2
+++ ogg_page_bos.html	2001/12/20 00:58:36	1.3
@@ -17,14 +17,14 @@
 
 <p><i>declared in "ogg/ogg.h";</i></p>
 
-<p>Indicates whether this page is at the beginning of the logical bitstream.
-<p>
+<p>Indicates whether this page is at the beginning of the logical bitstream.
+<p>
 <br><br>
 <table border=0 color=black cellspacing=0 cellpadding=7>
 <tr bgcolor=#cccccc>
         <td>
 <pre><b>
-int ogg_page_bos(ogg_page *og);
+int ogg_page_bos(ogg_page *og);
 
 </b></pre>
         </td>
@@ -39,10 +39,10 @@
 
 
 <h3>Return Values</h3>
-<blockquote>
+<blockquote>
 <li>
-greater than 0 if this page is the beginning of a bitstream.</li>
-<li>
+greater than 0 if this page is the beginning of a bitstream.</li>
+<li>
 0 if this page is from any other location in the stream.</li>
 </blockquote>
 <p>

1.2       +5 -5      ogg/doc/ogg/ogg_page_continued.html

Index: ogg_page_continued.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/ogg_page_continued.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ogg_page_continued.html	2001/02/26 04:06:25	1.1
+++ ogg_page_continued.html	2001/12/20 00:58:36	1.2
@@ -17,13 +17,13 @@
 
 <p><i>declared in "ogg/ogg.h";</i></p>
 
-<p>Indicates whether this page contains packet data which has been continued from the previous page.
+<p>Indicates whether this page contains packet data which has been continued from the previous page.
 <br><br>
 <table border=0 color=black cellspacing=0 cellpadding=7>
 <tr bgcolor=#cccccc>
         <td>
 <pre><b>
-int ogg_page_continued(ogg_page *og);
+int ogg_page_continued(ogg_page *og);
 
 </b></pre>
         </td>
@@ -38,10 +38,10 @@
 
 
 <h3>Return Values</h3>
-<blockquote>
+<blockquote>
 <li>
-1 if this page contains packet data continued from the last page.</li>
-<li>
+1 if this page contains packet data continued from the last page.</li>
+<li>
 0 if this page does not contain continued data.</li>
 </blockquote>
 <p>

1.3       +6 -6      ogg/doc/ogg/ogg_page_eos.html

Index: ogg_page_eos.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/ogg_page_eos.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ogg_page_eos.html	2001/11/24 06:55:22	1.2
+++ ogg_page_eos.html	2001/12/20 00:58:36	1.3
@@ -17,14 +17,14 @@
 
 <p><i>declared in "ogg/ogg.h";</i></p>
 
-<p>Indicates whether this page is at the end of the logical bitstream.
-<p>
+<p>Indicates whether this page is at the end of the logical bitstream.
+<p>
 <br><br>
 <table border=0 color=black cellspacing=0 cellpadding=7>
 <tr bgcolor=#cccccc>
         <td>
 <pre><b>
-int ogg_page_eos(ogg_page *og);
+int ogg_page_eos(ogg_page *og);
 
 </b></pre>
         </td>
@@ -39,10 +39,10 @@
 
 
 <h3>Return Values</h3>
-<blockquote>
+<blockquote>
 <li>
-greater than zero if this page contains the end of a bitstream.</li>
-<li>
+greater than zero if this page contains the end of a bitstream.</li>
+<li>
 0 if this page is from any other location in the stream.</li>
 </blockquote>
 <p>

1.2       +6 -6      ogg/doc/ogg/ogg_page_granulepos.html

Index: ogg_page_granulepos.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/ogg_page_granulepos.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ogg_page_granulepos.html	2001/02/26 04:06:25	1.1
+++ ogg_page_granulepos.html	2001/12/20 00:58:36	1.2
@@ -17,16 +17,16 @@
 
 <p><i>declared in "ogg/ogg.h";</i></p>
 
-<p>Returns the exact granular position of the packet data contained at the end of this page.
-<p>This is useful for tracking location when seeking or decoding.
-<p>For example, in audio codecs this position is the pcm sample number and in video this is the frame number.
-<p>
+<p>Returns the exact granular position of the packet data contained at the end of this page.
+<p>This is useful for tracking location when seeking or decoding.
+<p>For example, in audio codecs this position is the pcm sample number and in video this is the frame number.
+<p>
 <br><br>
 <table border=0 color=black cellspacing=0 cellpadding=7>
 <tr bgcolor=#cccccc>
         <td>
 <pre><b>
-int ogg_page_granulepos(ogg_page *og);
+int ogg_page_granulepos(ogg_page *og);
 
 </b></pre>
         </td>
@@ -41,7 +41,7 @@
 
 
 <h3>Return Values</h3>
-<blockquote>
+<blockquote>
 <li>
 <i>n</i> is the specific last granular position of the decoded data contained in the page.</li>
 </blockquote>

1.2       +1 -1      ogg/doc/ogg/ogg_page_packets.html

Index: ogg_page_packets.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/ogg_page_packets.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ogg_page_packets.html	2001/12/19 00:47:18	1.1
+++ ogg_page_packets.html	2001/12/20 00:58:36	1.2
@@ -26,7 +26,7 @@
 <tr bgcolor=#cccccc>
         <td>
 <pre><b>
-int ogg_page_packets(ogg_page *og);
+int ogg_page_packets(ogg_page *og);
 
 </b></pre>
         </td>

1.2       +4 -4      ogg/doc/ogg/ogg_page_pageno.html

Index: ogg_page_pageno.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/ogg_page_pageno.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ogg_page_pageno.html	2001/02/26 04:06:25	1.1
+++ ogg_page_pageno.html	2001/12/20 00:58:36	1.2
@@ -17,14 +17,14 @@
 
 <p><i>declared in "ogg/ogg.h";</i></p>
 
-<p>Returns the sequential page number.
-<p>This is useful for ordering pages or determining when pages have been lost.
+<p>Returns the sequential page number.
+<p>This is useful for ordering pages or determining when pages have been lost.
 <br><br>
 <table border=0 color=black cellspacing=0 cellpadding=7>
 <tr bgcolor=#cccccc>
         <td>
 <pre><b>
-int ogg_page_pageno(ogg_page *og);
+int ogg_page_pageno(ogg_page *og);
 
 </b></pre>
         </td>
@@ -39,7 +39,7 @@
 
 
 <h3>Return Values</h3>
-<blockquote>
+<blockquote>
 <li>
 <i>n</i> is the page number for this page.</li>
 </blockquote>

1.2       +4 -4      ogg/doc/ogg/ogg_page_serialno.html

Index: ogg_page_serialno.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/ogg_page_serialno.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ogg_page_serialno.html	2001/02/26 04:06:25	1.1
+++ ogg_page_serialno.html	2001/12/20 00:58:36	1.2
@@ -17,14 +17,14 @@
 
 <p><i>declared in "ogg/ogg.h";</i></p>
 
-<p>Returns the unique serial number for the logical bitstream of this page.  Each page contains the serial number for the logical bitstream that it belongs to.
-<p>
+<p>Returns the unique serial number for the logical bitstream of this page.  Each page contains the serial number for the logical bitstream that it belongs to.
+<p>
 <br><br>
 <table border=0 color=black cellspacing=0 cellpadding=7>
 <tr bgcolor=#cccccc>
         <td>
 <pre><b>
-int ogg_page_serialno(ogg_page *og);
+int ogg_page_serialno(ogg_page *og);
 
 </b></pre>
         </td>
@@ -39,7 +39,7 @@
 
 
 <h3>Return Values</h3>
-<blockquote>
+<blockquote>
 <li>
 <i>n</i> is the serial number for this page.</li>
 </blockquote>

1.2       +3 -3      ogg/doc/ogg/ogg_page_version.html

Index: ogg_page_version.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/ogg_page_version.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ogg_page_version.html	2001/02/26 04:06:25	1.1
+++ ogg_page_version.html	2001/12/20 00:58:36	1.2
@@ -17,14 +17,14 @@
 
 <p><i>declared in "ogg/ogg.h";</i></p>
 
-<p>This function returns the version of ogg_page used in this page.
+<p>This function returns the version of ogg_page used in this page.
 <p>In current versions of libogg, all ogg_page structs have the same version, so 0 should always be returned.
 <br><br>
 <table border=0 color=black cellspacing=0 cellpadding=7>
 <tr bgcolor=#cccccc>
         <td>
 <pre><b>
-int ogg_page_version(ogg_page *og);
+int ogg_page_version(ogg_page *og);
 
 </b></pre>
         </td>
@@ -39,7 +39,7 @@
 
 
 <h3>Return Values</h3>
-<blockquote>
+<blockquote>
 <li>
 <i>n</i> is the version number.  In the current version of Ogg, the version number is always 0.  Nonzero return values indicate an error in page encoding.</li>
 </blockquote>

1.2       +1 -1      ogg/doc/ogg/ogg_stream_destroy.html

Index: ogg_stream_destroy.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/ogg_stream_destroy.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ogg_stream_destroy.html	2001/02/26 04:06:25	1.1
+++ ogg_stream_destroy.html	2001/12/20 00:58:36	1.2
@@ -17,7 +17,7 @@
 
 <p><i>declared in "ogg/ogg.h";</i></p>
 
-<p>This function frees the memory used by the <a href="ogg_stream_state.html">ogg_stream_state</a> struct.
+<p>This function frees the memory used by the <a href="ogg_stream_state.html">ogg_stream_state</a> struct.
 <p>This should be called when you are done working with an ogg stream.  It can also be called to make sure that the struct does not exist.
 <br><br>
 <table border=0 color=black cellspacing=0 cellpadding=7>

1.2       +1 -1      ogg/doc/ogg/ogg_stream_eos.html

Index: ogg_stream_eos.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/ogg_stream_eos.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ogg_stream_eos.html	2001/02/26 04:06:25	1.1
+++ ogg_stream_eos.html	2001/12/20 00:58:36	1.2
@@ -38,7 +38,7 @@
 
 <h3>Return Values</h3>
 <blockquote>
-<li>1 if we are at the end of the stream.</li>
+<li>1 if we are at the end of the stream.</li>
 <li>
 0 if we have not yet reached the end of the stream.</li>
 </blockquote>

1.2       +5 -5      ogg/doc/ogg/ogg_stream_flush.html

Index: ogg_stream_flush.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/ogg_stream_flush.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ogg_stream_flush.html	2001/02/26 04:06:25	1.1
+++ ogg_stream_flush.html	2001/12/20 00:58:36	1.2
@@ -17,9 +17,9 @@
 
 <p><i>declared in "ogg/ogg.h";</i></p>
 
-<p>This function checks for remaining packets inside the stream and forces remaining packets into a page, regardless of the size of the page.
+<p>This function checks for remaining packets inside the stream and forces remaining packets into a page, regardless of the size of the page.
 <p>This should only be used when you want to flush an undersized page from the middle of the stream.  Otherwise, <a href="ogg_stream_pageout.html">ogg_stream_pageout</a> should always be used.  
-<p>This function can be used to verify that all packets have been flushed.  If the return value is 0, all packets have been placed into a page.
+<p>This function can be used to verify that all packets have been flushed.  If the return value is 0, all packets have been placed into a page.
 
 <br><br>
 <table border=0 color=black cellspacing=0 cellpadding=7>
@@ -35,15 +35,15 @@
 <h3>Parameters</h3>
 <dl>
 <dt><i>os</i></dt>
-<dd>Pointer to a previously declared <a href="ogg_stream_state.html">ogg_stream_state</a> struct, which represents the current logical bitstream.</dd>
-<dt><i>og</i></dt>
+<dd>Pointer to a previously declared <a href="ogg_stream_state.html">ogg_stream_state</a> struct, which represents the current logical bitstream.</dd>
+<dt><i>og</i></dt>
 <dd>Pointer to a page of data.  The remaining packets in the stream will be placed into this page, if any remain.
 </dl>
 
 
 <h3>Return Values</h3>
 <blockquote>
-<li>0 means that all packet data has already been flushed into pages, and there are no packets to put into the page.</li>
+<li>0 means that all packet data has already been flushed into pages, and there are no packets to put into the page.</li>
 <li>
 Nonzero means that remaining packets have successfully been flushed into the page.</li>
 </blockquote>

1.2       +2 -2      ogg/doc/ogg/ogg_stream_init.html

Index: ogg_stream_init.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/ogg_stream_init.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ogg_stream_init.html	2001/02/26 04:06:25	1.1
+++ ogg_stream_init.html	2001/12/20 00:58:36	1.2
@@ -33,7 +33,7 @@
 <h3>Parameters</h3>
 <dl>
 <dt><i>os</i></dt>
-<dd>Pointer to the ogg_stream_state struct that we will be initializing.</dd>
+<dd>Pointer to the ogg_stream_state struct that we will be initializing.</dd>
 <dt><i>serialno</i></dt>
 <dd>Serial number that we will attach to this stream.</dd>
 </dl>
@@ -42,7 +42,7 @@
 <h3>Return Values</h3>
 <blockquote>
 <li>
-0 if successful</li>
+0 if successful</li>
 <li>
 -1 if unsuccessful.  If this fails, the ogg_stream_state was not properly declared before calling this function.</li>
 </blockquote>

1.2       +5 -5      ogg/doc/ogg/ogg_stream_packetin.html

Index: ogg_stream_packetin.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/ogg_stream_packetin.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ogg_stream_packetin.html	2001/02/26 04:06:25	1.1
+++ ogg_stream_packetin.html	2001/12/20 00:58:36	1.2
@@ -17,7 +17,7 @@
 
 <p><i>declared in "ogg/ogg.h";</i></p>
 
-<p>This function takes a packet and submits it to the bitstream.  After this is called, we can continue submitting packets, or we can write out pages.
+<p>This function takes a packet and submits it to the bitstream.  After this is called, we can continue submitting packets, or we can write out pages.
 <p>In a typical decoding situation, this should be used after filling a packet with data
 
 <br><br>
@@ -25,7 +25,7 @@
 <tr bgcolor=#cccccc>
         <td>
 <pre><b>
-int ogg_stream_packetin(ogg_stream_state *os,ogg_packet *op);
+int ogg_stream_packetin(ogg_stream_state *os,ogg_packet *op);
 </b></pre>
         </td>
 </tr>
@@ -34,14 +34,14 @@
 <h3>Parameters</h3>
 <dl>
 <dt><i>os</i></dt>
-<dd>Pointer to a previously declared <a href="ogg_stream_state.html">ogg_stream_state</a> struct.</dd>
-<dt><i>op</i></dt>
+<dd>Pointer to a previously declared <a href="ogg_stream_state.html">ogg_stream_state</a> struct.</dd>
+<dt><i>op</i></dt>
 <dd>Pointer to the packet we are putting into the bitstream.
 </dl>
 
 
 <h3>Return Values</h3>
-<blockquote>
+<blockquote>
 <li>
 0 is always returned.</li>
 </blockquote>

1.2       +5 -5      ogg/doc/ogg/ogg_stream_pagein.html

Index: ogg_stream_pagein.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/ogg_stream_pagein.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ogg_stream_pagein.html	2001/02/26 04:06:25	1.1
+++ ogg_stream_pagein.html	2001/12/20 00:58:36	1.2
@@ -17,8 +17,8 @@
 
 <p><i>declared in "ogg/ogg.h";</i></p>
 
-<p>This function adds a complete page to the bitstream.  
- <p>In a typical decoding situation, this function would be called after using <a href="ogg_sync_pageout.html">ogg_sync_pageout</a> to create a valid <a href="ogg_page.html">ogg_page</a> struct.
+<p>This function adds a complete page to the bitstream.  
+ <p>In a typical decoding situation, this function would be called after using <a href="ogg_sync_pageout.html">ogg_sync_pageout</a> to create a valid <a href="ogg_page.html">ogg_page</a> struct.
 <p>Internally, this function breaks the page into packet segments in preparation for outputting a valid packet to the codec decoding layer.
 
 <br><br>
@@ -35,15 +35,15 @@
 <h3>Parameters</h3>
 <dl>
 <dt><i>os</i></dt>
-<dd>Pointer to a previously declared <a href="ogg_stream.html">ogg_stream</a> struct, which represents the current logical bitstream.</dd>
-<dt><i>og</i></dt>
+<dd>Pointer to a previously declared <a href="ogg_stream.html">ogg_stream</a> struct, which represents the current logical bitstream.</dd>
+<dt><i>og</i></dt>
 <dd>Pointer to a page of data.  The data inside this page is being submitted to the streaming layer in order to be allocated into packets.
 </dl>
 
 
 <h3>Return Values</h3>
 <blockquote>
-<li>-1 indicates failure.  This means that the serial number of the page did not match the serial number of the bitstream, or that the page version was incorrect.</li>
+<li>-1 indicates failure.  This means that the serial number of the page did not match the serial number of the bitstream, or that the page version was incorrect.</li>
 <li>
 0 means that the page was successfully submitted to the bitstream.</li>
 </blockquote>

1.2       +5 -5      ogg/doc/ogg/ogg_stream_pageout.html

Index: ogg_stream_pageout.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/ogg_stream_pageout.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ogg_stream_pageout.html	2001/02/26 04:06:25	1.1
+++ ogg_stream_pageout.html	2001/12/20 00:58:36	1.2
@@ -17,8 +17,8 @@
 
 <p><i>declared in "ogg/ogg.h";</i></p>
 
-<p>This function forms packets into pages.  If  
- <p>In a typical encoding situation, this would be called after using <a href="ogg_stream_packetin.html">ogg_stream_packetin</a> to submit data packets to the bitstream.
+<p>This function forms packets into pages.  If  
+ <p>In a typical encoding situation, this would be called after using <a href="ogg_stream_packetin.html">ogg_stream_packetin</a> to submit data packets to the bitstream.
 <p>Internally, this function breaks the page into packet segments in preparation for outputting a valid packet to the codec decoding layer.
 
 <br><br>
@@ -35,15 +35,15 @@
 <h3>Parameters</h3>
 <dl>
 <dt><i>os</i></dt>
-<dd>Pointer to a previously declared <a href="ogg_stream.html">ogg_stream</a> struct, which represents the current logical bitstream.</dd>
-<dt><i>og</i></dt>
+<dd>Pointer to a previously declared <a href="ogg_stream.html">ogg_stream</a> struct, which represents the current logical bitstream.</dd>
+<dt><i>og</i></dt>
 <dd>Pointer to a page of data.  The data inside this page is being submitted to the streaming layer in order to be allocated into packets.
 </dl>
 
 
 <h3>Return Values</h3>
 <blockquote>
-<li>0 means that there is not enough data yet to form a page.</li>
+<li>0 means that there is not enough data yet to form a page.</li>
 <li>
 0 means that the page was successfully submitted to the bitstream.</li>
 </blockquote>

1.2       +52 -52    ogg/doc/ogg/ogg_stream_state.html

Index: ogg_stream_state.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/ogg_stream_state.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ogg_stream_state.html	2001/02/26 04:06:25	1.1
+++ ogg_stream_state.html	2001/12/20 00:58:36	1.2
@@ -24,40 +24,40 @@
 <table border=0 width=100% color=black cellspacing=0 cellpadding=7>
 <tr bgcolor=#cccccc>
         <td>
-<pre><b>
-typedef struct {
-  unsigned char   *body_data;    /* bytes from packet bodies */
-  long    body_storage;          /* storage elements allocated */
-  long    body_fill;             /* elements stored; fill mark */
-  long    body_returned;         /* elements of fill returned */
-
-
-  int     *lacing_vals;    /* The values that will go to the segment table */
-  ogg_int64_t *granule_vals;      /* granulepos values for headers. Not compact
-                             this way, but it is simple coupled to the
-                             lacing fifo */
-  long    lacing_storage;
-  long    lacing_fill;
-  long    lacing_packet;
-  long    lacing_returned;
-
-  unsigned char    header[282];      /* working space for header encode */
-  int              header_fill;
-
-  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 logical bitstream */
-  long     serialno;
-  int      pageno;
-  ogg_int64_t  packetno;      /* sequence number for decode; the framing
-                             knows where there's a hole in the data,
-                             but we need coupling so that the codec
-                             (which is in a seperate abstraction
-                             layer) also knows about the gap */
-  ogg_int64_t   granulepos;
-
-} ogg_stream_state;
+<pre><b>
+typedef struct {
+  unsigned char   *body_data;    /* bytes from packet bodies */
+  long    body_storage;          /* storage elements allocated */
+  long    body_fill;             /* elements stored; fill mark */
+  long    body_returned;         /* elements of fill returned */
+
+
+  int     *lacing_vals;    /* The values that will go to the segment table */
+  ogg_int64_t *granule_vals;      /* granulepos values for headers. Not compact
+                             this way, but it is simple coupled to the
+                             lacing fifo */
+  long    lacing_storage;
+  long    lacing_fill;
+  long    lacing_packet;
+  long    lacing_returned;
+
+  unsigned char    header[282];      /* working space for header encode */
+  int              header_fill;
+
+  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 logical bitstream */
+  long     serialno;
+  int      pageno;
+  ogg_int64_t  packetno;      /* sequence number for decode; the framing
+                             knows where there's a hole in the data,
+                             but we need coupling so that the codec
+                             (which is in a seperate abstraction
+                             layer) also knows about the gap */
+  ogg_int64_t   granulepos;
+
+} ogg_stream_state;
 </b></pre>
         </td>
 </tr>
@@ -66,41 +66,41 @@
 <h3>Relevant Struct Members</h3>
 <dl>
 <dt><i>body_data</i></dt>
-<dd>Pointer to data from packet bodies.</dd>
+<dd>Pointer to data from packet bodies.</dd>
 <dt><i>body_storage</i></dt>
-<dd>Storage allocated for bodies in bytes (filled or unfilled).</dd>
+<dd>Storage allocated for bodies in bytes (filled or unfilled).</dd>
 <dt><i>body_fill</i></dt>
-<dd>Amount of storage filled with stored packet bodies.</dd>
+<dd>Amount of storage filled with stored packet bodies.</dd>
 <dt><i>body_returned</i></dt>
-<dd>Number of elements returned from storage.</dd>
+<dd>Number of elements returned from storage.</dd>
 <dt><i>lacing_vals</i></dt>
-<dd>String of lacing values for the packet segments within the current page.  Each value is a byte, indicating packet segment length.</dd>
+<dd>String of lacing values for the packet segments within the current page.  Each value is a byte, indicating packet segment length.</dd>
 <dt><i>granule_vals</i></dt>
-<dd>Pointer to the lacing values for the packet segments within the current page.</dd>
+<dd>Pointer to the lacing values for the packet segments within the current page.</dd>
 <dt><i>lacing_storage</i></dt>
-<dd>Total amount of storage (in bytes) allocated for storing lacing values.</dd>
+<dd>Total amount of storage (in bytes) allocated for storing lacing values.</dd>
 <dt><i>lacing_fill</i></dt>
-<dd>Fill marker for the current vs. total allocated storage of lacing values for the page.</dd>
+<dd>Fill marker for the current vs. total allocated storage of lacing values for the page.</dd>
 <dt><i>lacing_packet</i></dt>
-<dd>Lacing value for current packet segment.</dd>
+<dd>Lacing value for current packet segment.</dd>
 <dt><i>lacing_returned</i></dt>
-<dd>Number of lacing values returned from lacing_storage.</dd>
+<dd>Number of lacing values returned from lacing_storage.</dd>
 <dt><i>header</i></dt>
-<dd>Temporary storage for page header during encode process, while the header is being created.</dd>
+<dd>Temporary storage for page header during encode process, while the header is being created.</dd>
 <dt><i>header_fill</i></dt>
-<dd>Fill marker for header storage allocation.  Used during the header creation process.</dd>
+<dd>Fill marker for header storage allocation.  Used during the header creation process.</dd>
 <dt><i>e_o_s</i></dt>
-<dd>Marker set when the last packet of the logical bitstream has been buffered.</dd>
+<dd>Marker set when the last packet of the logical bitstream has been buffered.</dd>
 <dt><i>b_o_s</i></dt>
-<dd>Marker set after we have written the first page in the logical bitstream.</dd>
+<dd>Marker set after we have written the first page in the logical bitstream.</dd>
 <dt><i>serialno</i></dt>
-<dd>Serial number of this logical bitstream.</dd>
+<dd>Serial number of this logical bitstream.</dd>
 <dt><i>pageno</i></dt>
-<dd>Number of the current page within the stream.</dd>
+<dd>Number of the current page within the stream.</dd>
 <dt><i>packetno</i></dt>
-<dd>Number of the current packet.</dd>
+<dd>Number of the current packet.</dd>
 <dt><i>granulepos</i></dt>
-<dd>Exact position of decoding/encoding process.</dd>
+<dd>Exact position of decoding/encoding process.</dd>
 </dl>
 
 

1.2       +6 -6      ogg/doc/ogg/ogg_sync_buffer.html

Index: ogg_sync_buffer.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/ogg_sync_buffer.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ogg_sync_buffer.html	2001/02/26 04:06:25	1.1
+++ ogg_sync_buffer.html	2001/12/20 00:58:37	1.2
@@ -17,9 +17,9 @@
 
 <p><i>declared in "ogg/ogg.h";</i></p>
 
-<p>This function is used to provide a properly-sized buffer for writing.
-<p>Buffer space which has already been returned is cleared, and the buffer is extended as necessary by the size plus some additional bytes.  Within the current implementation, an extra 4096 bytes are allocated, but applications should not rely on this additional buffer space.
-<p>The buffer exposed by this function is empty internal storage from the <a href="ogg_sync_state.html">ogg_sync_state</a> struct, beginning at the fill mark within the struct.
+<p>This function is used to provide a properly-sized buffer for writing.
+<p>Buffer space which has already been returned is cleared, and the buffer is extended as necessary by the size plus some additional bytes.  Within the current implementation, an extra 4096 bytes are allocated, but applications should not rely on this additional buffer space.
+<p>The buffer exposed by this function is empty internal storage from the <a href="ogg_sync_state.html">ogg_sync_state</a> struct, beginning at the fill mark within the struct.
 <p>A pointer to this buffer is returned to be used by the calling application.
 
 <br><br>
@@ -27,7 +27,7 @@
 <tr bgcolor=#cccccc>
         <td>
 <pre><b>
-char *ogg_sync_buffer(ogg_sync_state *oy, long size);
+char *ogg_sync_buffer(ogg_sync_state *oy, long size);
 </b></pre>
         </td>
 </tr>
@@ -36,8 +36,8 @@
 <h3>Parameters</h3>
 <dl>
 <dt><i>oy</i></dt>
-<dd>Pointer to a previously declared <a href="ogg_sync_state.html">ogg_sync_state</a> struct.</dd>
-<dt><i>size</i></dt>
+<dd>Pointer to a previously declared <a href="ogg_sync_state.html">ogg_sync_state</a> struct.</dd>
+<dt><i>size</i></dt>
 <dd>Size of the desired buffer.  The actual size of the buffer returned will be this size plus some extra bytes (currently 4096).
 </dl>
 

1.2       +1 -1      ogg/doc/ogg/ogg_sync_init.html

Index: ogg_sync_init.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/ogg_sync_init.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ogg_sync_init.html	2001/02/26 04:06:25	1.1
+++ ogg_sync_init.html	2001/12/20 00:58:37	1.2
@@ -17,7 +17,7 @@
 
 <p><i>declared in "ogg/ogg.h";</i></p>
 
-<p>This function is used to initialize an <a href="ogg_sync_state.html">ogg_sync_state</a> struct to a known initial value in preparation for manipulation of an Ogg bitstream.
+<p>This function is used to initialize an <a href="ogg_sync_state.html">ogg_sync_state</a> struct to a known initial value in preparation for manipulation of an Ogg bitstream.
 <p>The ogg_sync struct is important when decoding, as it synchronizes retrieval and return of data.
 
 <br><br>

1.2       +18 -18    ogg/doc/ogg/ogg_sync_pageout.html

Index: ogg_sync_pageout.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/ogg_sync_pageout.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ogg_sync_pageout.html	2001/02/26 04:06:25	1.1
+++ ogg_sync_pageout.html	2001/12/20 00:58:37	1.2
@@ -17,9 +17,9 @@
 
 <p><i>declared in "ogg/ogg.h";</i></p>
 
-<p>This function takes the data stored in the buffer of the <a href="ogg_sync_state.html">ogg_sync_state</a> struct and inserts them into an <a href="ogg_page.html">ogg_page</a>.
-
-<p>In an actual decoding loop, this function should be called first to ensure that the buffer is cleared.  The example code below illustrates a clean reading loop which will fill and output pages.
+<p>This function takes the data stored in the buffer of the <a href="ogg_sync_state.html">ogg_sync_state</a> struct and inserts them into an <a href="ogg_page.html">ogg_page</a>.
+
+<p>In an actual decoding loop, this function should be called first to ensure that the buffer is cleared.  The example code below illustrates a clean reading loop which will fill and output pages.
 <p><b>Caution:</b>This function should be called before reading into the buffer to ensure that data does not remain in the ogg_sync_state struct.  Failing to do so may result in a memory leak.  See the example code below for details.
 
 <br><br>
@@ -27,7 +27,7 @@
 <tr bgcolor=#cccccc>
         <td>
 <pre><b>
-int ogg_sync_pageout(<a href="ogg_sync_state.html">ogg_sync_state</a> *oy, <a href="ogg_page.html">ogg_page</a> *og);
+int ogg_sync_pageout(<a href="ogg_sync_state.html">ogg_sync_state</a> *oy, <a href="ogg_page.html">ogg_page</a> *og);
 </b></pre>
         </td>
 </tr>
@@ -36,29 +36,29 @@
 <h3>Parameters</h3>
 <dl>
 <dt><i>oy</i></dt>
-<dd>Pointer to a previously declared <a href="ogg_sync_state.html">ogg_sync_state</a> struct.  Normally, the internal storage of this struct should be filled with newly read data and verified using <a href="ogg_sync_wrote.html">ogg_sync_wrote</a>.</dd>
-<dt><i>og</i></dt>
+<dd>Pointer to a previously declared <a href="ogg_sync_state.html">ogg_sync_state</a> struct.  Normally, the internal storage of this struct should be filled with newly read data and verified using <a href="ogg_sync_wrote.html">ogg_sync_wrote</a>.</dd>
+<dt><i>og</i></dt>
 <dd>Pointer to page struct filled by this function.
 </dl>
 
 
 <h3>Return Values</h3>
 <blockquote>
-<li>-1 if we were not properly synced and had to skip some bytes.</li>
+<li>-1 if we were not properly synced and had to skip some bytes.</li>
+<li>
+0 if we need more data to verify a page.</li>
 <li>
-0 if we need more data to verify a page.</li>
-<li>
 1 if we have a page.</li>
 </blockquote>
-<p>
-
-<h3>Example Usage</h3>
-<pre>
-if (ogg_sync_pageout(&oy, &og) != 1) {
-	buffer = ogg_sync_buffer(&oy, 8192);
-	bytes = fread(buffer, 1, 8192, stdin);
-	ogg_sync_wrote(&oy, bytes);
-}
+<p>
+
+<h3>Example Usage</h3>
+<pre>
+if (ogg_sync_pageout(&oy, &og) != 1) {
+	buffer = ogg_sync_buffer(&oy, 8192);
+	bytes = fread(buffer, 1, 8192, stdin);
+	ogg_sync_wrote(&oy, bytes);
+}
 </pre>
 
 <br><br>

1.2       +6 -6      ogg/doc/ogg/ogg_sync_pageseek.html

Index: ogg_sync_pageseek.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/ogg_sync_pageseek.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ogg_sync_pageseek.html	2001/02/26 04:06:25	1.1
+++ ogg_sync_pageseek.html	2001/12/20 00:58:37	1.2
@@ -17,7 +17,7 @@
 
 <p><i>declared in "ogg/ogg.h";</i></p>
 
-<p>This function synchronizes the ogg_sync_state struct to the next ogg_page.  
+<p>This function synchronizes the ogg_sync_state struct to the next ogg_page.  
  <p>This is useful when seeking within a bitstream.  ogg_sync_pageseek will synchronize to the next page in the bitstream and return information about how many bytes we advanced or skipped in order to do so.
 
 <br><br>
@@ -34,18 +34,18 @@
 <h3>Parameters</h3>
 <dl>
 <dt><i>oy</i></dt>
-<dd>Pointer to a previously declared <a href="ogg_sync_state.html">ogg_sync_state</a> struct.</dd>
-<dt><i>og</i></dt>
+<dd>Pointer to a previously declared <a href="ogg_sync_state.html">ogg_sync_state</a> struct.</dd>
+<dt><i>og</i></dt>
 <dd>Pointer to a page (or an incomplete page) of data.  This is the page we are attempting to sync.
 </dl>
 
 
 <h3>Return Values</h3>
 <blockquote>
-<li>-n means that we skipped n bytes within the bitstream.</li>
+<li>-n means that we skipped n bytes within the bitstream.</li>
 <li>
-0 means that the page isn't ready and we need more data.  No bytes have been skipped.</li>
-<li>
+0 means that the page isn't ready and we need more data.  No bytes have been skipped.</li>
+<li>
 n means that the page was synced at the current location, with a page length of n bytes.
 </blockquote>
 <p>

1.2       +1 -1      ogg/doc/ogg/ogg_sync_reset.html

Index: ogg_sync_reset.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/ogg_sync_reset.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ogg_sync_reset.html	2001/02/26 04:06:26	1.1
+++ ogg_sync_reset.html	2001/12/20 00:58:37	1.2
@@ -17,7 +17,7 @@
 
 <p><i>declared in "ogg/ogg.h";</i></p>
 
-<p>This function is used to reset the internal counters of the <a href="ogg_sync_state.html">ogg_sync_state</a> struct to initial values.
+<p>This function is used to reset the internal counters of the <a href="ogg_sync_state.html">ogg_sync_state</a> struct to initial values.
 <p>It is a good idea to call this before seeking within a bitstream.
 
 <br><br>

1.2       +14 -14    ogg/doc/ogg/ogg_sync_state.html

Index: ogg_sync_state.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/ogg_sync_state.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ogg_sync_state.html	2001/02/26 04:06:26	1.1
+++ ogg_sync_state.html	2001/12/20 00:58:37	1.2
@@ -18,24 +18,24 @@
 <p><i>declared in "ogg/ogg.h"</i></p>
 
 <p>
-The ogg_sync_state struct tracks the synchronization of the current page.
+The ogg_sync_state struct tracks the synchronization of the current page.
 <p>It is used during decoding to track the status of data as it is read in and 
 <p>
 
 <table border=0 width=100% color=black cellspacing=0 cellpadding=7>
 <tr bgcolor=#cccccc>
         <td>
-<pre><b>
-typedef struct {
-  unsigned char *data;
-  int storage;
-  int fill;
-  int returned;
-
-  int unsynced;
-  int headerbytes;
-  int bodybytes;
-} ogg_sync_state;
+<pre><b>
+typedef struct {
+  unsigned char *data;
+  int storage;
+  int fill;
+  int returned;
+
+  int unsynced;
+  int headerbytes;
+  int bodybytes;
+} ogg_sync_state;
 </b></pre>
         </td>
 </tr>
@@ -44,9 +44,9 @@
 <h3>Relevant Struct Members</h3>
 <dl>
 <dt><i>data</i></dt>
-<dd>Pointer to data from packet bodies.</dd>
+<dd>Pointer to data from packet bodies.</dd>
 <dt><i>storage</i></dt>
-<dd>Pointer to data from packet bodies.</dd>
+<dd>Pointer to data from packet bodies.</dd>
 </dl>
 
 

1.2       +1 -1      ogg/doc/ogg/ogg_sync_wrote.html

Index: ogg_sync_wrote.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/ogg_sync_wrote.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ogg_sync_wrote.html	2001/02/26 04:06:26	1.1
+++ ogg_sync_wrote.html	2001/12/20 00:58:37	1.2
@@ -39,7 +39,7 @@
 
 <h3>Return Values</h3>
 <blockquote>
-<li>-1 if the number of bytes written overflows the internal storage of the <a href="ogg_sync_state.html">ogg_sync_state</a> struct.
+<li>-1 if the number of bytes written overflows the internal storage of the <a href="ogg_sync_state.html">ogg_sync_state</a> struct.
 <li>
 0 in all other cases.</li>
 </blockquote>

1.2       +3 -3      ogg/doc/ogg/oggpack_adv.html

Index: oggpack_adv.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/oggpack_adv.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- oggpack_adv.html	2001/02/26 04:06:26	1.1
+++ oggpack_adv.html	2001/12/20 00:58:37	1.2
@@ -17,7 +17,7 @@
 
 <p><i>declared in "ogg/ogg.h";</i></p>
 
-<p>This function advances the location pointer by the specified number of bits without reading any data.
+<p>This function advances the location pointer by the specified number of bits without reading any data.
 <p>To also check for overflow while advancing, use <a href="oggpack_adv_huff.html">oggpack_adv_huff</a> instead.
 
 <br><br>
@@ -25,7 +25,7 @@
 <tr bgcolor=#cccccc>
         <td>
 <pre><b>
-void  oggpack_adv(oggpack_buffer *b,int bits);
+void  oggpack_adv(oggpack_buffer *b,int bits);
 </b></pre>
         </td>
 </tr>
@@ -34,7 +34,7 @@
 <h3>Parameters</h3>
 <dl>
 <dt><i>b</i></dt>
-<dd>Pointer to the current oggpack_buffer.</dd>
+<dd>Pointer to the current oggpack_buffer.</dd>
 <dt><i>bits</i></dt>
 <dd>Number of bits to advance.</dd>
 </dl>

1.2       +1 -1      ogg/doc/ogg/oggpack_adv1.html

Index: oggpack_adv1.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/oggpack_adv1.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- oggpack_adv1.html	2001/02/26 04:06:26	1.1
+++ oggpack_adv1.html	2001/12/20 00:58:37	1.2
@@ -24,7 +24,7 @@
 <tr bgcolor=#cccccc>
         <td>
 <pre><b>
-void  oggpack_adv1(oggpack_buffer *b);
+void  oggpack_adv1(oggpack_buffer *b);
 </b></pre>
         </td>
 </tr>

1.2       +4 -4      ogg/doc/ogg/oggpack_adv_huff.html

Index: oggpack_adv_huff.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/oggpack_adv_huff.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- oggpack_adv_huff.html	2001/02/26 04:06:26	1.1
+++ oggpack_adv_huff.html	2001/12/20 00:58:37	1.2
@@ -17,7 +17,7 @@
 
 <p><i>declared in "ogg/ogg.h";</i></p>
 
-<p>This function advances the location pointer by the specified number of bits without reading any data.
+<p>This function advances the location pointer by the specified number of bits without reading any data.
 <p>This also checks for buffer overflow.
 
 <br><br>
@@ -25,7 +25,7 @@
 <tr bgcolor=#cccccc>
         <td>
 <pre><b>
-int oggpack_adv_huff(oggpack_buffer *b,int bits);
+int oggpack_adv_huff(oggpack_buffer *b,int bits);
 </b></pre>
         </td>
 </tr>
@@ -34,7 +34,7 @@
 <h3>Parameters</h3>
 <dl>
 <dt><i>b</i></dt>
-<dd>Pointer to the current oggpack_buffer.</dd>
+<dd>Pointer to the current oggpack_buffer.</dd>
 <dt><i>bits</i></dt>
 <dd>Number of bits to advance.</dd>
 </dl>
@@ -43,7 +43,7 @@
 <h3>Return Values</h3>
 <blockquote>
 <li>
--1 on buffer overflow.</li>
+-1 on buffer overflow.</li>
 <li>
 0 in all other cases.</li>
 </blockquote>

1.2       +1 -1      ogg/doc/ogg/oggpack_bits.html

Index: oggpack_bits.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/oggpack_bits.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- oggpack_bits.html	2001/02/26 04:06:26	1.1
+++ oggpack_bits.html	2001/12/20 00:58:37	1.2
@@ -24,7 +24,7 @@
 <tr bgcolor=#cccccc>
         <td>
 <pre><b>
-long oggpack_bits(<a href="oggpack_buffer.html">oggpack_buffer</a> *b);
+long oggpack_bits(<a href="oggpack_buffer.html">oggpack_buffer</a> *b);
 </b></pre>
         </td>
 </tr>

1.2       +13 -13    ogg/doc/ogg/oggpack_buffer.html

Index: oggpack_buffer.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/oggpack_buffer.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- oggpack_buffer.html	2001/02/26 04:06:26	1.1
+++ oggpack_buffer.html	2001/12/20 00:58:37	1.2
@@ -24,15 +24,15 @@
 <table border=0 width=100% color=black cellspacing=0 cellpadding=7>
 <tr bgcolor=#cccccc>
         <td>
-<pre><b>
-typedef struct {
-  long endbyte;
-  int  endbit;
-
-  unsigned char *buffer;
-  unsigned char *ptr;
-  long storage;
-} oggpack_buffer;
+<pre><b>
+typedef struct {
+  long endbyte;
+  int  endbit;
+
+  unsigned char *buffer;
+  unsigned char *ptr;
+  long storage;
+} oggpack_buffer;
 </b></pre>
         </td>
 </tr>
@@ -41,10 +41,10 @@
 <h3>Relevant Struct Members</h3>
 <dl>
 <dt><i>buffer</i></dt>
-<dd>Pointer to data being manipulated.</dd>
-<dt><i>ptr</i></dt>
-<dd>Location pointer to mark which data has been read.</dd>
-<dt><i>storage</i></dt>
+<dd>Pointer to data being manipulated.</dd>
+<dt><i>ptr</i></dt>
+<dd>Location pointer to mark which data has been read.</dd>
+<dt><i>storage</i></dt>
 <dd>Size of buffer.</i></dt>
 </dl>
 

1.2       +1 -1      ogg/doc/ogg/oggpack_bytes.html

Index: oggpack_bytes.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/oggpack_bytes.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- oggpack_bytes.html	2001/02/26 04:06:26	1.1
+++ oggpack_bytes.html	2001/12/20 00:58:37	1.2
@@ -24,7 +24,7 @@
 <tr bgcolor=#cccccc>
         <td>
 <pre><b>
-long oggpack_bytes(<a href="oggpack_buffer.html">oggpack_buffer</a> *b);
+long oggpack_bytes(<a href="oggpack_buffer.html">oggpack_buffer</a> *b);
 </b></pre>
         </td>
 </tr>

1.2       +1 -1      ogg/doc/ogg/oggpack_get_buffer.html

Index: oggpack_get_buffer.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/oggpack_get_buffer.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- oggpack_get_buffer.html	2001/02/26 04:06:26	1.1
+++ oggpack_get_buffer.html	2001/12/20 00:58:37	1.2
@@ -24,7 +24,7 @@
 <tr bgcolor=#cccccc>
         <td>
 <pre><b>
-unsigned char *oggpack_get_buffer(<a href="oggpack_buffer.html">oggpack_buffer</a> *b);
+unsigned char *oggpack_get_buffer(<a href="oggpack_buffer.html">oggpack_buffer</a> *b);
 </b></pre>
         </td>
 </tr>

1.2       +5 -5      ogg/doc/ogg/oggpack_look.html

Index: oggpack_look.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/oggpack_look.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- oggpack_look.html	2001/02/26 04:06:26	1.1
+++ oggpack_look.html	2001/12/20 00:58:37	1.2
@@ -17,9 +17,9 @@
 
 <p><i>declared in "ogg/ogg.h";</i></p>
 
-<p>This function looks at a specified number of bits inside the buffer without advancing the location pointer.
-<p>The specified number of bits are read, starting from the location pointer.
-<p>This function can be used to read 32 or fewer bits.
+<p>This function looks at a specified number of bits inside the buffer without advancing the location pointer.
+<p>The specified number of bits are read, starting from the location pointer.
+<p>This function can be used to read 32 or fewer bits.
 <p><a href="oggpack_look_huff.html">oggpack_look_huff()</a> can be used instead to read 8 or fewer bits.
 
 <br><br>
@@ -27,7 +27,7 @@
 <tr bgcolor=#cccccc>
         <td>
 <pre><b>
-long  oggpack_look(<a href="oggpack_buffer.html">oggpack_buffer</a> *b,int bits);
+long  oggpack_look(<a href="oggpack_buffer.html">oggpack_buffer</a> *b,int bits);
 </b></pre>
 </td>
 </tr>
@@ -36,7 +36,7 @@
 <h3>Parameters</h3>
 <dl>
 <dt><i>b</i></dt>
-<dd>Pointer to <a href="oggpack_buffer.html">oggpack_buffer</a> to be read.</dd>
+<dd>Pointer to <a href="oggpack_buffer.html">oggpack_buffer</a> to be read.</dd>
 <dt><i>bits</i></dt>
 <dd>Number of bits to look at.  For this function, must be 32 or fewer.</dd>
 </dl>

1.2       +2 -2      ogg/doc/ogg/oggpack_look1.html

Index: oggpack_look1.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/oggpack_look1.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- oggpack_look1.html	2001/02/26 04:06:26	1.1
+++ oggpack_look1.html	2001/12/20 00:58:37	1.2
@@ -17,7 +17,7 @@
 
 <p><i>declared in "ogg/ogg.h";</i></p>
 
-<p>This function looks at the next bit without advancing the location pointer.
+<p>This function looks at the next bit without advancing the location pointer.
 <p>The next bit is read starting from the location pointer.
 
 <br><br>
@@ -25,7 +25,7 @@
 <tr bgcolor=#cccccc>
         <td>
 <pre><b>
-long  oggpack_look1(oggpack_buffer *b);
+long  oggpack_look1(oggpack_buffer *b);
 </b></pre>
         </td>
 </tr>

1.2       +6 -6      ogg/doc/ogg/oggpack_look_huff.html

Index: oggpack_look_huff.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/oggpack_look_huff.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- oggpack_look_huff.html	2001/02/26 04:06:26	1.1
+++ oggpack_look_huff.html	2001/12/20 00:58:37	1.2
@@ -17,9 +17,9 @@
 
 <p><i>declared in "ogg/ogg.h";</i></p>
 
-<p>This function looks at a specified number of bits inside the buffer without advancing the location pointer.
-<p>The specified number of bits are read, starting from the location pointer.
-<p>This function can be used to look at 8 or fewer bits.
+<p>This function looks at a specified number of bits inside the buffer without advancing the location pointer.
+<p>The specified number of bits are read, starting from the location pointer.
+<p>This function can be used to look at 8 or fewer bits.
 <p>To look at more bits, <a href="oggpack_look.html">oggpack_look</a> can be used instead to read 32 or fewer bits.
 
 
@@ -28,16 +28,16 @@
 <tr bgcolor=#cccccc>
         <td>
 <pre><b>
-long  oggpack_look_huff(oggpack_buffer *b,int bits);
+long  oggpack_look_huff(oggpack_buffer *b,int bits);
 </b></pre>
 </td>
 </tr>
 </table>
 
 <h3>Parameters</h3>
-<dl>
+<dl>
 <dt><i>b</i></dt>
-<dd>Pointer to <a href="oggpack_buffer.html">oggpack_buffer</a> to be read.</dd>
+<dd>Pointer to <a href="oggpack_buffer.html">oggpack_buffer</a> to be read.</dd>
 <dt><i>bits</i></dt>
 <dd>Number of bits to look at.  For this function, must be 8 or fewer.</dd>
 </dl>

1.2       +3 -3      ogg/doc/ogg/oggpack_read.html

Index: oggpack_read.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/oggpack_read.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- oggpack_read.html	2001/02/26 04:06:26	1.1
+++ oggpack_read.html	2001/12/20 00:58:37	1.2
@@ -17,7 +17,7 @@
 
 <p><i>declared in "ogg/ogg.h";</i></p>
 
-<p>This function reads the requested number of bits from the buffer and advances the location pointer.
+<p>This function reads the requested number of bits from the buffer and advances the location pointer.
 <p>Before reading, the buffer should be initialized using <a href="oggpack_readinit.html">oggpack_readinit</a>.
 
 <br><br>
@@ -25,7 +25,7 @@
 <tr bgcolor=#cccccc>
         <td>
 <pre><b>
-long oggpack_read(oggpack_buffer *b,int bits);
+long oggpack_read(oggpack_buffer *b,int bits);
 </b></pre>
         </td>
 </tr>
@@ -34,7 +34,7 @@
 <h3>Parameters</h3>
 <dl>
 <dt><i>b</i></dt>
-<dd>Pointer to an <a href="oggpack_buffer.html">oggpack_buffer</a> struct containing buffered data to be read.</dd>
+<dd>Pointer to an <a href="oggpack_buffer.html">oggpack_buffer</a> struct containing buffered data to be read.</dd>
 <dt><i>bits</i></dt>
 <dd>Number of bits to read.</dd>
 </dl>

1.2       +2 -2      ogg/doc/ogg/oggpack_read1.html

Index: oggpack_read1.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/oggpack_read1.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- oggpack_read1.html	2001/02/26 04:06:26	1.1
+++ oggpack_read1.html	2001/12/20 00:58:37	1.2
@@ -17,7 +17,7 @@
 
 <p><i>declared in "ogg/ogg.h";</i></p>
 
-<p>This function reads one bit from the <a href="oggpack_buffer.html">oggpack_buffer</a> data buffer and advances the location pointer.
+<p>This function reads one bit from the <a href="oggpack_buffer.html">oggpack_buffer</a> data buffer and advances the location pointer.
 <p>Before reading, the buffer should be initialized using <a href="oggpack_readinit.html">oggpack_readinit</a>.
 
 <br><br>
@@ -25,7 +25,7 @@
 <tr bgcolor=#cccccc>
         <td>
 <pre><b>
-long  oggpack_read1(oggpack_buffer *b);
+long  oggpack_read1(oggpack_buffer *b);
 </b></pre>
         </td>
 </tr>

1.2       +3 -3      ogg/doc/ogg/oggpack_readinit.html

Index: oggpack_readinit.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/oggpack_readinit.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- oggpack_readinit.html	2001/02/26 04:06:26	1.1
+++ oggpack_readinit.html	2001/12/20 00:58:37	1.2
@@ -24,7 +24,7 @@
 <tr bgcolor=#cccccc>
         <td>
 <pre><b>
-void oggpack_readinit(oggpack_buffer *b,unsigned char *buf,int bytes);
+void oggpack_readinit(oggpack_buffer *b,unsigned char *buf,int bytes);
 </b></pre>
         </td>
 </tr>
@@ -33,8 +33,8 @@
 <h3>Parameters</h3>
 <dl>
 <dt><i>b</i></dt>
-<dd>Pointer to <a href=oggpack_buffer.html">oggpack_buffer</a> to be initialized with some extra markers to ease bit navigation and manipulation.</dd>
-<dt><i>buf</i></dt>
+<dd>Pointer to <a href=oggpack_buffer.html">oggpack_buffer</a> to be initialized with some extra markers to ease bit navigation and manipulation.</dd>
+<dt><i>buf</i></dt>
 <dd>Original data buffer, to be inserted into the <a href="oggpack_buffer.html">oggpack_buffer</a> so that it can be read using bitpacking functions.
 </dl>
 

1.2       +1 -1      ogg/doc/ogg/oggpack_reset.html

Index: oggpack_reset.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/oggpack_reset.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- oggpack_reset.html	2001/02/26 04:06:26	1.1
+++ oggpack_reset.html	2001/12/20 00:58:37	1.2
@@ -24,7 +24,7 @@
 <tr bgcolor=#cccccc>
         <td>
 <pre><b>
-void  oggpack_reset(oggpack_buffer *b);
+void  oggpack_reset(oggpack_buffer *b);
 </b></pre>
         </td>
 </tr>

1.2       +7 -7      ogg/doc/ogg/oggpack_write.html

Index: oggpack_write.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/oggpack_write.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- oggpack_write.html	2001/02/26 04:06:26	1.1
+++ oggpack_write.html	2001/12/20 00:58:37	1.2
@@ -17,8 +17,8 @@
 
 <p><i>declared in "ogg/ogg.h";</i></p>
 
-<p>This function writes bits into an <a href="oggpack_buffer.html">oggpack_buffer</a>.
-<p>The oggpack_buffer must already be initialized for writing using <a href="oggpack_writeinit.html">oggpack_writeinit</a>.
+<p>This function writes bits into an <a href="oggpack_buffer.html">oggpack_buffer</a>.
+<p>The oggpack_buffer must already be initialized for writing using <a href="oggpack_writeinit.html">oggpack_writeinit</a>.
 <p>Only 32 bits can be written at a time.
 
 <br><br>
@@ -26,7 +26,7 @@
 <tr bgcolor=#cccccc>
         <td>
 <pre><b>
-void  oggpack_write(oggpack_buffer *b,unsigned long value,int bits);
+void  oggpack_write(oggpack_buffer *b,unsigned long value,int bits);
 </b></pre>
         </td>
 </tr>
@@ -35,10 +35,10 @@
 <h3>Parameters</h3>
 <dl>
 <dt><i>b</i></dt>
-<dd>Buffer to be used for writing.</dd>
-<dt><i>value</i></dt>
-<dd>The data to be written into the buffer.  This must be 32 bits or fewer.</dd>
-<dt><i>bits</i></dt>
+<dd>Buffer to be used for writing.</dd>
+<dt><i>value</i></dt>
+<dd>The data to be written into the buffer.  This must be 32 bits or fewer.</dd>
+<dt><i>bits</i></dt>
 <dd>The number of bits being written into the buffer.</dd>
 </dl>
 

1.2       +1 -1      ogg/doc/ogg/oggpack_writeclear.html

Index: oggpack_writeclear.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/oggpack_writeclear.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- oggpack_writeclear.html	2001/02/26 04:06:26	1.1
+++ oggpack_writeclear.html	2001/12/20 00:58:37	1.2
@@ -24,7 +24,7 @@
 <tr bgcolor=#cccccc>
         <td>
 <pre><b>
-void oggpack_writeclear(oggpack_buffer *b);
+void oggpack_writeclear(oggpack_buffer *b);
 </b></pre>
         </td>
 </tr>

1.2       +1 -1      ogg/doc/ogg/oggpack_writeinit.html

Index: oggpack_writeinit.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/oggpack_writeinit.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- oggpack_writeinit.html	2001/02/26 04:06:26	1.1
+++ oggpack_writeinit.html	2001/12/20 00:58:37	1.2
@@ -24,7 +24,7 @@
 <tr bgcolor=#cccccc>
         <td>
 <pre><b>
-void  oggpack_writeinit(<a href="oggpack_buffer.html">oggpack_buffer</a> *b);
+void  oggpack_writeinit(<a href="oggpack_buffer.html">oggpack_buffer</a> *b);
 </b></pre>
         </td>
 </tr>

1.2       +6 -6      ogg/doc/ogg/style.css

Index: style.css
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/style.css,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- style.css	2001/02/26 04:06:26	1.1
+++ style.css	2001/12/20 00:58:37	1.2
@@ -1,7 +1,7 @@
-BODY { font-family: helvetica, sans-serif }
-TD { font-family: helvetica, sans-serif }
-P { font-family: helvetica, sans-serif }
-H1 { font-family: helvetica, sans-serif }
-H2 { font-family: helvetica, sans-serif }
-H4 { font-family: helvetica, sans-serif }
+BODY { font-family: Helvetica, sans-serif }
+TD { font-family: Helvetica, sans-serif }
+P { font-family: Helvetica, sans-serif }
+H1 { font-family: Helvetica, sans-serif }
+H2 { font-family: Helvetica, sans-serif }
+H4 { font-family: Helvetica, sans-serif }
 P.tiny { font-size: 8pt }

1.13      +2 -2      ogg/include/ogg/ogg.h

Index: ogg.h
===================================================================
RCS file: /usr/local/cvsroot/ogg/include/ogg/ogg.h,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ogg.h	2001/11/24 07:49:31	1.12
+++ ogg.h	2001/12/20 00:58:44	1.13
@@ -7,11 +7,11 @@
  *                                                                  *
  * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001             *
  * by the XIPHOPHORUS Company http://www.xiph.org/                  *
-
+ *                                                                  *
  ********************************************************************
 
  function: toplevel libogg include
- last mod: $Id: ogg.h,v 1.12 2001/11/24 07:49:31 xiphmont Exp $
+ last mod: $Id: ogg.h,v 1.13 2001/12/20 00:58:44 segher Exp $
 
  ********************************************************************/
 #ifndef _OGG_H

1.9       +2 -2      ogg/include/ogg/os_types.h

Index: os_types.h
===================================================================
RCS file: /usr/local/cvsroot/ogg/include/ogg/os_types.h,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- os_types.h	2001/11/02 07:39:12	1.8
+++ os_types.h	2001/12/20 00:58:44	1.9
@@ -7,11 +7,11 @@
  *                                                                  *
  * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001             *
  * by the XIPHOPHORUS Company http://www.xiph.org/                  *
-
+ *                                                                  *
  ********************************************************************
 
  function: #ifdef jail to whip a few platforms into the UNIX ideal.
- last mod: $Id: os_types.h,v 1.8 2001/11/02 07:39:12 giles Exp $
+ last mod: $Id: os_types.h,v 1.9 2001/12/20 00:58:44 segher Exp $
 
  ********************************************************************/
 #ifndef _OS_TYPES_H

1.9       +2 -2      ogg/src/bitwise.c

Index: bitwise.c
===================================================================
RCS file: /usr/local/cvsroot/ogg/src/bitwise.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- bitwise.c	2001/10/02 00:15:03	1.8
+++ bitwise.c	2001/12/20 00:58:45	1.9
@@ -7,11 +7,11 @@
  *                                                                  *
  * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001             *
  * by the XIPHOPHORUS Company http://www.xiph.org/                  *
-
+ *                                                                  *
  ********************************************************************
 
   function: packing variable sized words into an octet stream
-  last mod: $Id: bitwise.c,v 1.8 2001/10/02 00:15:03 segher Exp $
+  last mod: $Id: bitwise.c,v 1.9 2001/12/20 00:58:45 segher Exp $
 
  ********************************************************************/
 

1.20      +2 -2      ogg/src/framing.c

Index: framing.c
===================================================================
RCS file: /usr/local/cvsroot/ogg/src/framing.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- framing.c	2001/11/24 07:49:32	1.19
+++ framing.c	2001/12/20 00:58:45	1.20
@@ -7,12 +7,12 @@
  *                                                                  *
  * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001             *
  * by the XIPHOPHORUS Company http://www.xiph.org/                  *
-
+ *                                                                  *
  ********************************************************************
 
  function: code raw [Vorbis] packets into framed OggSquish stream and
            decode Ogg streams back into raw packets
- last mod: $Id: framing.c,v 1.19 2001/11/24 07:49:32 xiphmont Exp $
+ last mod: $Id: framing.c,v 1.20 2001/12/20 00:58:45 segher Exp $
 
  note: The CRC code is directly derived from public domain code by
  Ross Williams (ross at guest.adelaide.edu.au).  See docs/framing.html

--- >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 'cvs-request at xiph.org'
containing only the word 'unsubscribe' in the body.  No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.



More information about the commits mailing list