summaryrefslogtreecommitdiff
path: root/doc/ogg/bitpacking.html
diff options
context:
space:
mode:
authorSegher Boessenkool <segher@xiph.org>2001-12-20 00:58:45 +0000
committerSegher Boessenkool <segher@xiph.org>2001-12-20 00:58:45 +0000
commit08dbd66e649fc8c130bc12575b857113e9dde921 (patch)
tree361fc749f0b875447d2d093008171560d00ccf69 /doc/ogg/bitpacking.html
parentc39554e292e9a31590915e2f27af8c25446f4c93 (diff)
downloadogg-git-08dbd66e649fc8c130bc12575b857113e9dde921.tar.gz
lots of extremely minor fixes
svn path=/trunk/ogg/; revision=2867
Diffstat (limited to 'doc/ogg/bitpacking.html')
-rw-r--r--doc/ogg/bitpacking.html30
1 files changed, 15 insertions, 15 deletions
diff --git a/doc/ogg/bitpacking.html b/doc/ogg/bitpacking.html
index 90fc608..cc5ec3c 100644
--- a/doc/ogg/bitpacking.html
+++ b/doc/ogg/bitpacking.html
@@ -27,63 +27,63 @@ All the <b>libogg</b> specific functions are declared in "ogg/ogg.h".
<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>