From 08dbd66e649fc8c130bc12575b857113e9dde921 Mon Sep 17 00:00:00 2001 From: Segher Boessenkool Date: Thu, 20 Dec 2001 00:58:45 +0000 Subject: lots of extremely minor fixes svn path=/trunk/ogg/; revision=2867 --- doc/ogg/bitpacking.html | 30 +++++------ doc/ogg/decoding.html | 4 +- doc/ogg/encoding.html | 28 +++++------ doc/ogg/general.html | 28 +++++------ doc/ogg/ogg_page_bos.html | 12 ++--- doc/ogg/ogg_page_continued.html | 10 ++-- doc/ogg/ogg_page_eos.html | 12 ++--- doc/ogg/ogg_page_granulepos.html | 12 ++--- doc/ogg/ogg_page_packets.html | 2 +- doc/ogg/ogg_page_pageno.html | 8 +-- doc/ogg/ogg_page_serialno.html | 8 +-- doc/ogg/ogg_page_version.html | 6 +-- doc/ogg/ogg_stream_destroy.html | 2 +- doc/ogg/ogg_stream_eos.html | 2 +- doc/ogg/ogg_stream_flush.html | 10 ++-- doc/ogg/ogg_stream_init.html | 4 +- doc/ogg/ogg_stream_packetin.html | 10 ++-- doc/ogg/ogg_stream_pagein.html | 10 ++-- doc/ogg/ogg_stream_pageout.html | 10 ++-- doc/ogg/ogg_stream_state.html | 104 +++++++++++++++++++-------------------- doc/ogg/ogg_sync_buffer.html | 12 ++--- doc/ogg/ogg_sync_init.html | 2 +- doc/ogg/ogg_sync_pageout.html | 36 +++++++------- doc/ogg/ogg_sync_pageseek.html | 12 ++--- doc/ogg/ogg_sync_reset.html | 2 +- doc/ogg/ogg_sync_state.html | 28 +++++------ doc/ogg/ogg_sync_wrote.html | 2 +- doc/ogg/oggpack_adv.html | 6 +-- doc/ogg/oggpack_adv1.html | 2 +- doc/ogg/oggpack_adv_huff.html | 8 +-- doc/ogg/oggpack_bits.html | 2 +- doc/ogg/oggpack_buffer.html | 26 +++++----- doc/ogg/oggpack_bytes.html | 2 +- doc/ogg/oggpack_get_buffer.html | 2 +- doc/ogg/oggpack_look.html | 10 ++-- doc/ogg/oggpack_look1.html | 4 +- doc/ogg/oggpack_look_huff.html | 12 ++--- doc/ogg/oggpack_read.html | 6 +-- doc/ogg/oggpack_read1.html | 4 +- doc/ogg/oggpack_readinit.html | 6 +-- doc/ogg/oggpack_reset.html | 2 +- doc/ogg/oggpack_write.html | 14 +++--- doc/ogg/oggpack_writeclear.html | 2 +- doc/ogg/oggpack_writeinit.html | 2 +- doc/ogg/style.css | 12 ++--- include/ogg/ogg.h | 4 +- include/ogg/os_types.h | 4 +- src/bitwise.c | 4 +- src/framing.c | 4 +- 49 files changed, 272 insertions(+), 272 deletions(-) diff --git a/doc/ogg/bitpacking.html b/doc/ogg/bitpacking.html index 90fc608..cc5ec3c 100644 --- a/doc/ogg/bitpacking.html +++ b/doc/ogg/bitpacking.html @@ -27,63 +27,63 @@ All the libogg specific functions are declared in "ogg/ogg.h". oggpack_writeinit Initializes a buffer for writing using this bitpacking library. - + oggpack_reset Clears and resets the buffer to the initial position. - + oggpack_writeclear Frees the memory used by the buffer. - + oggpack_readinit Initializes a buffer for reading using this bitpacking library. - + oggpack_write Writes bytes to the specified location within the buffer. - + oggpack_look Look at a specified number of bits, <=32, without advancing the location pointer. - + oggpack_look_huff Look at a specified number of bits, <=8, without advancing the location pointer. - + oggpack_look1 Looks at one bit without advancing the location pointer. - + oggpack_adv Advances the location pointer by a specified number of bits. - + oggpack_adv_huff Advances the location pointer by a specified number of bits, and checks for buffer overflow. - + oggpack_adv1 Advances the location pointer by one bit. - + oggpack_read Reads a specified number of bits from the buffer. - + oggpack_read1 Reads one bit from the buffer. - + oggpack_bytes Returns the total number of bytes contained within the buffer. - + oggpack_bits Returns the total number of bits contained within the buffer. - + oggpack_get_buffer Returns a pointer to the buffer encapsulated within the oggpack_buffer struct. diff --git a/doc/ogg/decoding.html b/doc/ogg/decoding.html index 4a876b3..a6c8b54 100644 --- a/doc/ogg/decoding.html +++ b/doc/ogg/decoding.html @@ -14,12 +14,12 @@

Decoding

-

Libogg contains a set of functions used in the decoding process. +

Libogg contains a set of functions used in the decoding process.

All the libogg specific functions are declared in "ogg/ogg.h".

Decoding is based around the ogg synchronization layer. The ogg_sync_state struct coordinates between incoming data and the decoder. We read data into the synchronization layer, submit the data to the stream, and output raw packets to the decoder. -

Decoding through the Ogg layer follows a specific logical sequence. A read loop follows these logical steps: +

Decoding through the Ogg layer follows a specific logical sequence. A read loop follows these logical steps: