[xiph-cvs] cvs commit: ogg/doc/ogg Makefile.am bitpacking.html oggpack_adv.html oggpack_look.html reference.html oggpack_adv_huff.html oggpack_look_huff.html
Ralph Giles
giles at xiph.org
Fri Jul 19 04:03:41 PDT 2002
giles 02/07/19 04:03:40
Modified: doc/ogg Makefile.am bitpacking.html oggpack_adv.html
oggpack_look.html reference.html
Removed: doc/ogg oggpack_adv_huff.html oggpack_look_huff.html
Log:
Remove obsolete oggpack_*_huff() functions from API documenation.
Revision Changes Path
1.3 +2 -2 ogg/doc/ogg/Makefile.am
Index: Makefile.am
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/Makefile.am,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- Makefile.am 2001/12/19 00:47:18 1.2
+++ Makefile.am 2002/07/19 11:03:39 1.3
@@ -16,9 +16,9 @@
ogg_sync_destroy.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_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_look1.html oggpack_read.html\
oggpack_read1.html oggpack_readinit.html oggpack_reset.html\
oggpack_write.html oggpack_writeclear.html oggpack_writeinit.html\
overview.html reference.html style.css vorbis_comment.html\
<p><p>1.3 +0 -8 ogg/doc/ogg/bitpacking.html
Index: bitpacking.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/bitpacking.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- bitpacking.html 2001/12/20 00:58:36 1.2
+++ bitpacking.html 2002/07/19 11:03:39 1.3
@@ -49,20 +49,12 @@
<td>Look at a specified number of bits, <=32, without advancing the location pointer.</td>
</tr>
<tr valign=top>
-<td>oggpack_look_huff</td>
- <td>Look at a specified number of bits, <=8, without advancing the location pointer.</td>
-</tr>
-<tr valign=top>
<td>oggpack_look1</td>
<td>Looks at one bit without advancing the location pointer.</td>
</tr>
<tr valign=top>
<td>oggpack_adv</td>
<td>Advances the location pointer by a specified number of bits.</td>
-</tr>
-<tr valign=top>
-<td>oggpack_adv_huff</td>
- <td>Advances the location pointer by a specified number of bits, and checks for buffer overflow.</td>
</tr>
<tr valign=top>
<td>oggpack_adv1</td>
<p><p>1.3 +2 -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.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- oggpack_adv.html 2001/12/20 00:58:37 1.2
+++ oggpack_adv.html 2002/07/19 11:03:39 1.3
@@ -18,7 +18,6 @@
<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>To also check for overflow while advancing, use oggpack_adv_huff instead.
<br><br>
<table border=0 color=black cellspacing=0 cellpadding=7>
@@ -51,11 +50,11 @@
<hr noshade>
<table border=0 width=100%>
<tr valign=top>
-<td><p class=tiny>copyright © 2000 xiph.org</p></td>
+<td><p class=tiny>copyright © 2002 Xiph.org Foundation</p></td>
<td align=right><p class=tiny><a href="http://www.xiph.org/ogg/vorbis/index.html">Ogg Vorbis</a><br><a href="mailto:team at xiph.org">team at xiph.org</a></p></td>
</tr><tr>
<td><p class=tiny>libogg documentation</p></td>
-<td align=right><p class=tiny>libogg version 1.25 - 20000615</p></td>
+<td align=right><p class=tiny>libogg version 1.25 - 20020719</p></td>
</tr>
</table>
<p><p>1.3 +0 -1 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.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- oggpack_look.html 2001/12/20 00:58:37 1.2
+++ oggpack_look.html 2002/07/19 11:03:39 1.3
@@ -20,7 +20,6 @@
<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>oggpack_look_huff() can be used instead to read 8 or fewer bits.
<br><br>
<table border=0 color=black cellspacing=0 cellpadding=7>
<p><p>1.4 +0 -2 ogg/doc/ogg/reference.html
Index: reference.html
===================================================================
RCS file: /usr/local/cvsroot/ogg/doc/ogg/reference.html,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- reference.html 2001/12/19 00:47:18 1.3
+++ reference.html 2002/07/19 11:03:39 1.4
@@ -30,10 +30,8 @@
<a href="oggpack_readinit.html">oggpack_readinit()</a><br>
<a href="oggpack_write.html">oggpack_write()</a><br>
<a href="oggpack_look.html">oggpack_look()</a><br>
-oggpack_look_huff()<br>
<a href="oggpack_look1.html">oggpack_look1()</a><br>
<a href="oggpack_adv.html">oggpack_adv()</a><br>
-oggpack_adv_huff()<br>
<a href="oggpack_adv1.html">oggpack_adv1()</a><br>
<a href="oggpack_read.html">oggpack_read()</a><br>
<a href="oggpack_read1.html">oggpack_read1()</a><br>
<p><p><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 '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