From 740291cf2ae7f360b4ab119746da9ac2ef6611e4 Mon Sep 17 00:00:00 2001 From: claude-bot Date: Mon, 13 Jul 2026 12:40:00 +0000 Subject: Import xiph/ogg @ 36f969bb37559345ee03796ed625a9abd42c6db9 Snapshot for re3/reVC vendoring, per @lzcnt. Source: https://github.com/xiph/ogg (36f969bb37559345ee03796ed625a9abd42c6db9). --- doc/libogg/ogg_page.html | 75 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 doc/libogg/ogg_page.html (limited to 'doc/libogg/ogg_page.html') diff --git a/doc/libogg/ogg_page.html b/doc/libogg/ogg_page.html new file mode 100644 index 0000000..1a47bd3 --- /dev/null +++ b/doc/libogg/ogg_page.html @@ -0,0 +1,75 @@ + + + +libogg - datatype - ogg_page + + + + + + + + + +

libogg documentation

libogg release 1.3.4 - 20190830

+ +

ogg_page

+ +

declared in "ogg/ogg.h"

+ +

+The ogg_page struct encapsulates the data for an Ogg page. +

+Ogg pages are the fundamental unit of framing and interleave in an ogg bitstream. +They are made up of packet segments of 255 bytes each. There can be as many as +255 packet segments per page, for a maximum page size of a little under 64 kB. +This is not a practical limitation as the segments can be joined across +page boundaries allowing packets of arbitrary size. In practice many +applications will not completely fill all pages because they flush the +accumulated packets periodically order to bound latency more tightly. +

+

For a complete description of ogg pages and headers, please refer to the framing document. + + + + + +
+

+typedef struct {
+  unsigned char *header;
+  long           header_len;
+  unsigned char *body;
+  long           body_len;
+} ogg_page;
+
+
+ +

Relevant Struct Members

+
+
header
+
Pointer to the page header for this page. The exact contents of this header are defined in the framing spec document.
+
header_len
+
Length of the page header in bytes. +
body
+
Pointer to the data for this page.
+
body_len
+
Length of the body data in bytes.
+
+ + +

+
+ + + + + + + + +

copyright © 2000-2019 Xiph.Org Foundation

Ogg Container Format

libogg documentation

libogg release 1.3.4 - 20190830

+ + + + -- cgit v1.2.3