summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorRalph Giles <giles@thaumas.net>2019-08-13 08:52:59 -0700
committerRalph Giles <giles@thaumas.net>2019-08-13 08:54:31 -0700
commit3461004ef053d50ce57260ed8ccbd9744ef9a329 (patch)
tree1cb6a30d2df676a0a395d84a86d5817cfcc0fdd9 /doc
parent689371fdc2ebb3bc068464608916db6e5a104228 (diff)
downloadogg-git-3461004ef053d50ce57260ed8ccbd9744ef9a329.tar.gz
Fix ogg_stream_state documentation.
The pageno is declared `long` in the header, not `int`, although it's a 32-bit value in the page header. Thanks to Spencer Russell for reporting the issue.
Diffstat (limited to 'doc')
-rw-r--r--doc/libogg/ogg_stream_state.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/libogg/ogg_stream_state.html b/doc/libogg/ogg_stream_state.html
index dc440c3..ece2c0e 100644
--- a/doc/libogg/ogg_stream_state.html
+++ b/doc/libogg/ogg_stream_state.html
@@ -49,7 +49,7 @@ typedef struct {
int b_o_s; /* set after we've written the initial page
of a logical bitstream */
long serialno;
- int pageno;
+ long 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