4 <title>libogg - function - ogg_sync_pageout</title>
5 <link rel=stylesheet href="style.css" type="text/css">
8 <body bgcolor=white text=black link="#5555ff" alink="#5555ff" vlink="#5555ff">
9 <table border=0 width=100%>
11 <td><p class=tiny>libogg documentation</p></td>
12 <td align=right><p class=tiny>libogg release 1.0 - 20000615</p></td>
16 <h1>ogg_sync_pageout</h1>
18 <p><i>declared in "ogg/ogg.h";</i></p>
20 <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>.
22 <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.
23 <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.
26 <table border=0 color=black cellspacing=0 cellpadding=7>
30 int ogg_sync_pageout(<a href="ogg_sync_state.html">ogg_sync_state</a> *oy, <a href="ogg_page.html">ogg_page</a> *og);
39 <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>
41 <dd>Pointer to page struct filled by this function.
45 <h3>Return Values</h3>
47 <li>-1 if we were not properly synced and had to skip some bytes.</li>
49 0 if we need more data to verify a page.</li>
51 1 if we have a page.</li>
55 <h3>Example Usage</h3>
57 if (ogg_sync_pageout(&oy, &og) != 1) {
58 buffer = ogg_sync_buffer(&oy, 8192);
59 bytes = fread(buffer, 1, 8192, stdin);
60 ogg_sync_wrote(&oy, bytes);
66 <table border=0 width=100%>
68 <td><p class=tiny>copyright © 2000 xiph.org</p></td>
69 <td align=right><p class=tiny><a href="http://www.xiph.org/ogg/vorbis/index.html">Ogg Vorbis</a><br><a href="mailto:team@xiph.org">team@xiph.org</a></p></td>
71 <td><p class=tiny>libogg documentation</p></td>
72 <td align=right><p class=tiny>libogg release 1.0 - 20000615</p></td>