summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Terriberry <tterribe@xiph.org>2013-05-06 17:44:36 +0000
committerTim Terriberry <tterribe@xiph.org>2013-05-06 17:44:36 +0000
commit49329b82f16aa2856500dc772362401ca2f2a979 (patch)
tree2052e901698752ded9011cd3e4553bd566e26c12
parent4f6564d1046a69e1369d27b708afa8143946c47d (diff)
downloadogg-49329b82f16aa2856500dc772362401ca2f2a979.tar.gz
Minor documentation fixes.
Fixes some broken links that were pointing to the wrong place, and some formatting errors. git-svn-id: http://svn.xiph.org/trunk/ogg@18935 0101bb08-14d6-0310-b084-bc0e0c8e3800
-rw-r--r--doc/libogg/ogg_stream_check.html2
-rw-r--r--doc/libogg/ogg_stream_flush.html2
-rw-r--r--doc/libogg/ogg_stream_pagein.html2
-rw-r--r--doc/libogg/ogg_sync_check.html2
-rw-r--r--doc/libogg/oggpack_writecheck.html2
5 files changed, 5 insertions, 5 deletions
diff --git a/doc/libogg/ogg_stream_check.html b/doc/libogg/ogg_stream_check.html
index 60bb552..556a484 100644
--- a/doc/libogg/ogg_stream_check.html
+++ b/doc/libogg/ogg_stream_check.html
@@ -19,7 +19,7 @@
<p>This function is used to check the error or readiness condition of an <a href="ogg_stream_state.html">ogg_stream_state</a> structure.
<p>It is safe practice to ignore unrecoverable errors (such as an internal error caused by a malloc() failure) returned by ogg stream synchronization calls. Should an
-internal error occur, the <a href="ogg_stream_state.html">ogg_stream_state</a>structure will be cleared (equivalent to a
+internal error occur, the <a href="ogg_stream_state.html">ogg_stream_state</a> structure will be cleared (equivalent to a
call to
<a href="ogg_stream_clear.html">ogg_stream_clear</a>) and subsequent calls
using this <a href="ogg_stream_state.html">ogg_stream_state</a> will be
diff --git a/doc/libogg/ogg_stream_flush.html b/doc/libogg/ogg_stream_flush.html
index 33b799c..2f5998d 100644
--- a/doc/libogg/ogg_stream_flush.html
+++ b/doc/libogg/ogg_stream_flush.html
@@ -18,7 +18,7 @@
<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 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> or <a href="ogg_stream_pageout_fill.html">ogg_stream_pageout_fill</a>should always be used.
+<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> or <a href="ogg_stream_pageout_fill.html">ogg_stream_pageout_fill</a> should always be used.
<p>This function can also be used to verify that all packets have been flushed. If the return value is 0, all packets have been placed into a page. Like <a href="ogg_stream_pageout.html">ogg_stream_pageout</a>, it should generally be called in a loop until available packet data has been flushes, since even a single packet may span multiple pages.
<br><br>
diff --git a/doc/libogg/ogg_stream_pagein.html b/doc/libogg/ogg_stream_pagein.html
index 2185961..703e297 100644
--- a/doc/libogg/ogg_stream_pagein.html
+++ b/doc/libogg/ogg_stream_pagein.html
@@ -35,7 +35,7 @@ int ogg_stream_pagein(<a href="ogg_stream_state.html">ogg_stream_state</a> *os,
<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>
+<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 data inside this page is being submitted to the streaming layer in order to be allocated into packets.
</dl>
diff --git a/doc/libogg/ogg_sync_check.html b/doc/libogg/ogg_sync_check.html
index 5c9dbad..0238a74 100644
--- a/doc/libogg/ogg_sync_check.html
+++ b/doc/libogg/ogg_sync_check.html
@@ -19,7 +19,7 @@
<p>This function is used to check the error or readiness condition of an <a href="ogg_sync_state.html">ogg_sync_state</a> structure.
<p>It is safe practice to ignore unrecoverable errors (such as an internal error caused by a malloc() failure) returned by ogg stream synchronization calls. Should an
-internal error occur, the <a href="ogg_sync_state.html">ogg_sync_state</a>structure will be cleared (equivalent to a
+internal error occur, the <a href="ogg_sync_state.html">ogg_sync_state</a> structure will be cleared (equivalent to a
call to
<a href="ogg_sync_clear.html">ogg_sync_clear</a>) and subsequent calls
using this <a href="ogg_sync_state.html">ogg_sync_state</a> will be
diff --git a/doc/libogg/oggpack_writecheck.html b/doc/libogg/oggpack_writecheck.html
index 8762f33..c7f5a21 100644
--- a/doc/libogg/oggpack_writecheck.html
+++ b/doc/libogg/oggpack_writecheck.html
@@ -26,7 +26,7 @@ its internal state and release any in-use memory, flagging itself as
'not ready'. Subsequent attempts to write using the buffer will
silently fail. This error state may be detected at any later time by
using oggpack_writecheck(). It is safe but not necessary to
-call <a href="oggpack_clear.html">oggpack_clear()</a> on a buffer that
+call <a href="oggpack_writeclear.html">oggpack_writeclear()</a> on a buffer that
has flagged an error and released its resources.
<p><em>Important note to developers: Although libogg checks the