From 373dc625f82b47096893add42c4472e4a57ab7eb Mon Sep 17 00:00:00 2001 From: Aki Date: Wed, 9 Feb 2022 22:23:03 +0100 Subject: Moved third-party libraries to a separate subdirectory --- ogg/doc/libogg/ogg_page.html | 75 -------------------------------------------- 1 file changed, 75 deletions(-) delete mode 100644 ogg/doc/libogg/ogg_page.html (limited to 'ogg/doc/libogg/ogg_page.html') diff --git a/ogg/doc/libogg/ogg_page.html b/ogg/doc/libogg/ogg_page.html deleted file mode 100644 index ac1a994..0000000 --- a/ogg/doc/libogg/ogg_page.html +++ /dev/null @@ -1,75 +0,0 @@ - - - -libogg - datatype - ogg_page - - - - - - - - - -

libogg documentation

libogg release 1.3.2 - 20140527

- -

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-2014 Xiph.Org

Ogg Container Format

libogg documentation

libogg release 1.3.2 - 20140527

- - - - -- cgit v1.1