[xiph-cvs] cvs commit: vorbis/doc/xml 01-introduction.xml 02-bitpacking.xml 03-codebook.xml 04-codec.xml 05-comment.xml 06-floor0.xml 07-floor1.xml 08-residue.xml 09-helper.xml 10-tables.xml Vorbis_I_spec.xml footer.xml

Ralph Giles giles at xiph.org
Sat Oct 12 13:37:12 PDT 2002



giles       02/10/12 16:37:11

  Added:       doc/xml  01-introduction.xml 02-bitpacking.xml
                        03-codebook.xml 04-codec.xml 05-comment.xml
                        06-floor0.xml 07-floor1.xml 08-residue.xml
                        09-helper.xml 10-tables.xml Vorbis_I_spec.xml
                        footer.xml
  Log:
  Rough conversion of the vorbis specification to docbook xml. No makefile
  support yet, and the auxiliary are docs still to be done, but
  db2html/db2pdf produce reasonable output.

Revision  Changes    Path
1.1                  vorbis/doc/xml/01-introduction.xml

Index: 01-introduction.xml
===================================================================
<section id="vorbis-spec-intro">
<sectioninfo>
<releaseinfo>
 $Id: 01-introduction.xml,v 1.1 2002/10/12 20:37:11 giles Exp $
<emphasis>Last update to this document: July 18, 2002</emphasis>
</releaseinfo>
</sectioninfo>
<title>introduction and description</title>

<section>
<title>Overview</title>

<para>
This document provides a high level description of the Vorbis codec's
construction.  A bit-by-bit specification appears beginning in the <ulink
url="vorbis-spec-ref.html">packet specification and reference</ulink>
document.  The other reference documents assumes a high-level
understanding of the Vorbis decode process, which is provided in this
document.</para>

<section>
<title>Application</title>
<para>
Vorbis is a general purpose perceptual audio CODEC intended to allow
maximum encoder flexibility, thus allowing it to scale competitively
over an exceptionally wide range of bitrates.  At the high
quality/bitrate end of the scale (CD or DAT rate stereo, 16/24 bits),
it is in the same league as MPEG-2 and MPC.  Similarly, the 1.0
encoder can encode high-quality CD and DAT rate stereo at below 48kpbs
without resampling to a lower rate.  Vorbis is also intended for
lower and higher sample rates (from 8kHz telephony to 192kHz digital
masters) and a range of channel representations (monaural,
polyphonic, stereo, quadraphonic, 5.1, ambisonic, or up to 255
discrete channels).
</para>
</section>

<section>
<title>Classification</title>
<para>
Vorbis I is a forward-adaptive monolithic transform CODEC based on the
Modified Discrete Cosine Transform.  The codec is structured to allow
addition of a hybrid wavelet filterbank in Vorbis II to offer better
transient response and reproduction using a transform better suited to
localized time events.
</para>
</section>

<section>
<title>Assumptions</title>

<para>
The Vorbis CODEC design assumes a complex, psychoacoustically-aware
encoder and simple, low-complexity decoder. Vorbis decode is
computationally simpler than mp3, although it does require more
working memory as Vorbis has no static probability model; the vector
codebooks used in the first stage of decoding from the bitstream are
packed, in their entirety, into the Vorbis bitstream headers.  In
packed form, these codebooks occupy only a few kilobytes; the extent
to which they are pre-decoded into a cache is the dominant factor in
decoder memory usage.
</para>

<para>
Vorbis provides none of its own framing, synchronization or protection
against errors; it is solely a method of accepting input audio,
dividing it into individual frames and compressing these frames into
raw, unformatted 'packets'.  The decoder then accepts these raw
packets in sequence, decodes them, synthesizes audio frames from
them, and reassembles the frames into a facsimile of the original
audio stream. Vorbis is a free-form VBR codec and packets have no
minimum size, maximum size, or fixed/expected size.  Packets
are designed that they may be truncated (or padded) and remain
decodable; this is not to be considered an error condition and is used
extensively in bitrate management in peeling.  Both the transport
mechanism and decoder must allow that a packet may be any size, or
end before or after packet decode expects.</para>

<para>
Vorbis packets are thus intended to be used with a transport mechanism
that provides free-form framing, sync, positioning and error correction
in accordance with these design assumptions, such as Ogg (for file
transport) or RTP (for network multicast).  For purposes of a few
examples in this document, we will assume that Vorbis is to be
embedded in an Ogg stream specifically, although this is by no means a
requirement or fundamental assumption in the Vorbis design.</para>

<para>
<ulink url="vorbis-ogg.html">The specifications for embedding Vorbis into
an Ogg transport stream is in a separate document.</ulink></para>
</section>

<section>
<title>Codec Setup and Probability Model</title>

<para>
Vorbis's heritage is as a research CODEC and its current design
reflects a desire to allow multiple decades of continuous encoder
improvement before running out of room within the codec specification.
For these reasons, configurable aspects codec setup intentionally
lean toward the extreme of forward adaptive.</para>

<para>
The single most controversial design decision in Vorbis [and the most
unusual for a Vorbis developer to keep in mind] is that the entire
probability model of the codec, the Huffman and VQ codebooks, is
packed into the bitstream header along with extensive CODEC setup
parameters (often several hundred fields).  This makes it impossible,
as it would be with MPEG audio layers, to embed a simple frame type
flag in each audio packet, or begin decode at any frame in the stream
without having previously fetched the codec setup header. [Note:
Vorbis *can* initiate decode at any arbitrary packet within a
bitstream so long as the codec has been initialized/setup with the
setup headers].</para>

<para>
Thus, Vorbis headers are both required for decode to begin and
relatively large as bitstream headers go.  The header size is
unbounded, although for streaming a rule-of-thumb of 4kB or less is
recommended (and Xiph.Org's Vorbis encoder follows this suggestion).</para>

<para>
Our own design work indicates the the primary liability of the
required header is in mindshare; it is an unusual design and thus
causes some amount of complaint among engineers as this runs against
current design trends (and also points out limitations in some
existing software/interface designs, such as Windows' ACM codec
framework).  However, we find that it does not fundamentally limit
Vorbis's suitable application space.</para>

</section>

<section><title>Format Specification</title>
<para>
The Vorbis format is well-defined by its decode specification; any
encoder that produces packets that are correctly decoded by the
reference Vorbis decoder described below may be considered a proper
Vorbis encoder.  A decoder must faithfully and completely implement
the specification defined below [except where noted] to be considered
a proper Vorbis decoder.</para>
</section>

<section><title>Hardware Profile</title>
<para>
Although Vorbis decode is computationally simple, it may still run
into specific limitations of an embedded design.  For this reason,
embedded designs are allowed to deviate in limited ways from the
'full' decode specification yet still be certified compliant.  These
optional omissions are labelled in the spec where relevant.</para>
</section>

</section>

<section>
<title>Decoder Configuration</title>

<para>
Decoder setup consists of configuration of multiple, self-contained
component abstractions that perform specific functions in the decode
pipeline.  Each different component instance of a specific type is
semantically interchangeable; decoder configuration consists both of
internal component configuration, as well as arrangement of specific
instances into a decode pipeline.  Componentry arrangement is roughly
as follows:</para>

<mediaobject>
<imageobject>
 <imagedata fileref="components.png" format="PNG"/>
</imageobject>
<textobject>
  <phrase>decoder pipeline configuration</phrase>
</textobject>
</mediaobject>

<section><title>Global Config</title>
<para>
Global codec configuration consists of a few audio related fields
(sample rate, channels), Vorbis version (always '0' in Vorbis I),
bitrate hints, and the lists of component instances.  All other
configuration is in the context of specific components.</para>
</section>

<section><title>Mode</title>

<para>
Each Vorbis frame is coded according to a master 'mode'.  A bitstream
may use one or many modes.</para>

<para>
The mode mechanism is used to encode a frame according to one of
multiple possible methods with the intention of choosing a method best
suited to that frame.  Different modes are, e.g. how frame size
is changed from frame to frame. The mode number of a frame serves as a
top level configuration switch for all other specific aspects of frame
decode.</para>

<para>
A 'mode' configuration consists of a frame size setting, window type
(always 0, the Vorbis window, in Vorbis I), transform type (always
type 0, the MDCT, in Vorbis I) and a mapping number.  The mapping
number specifies which mapping configuration instance to use for
low-level packet decode and synthesis.</para>

</section>

<section><title>Mapping</title>

<para>
A mapping contains a channel coupling description and a list of
'submaps' that bundle sets of channel vectors together for grouped
encoding and decoding. These submaps are not references to external
components; the submap list is internal and specific to a mapping.</para>

<para>
A 'submap' is a configuration/grouping that applies to a subset of
floor and residue vectors within a mapping.  The submap functions as a
last layer of indirection such that specific special floor or residue
settings can be applied not only to all the vectors in a given mode,
but also specific vectors in a specific mode.  Each submap specifies
the proper floor and residue instance number to use for decoding that
submap's spectral floor and spectral residue vectors.</para>

<para>
As an example:</para>

<para>
Assume a Vorbis stream that contains six channels in the standard 5.1
format.  The sixth channel, as is normal in 5.1, is bass only.
Therefore it would be wasteful to encode a full-spectrum version of it
as with the other channels.  The submapping mechanism can be used to
apply a full range floor and residue encoding to channels 0 through 4,
and a bass-only representation to the bass channel, thus saving space.
In this example, channels 0-4 belong to submap 0 (which indicates use
of a full-range floor) and channel 5 belongs to submap 1, which uses a
bass-only representation.</para>

</section>

<section><title>Floor</title>

<para>
Vorbis encodes a spectral 'floor' vector for each PCM channel.  This
vector is a low-resolution representation of the audio spectrum for
the given channel in the current frame, generally used akin to a
whitening filter.  It is named a 'floor' because the Xiph.Org
reference encoder has historically used it as a unit-baseline for
spectral resolution.</para>

<para>
A floor encoding may be of two types.  Floor 0 uses a packed LSP
representation on a dB amplitude scale and Bark frequency scale.
Floor 1 represents the curve as a piecewise linear interpolated
representation on a dB amplitude scale and linear frequency scale.
The two floors are semantically interchangeable in
encoding/decoding. However, floor type 1 provides more stable
inter-frame behavior, and so is the preferred choice in all
coupled-stereo and high bitrate modes.  Floor 1 is also considerably
less expensive to decode than floor 0.</para>

<para>
Floor 0 is not to be considered deprecated, but it is of limited
modern use.  No known Vorbis encoder past Xiph.org's own beta 4 makes
use of floor 0.</para>

<para>
The values coded/decoded by a floor are both compactly formatted and
make use of entropy coding to save space.  For this reason, a floor
configuration generally refers to multiple codebooks in the codebook
component list.  Entropy coding is thus provided as an abstraction,
and each floor instance may choose from any and all available
codebooks when coding/decoding.</para>

</section>

<section><title>Residue</title>
<para>
The spectral residue is the fine structure of the audio spectrum
once the floor curve has been subtracted out.  In simplest terms, it
is coded in the bitstream using cascaded (multi-pass) vector
quantization according to one of three specific packing/coding
algorithms numbered 0 through 2.  The packing algorithm details are
configured by residue instance.  As with the floor components, the
final VQ/entropy encoding is provided by external codebook instances
and each residue instance may choose from any and all available
codebooks.</para>
</section>

<section><title>Codebooks</title>

<para>
Codebooks are a self-contained abstraction that perform entropy
decoding and, optionally, use the entropy-decoded integer value as an
offset into an index of output value vectors, returning the indicated
vector of values.</para>

<para>
The entropy coding in a Vorbis I codebook is provided by a standard
Huffman binary tree representation.  This tree is tightly packed using
one of several methods, depending on whether codeword lengths are
ordered or unordered, or the tree is sparse.</para>

<para>
The codebook vector index is similarly packed according to index
characteristic.  Most commonly, the vector index is encoded as a
single list of values of possible values that are then permuted into
a list of n-dimensional rows (lattice VQ).</para>

</section>

</section>

<p><section>
<title>High-level Decode Process</title>

<section>
<title>Decode setup</title> 

<para>
Before decoding can begin, a decoder must initialize using the
bitstream headers matching the stream to be decoded.  Vorbis uses
three header packets; all are required, in-order, by this
specification. Once set up, decode may begin at any audio packet
belonging to the Vorbis stream. In Vorbis I, all packets after the
three initial headers are audio packets. </para>

<para>
The header packets are, in order, the identification
header, the comments header, and the setup header.</para>

<section><title>Identification Header</title>
<para>
The identification header identifies the bitstream as Vorbis, Vorbis
version, and the simple audio characteristics of the stream such as
sample rate and number of channels.</para>
</section>

<section><title>Comment Header</title>
<para>
The comment header includes user text comments ["tags"] and a vendor
string for the application/library that produced the bitstream.  The
encoding of the comment header is described within this document; the
proper use of the comment fields is described in <ulink url="v-comment.html">the Ogg Vorbis comment field specification</ulink>.</para>
</section>

<section><title>Setup Header</title>
<para>
The setup header includes extensive CODEC setup information as well as
the complete VQ and Huffman codebooks needed for decode.</para>
</section>

</section>

<section><title>Decode Procedure</title>

<highlights>
<para>
The decoding and synthesis procedure for all audio packets is
fundamentally the same.
<orderedlist>
<listitem><simpara>decode packet type flag</simpara></listitem>
<listitem><simpara>decode mode number</simpara></listitem>
<listitem><simpara>decode window shape [long windows only]</simpara></listitem>
<listitem><simpara>decode floor</simpara></listitem>
<listitem><simpara>decode residue into residue vectors</simpara></listitem>
<listitem><simpara>inverse channel coupling of residue vectors</simpara></listitem>
<listitem><simpara>generate floor curve from decoded floor data</simpara></listitem>
<listitem><simpara>compute dot product of floor and residue, producing audio spectrum vector</simpara></listitem>
<listitem><simpara>inverse monolithic transform of audio spectrum vector, always an MDCT in Vorbis I</simpara></listitem>
<listitem><simpara>overlap/add left-hand output of transform with right-hand output of previous frame</simpara></listitem>
<listitem><simpara>store right hand-data from transform of current frame for future lapping.</simpara></listitem>
<listitem><simpara>if not first frame, return results of overlap/add as audio result of current frame</simpara></listitem>
</orderedlist>
</para>
</highlights>

<para>
Note that clever rearrangement of the synthesis arithmetic is
possible; as an example, one can take advantage of symmetries in the
MDCT to store the right-hand transform data of a partial MDCT for a
50% inter-frame buffer space savings, and then complete the transform
later before overlap/add with the next frame.  This optimization
produces entirely equivalent output and is naturally perfectly legal.
The decoder must be <emphasis>entirely mathematically equivalent</emphasis> to the
specification, it need not be a literal semantic implementation.</para>

<section><title>Packet type decode</title> 

<para>
Vorbis I uses four packet types. The first three packet types mark each
of the three Vorbis headers described above.  The fourth packet type
marks an audio packet. All others packet types are reserved; packets
marked with a reserved flag type should be ignored.</para>

<para>
Following the three header packets, all packets in a Vorbis I stream
are audio.  The first step of audio packet decode is to read and
verify the packet type; <emphasis>a non-audio packet when audio is expected
indicates stream corruption or a non-compliant stream. The decoder
must ignore the packet and not attempt decoding it to
audio</emphasis>.</para>

</section>

<p><section><title>Mode decode</title>
<para>
Vorbis allows an encoder to set up multiple, numbered packet 'modes',
as described earlier, all of which may be used in a given Vorbis
stream. The mode is encoded as an integer used as a direct offset into
the mode instance index. </para>
</section>

<section id="vorbis-spec-window">
<title>Window shape decode [long windows only]</title>

<para>
Vorbis frames may be one of two PCM sample sizes specified during
codec setup.  In Vorbis I, legal frame sizes are powers of two from 64
to 8192 samples.  Aside from coupling, Vorbis handles channels as
independent vectors and these frame sizes are in samples per channel.</para>

<para>
Vorbis uses an overlapping transform, namely the MDCT, to blend one
frame into the next, avoiding most inter-frame block boundary
artifacts.  The MDCT output of one frame is windowed according to MDCT
requirements, overlapped 50% with the output of the previous frame and
added.  The window shape assures seamless reconstruction.  </para>

<para>
This is easy to visualize in the case of equal sized-windows:</para>

<mediaobject>
<imageobject>
 <imagedata fileref="window1.png" format="PNG"/>
</imageobject>
<textobject>
 <phrase>overlap of two equal-sized windows</phrase>
</textobject>
</mediaobject>

<para>
And slightly more complex in the case of overlapping unequal sized
windows:</para>

<mediaobject>
<imageobject> 
 <imagedata fileref="window2.png" format="PNG"/>
</imageobject>
<textobject>
 <phrase>overlap of a long and a short window</phrase>
</textobject>
</mediaobject>

<para>
In the unequal-sized window case, the window shape of the long window
must be modified for seamless lapping as above.  It is possible to
correctly infer window shape to be applied to the current window from
knowing the sizes of the current, previous and next window.  It is
legal for a decoder to use this method; However, in the case of a long
window (short windows require no modification), Vorbis also codes two
flag bits to specify pre- and post- window shape.  Although not
strictly necessary for function, this minor redundancy allows a packet
to be fully decoded to the point of lapping entirely independently of
any other packet, allowing easier abstraction of decode layers as well
as allowing a greater level of easy parallelism in encode and
decode.</para>

<para>
A description of valid window functions for use with an inverse MDCT
can be found in the paper <ulink
url="http://www.iocon.com/resource/docs/ps/eusipco_corrected.ps">_The
use of multirate filter banks for coding of high quality digital
audio_</ulink>, by T. Sporer, K. Brandenburg and B. Edler.  Vorbis windows
all use the slope function 
  <inlineequation>
    <alt>y=sin(2PI*sin^2(x/n))</alt>
    <inlinemediaobject>
     <textobject>
      <phrase>$y = \sin(2\pi \, \sin^2(x/n))$</phrase>
     </textobject>
    </inlinemediaobject>
  </inlineequation>.
</para>

</section>

<section><title>floor decode</title>
<para>
Each floor is encoded/decoded in channel order, however each floor
belongs to a 'submap' that specifies which floor configuration to
use.  All floors are decoded before residue decode begins.</para>
</section>

<section><title>residue decode</title> 

<para>
Although the number of residue vectors equals the number of channels,
channel coupling may mean that the raw residue vectors extracted
during decode do not map directly to specific channels.  When channel
coupling is in use, some vectors will correspond to coupled magnitude
or angle.  The coupling relationships are described in the codec setup
and may differ from frame to frame, due to different mode numbers.</para>

<para>
Vorbis codes residue vectors in groups by submap; the coding is done
in submap order from submap 0 through n-1.  This differs from floors
which are coded using a configuration provided by submap number, but
are coded individually in channel order.</para>

</section>

<section><title>inverse channel coupling</title>

<para>
A detailed discussion of stereo in the Vorbis codec can be found in
the document <ulink url="stereo.html">_Stereo Channel Coupling in the
Vorbis CODEC_</ulink>.  Vorbis is not limited to only stereo coupling, but
the stereo document also gives a good overview of the generic coupling
mechanism.</para>

<para>
Vorbis coupling applies to pairs of residue vectors at a time;
decoupling is done in-place a pair at a time in the order and using
the vectors specified in the current mapping configuration.  The
decoupling operation is the same for all pairs, converting square
polar representation (where one vector is magnitude and the second
angle) back to Cartesian representation.</para>

<para>
After decoupling, in order, each pair of vectors on the coupling list
in, the resulting residue vector represents the fine spectral detail
of each output channel.</para>

</section>

<section><title>generate floor curve</title>

<para>
The decoder may choose to generate the floor curve at any appropriate
time.  It is reasonable to generate the output curve when the floor
data is decoded from the raw packet, or it can be generated after
inverse coupling and applied to the spectral residue directly,
combining generation and the dot product into one step and eliminating
some working space.</para>

<para>
Both floor 0 and floor 1 generate a linear-range, linear-domain output
vector to be multiplied (dot product) by the linear-range,
linear-domain spectral residue.</para>

</section>

<section><title>compute floor/residue dot product</title>

<para>
This step is straightforward; for each output channel, the decoder
multiplies the floor curve and residue vectors element by element,
producing the finished audio spectrum of each channel.</para>

<para>
One point is worth mentioning about this dot product; a common mistake
in a fixed point implementation might be to assume that a 32 bit
fixed-point representation for floor and residue and direct
multiplication of the vectors is sufficient for acceptable spectral
depth in all cases because it happens to mostly work with the current
Xiph.Org reference encoder.</para>

<para>
However, floor vector values can span ~140dB (~24 bits unsigned), and
the audio spectrum vector should represent a minimum of 120dB (~21
bits with sign), even when output is to a 16 bit PCM device.  For the
residue vector to represent full scale if the floor is nailed to
-140dB, it must be able to span 0 to +140dB.  For the residue vector
to reach full scale if the floor is nailed at 0dB, it must be able to
represent -140dB to +0dB.  Thus, in order to handle full range
dynamics, a residue vector may span -140dB to +140dB entirely within
spec.  A 280dB range is approximately 48 bits with sign; thus the
residue vector must be able to represent a 48 bit range and the dot
product must be able to handle an effective 48 bit times 24 bit
multiplication.  This range may be achieved using large (64 bit or
larger) integers, or implementing a movable binary point
representation.</para>

</section>

<section><title>inverse monolithic transform (MDCT)</title>

<para>
The audio spectrum is converted back into time domain PCM audio via an
inverse Modified Discrete Cosine Transform (MDCT).  A detailed
description of the MDCT is available in the paper <ulink
url="http://www.iocon.com/resource/docs/ps/eusipco_corrected.ps">_The
use of multirate filter banks for coding of high quality digital
audio_</ulink>, by T. Sporer, K. Brandenburg and B. Edler.</para>

<para>
Note that the PCM produced directly from the MDCT is not yet finished
audio; it must be lapped with surrounding frames using an appropriate
window (such as the Vorbis window) before the MDCT can be considered
orthogonal.</para>

</section>

<section><title>overlap/add data</title>
<para>
Windowed MDCT output is overlapped and added with the right hand data
of the previous window such that the 3/4 point of the previous window
is aligned with the 1/4 point of the current window (as illustrated in
the window overlap diagram). At this point, the audio data between the
center of the previous frame and the center of the current frame is
now finished and ready to be returned. </para>
</section>

<section><title>cache right hand data</title>
<para>
The decoder must cache the right hand portion of the current frame to
be lapped with the left hand portion of the next frame.
</para>
</section>

<section><title>return finished audio data</title>

<para>
The overlapped portion produced from overlapping the previous and
current frame data is finished data to be returned by the decoder.
This data spans from the center of the previous window to the center
of the current window.  In the case of same-sized windows, the amount
of data to return is one-half block consisting of and only of the
overlapped portions. When overlapping a short and long window, much of
the returned range is not actually overlap.  This does not damage
transform orthogonality.  Pay attention however to returning the
correct data range; the amount of data to be returned is:

<programlisting>
window_blocksize(previous_window)/4+window_blocksize(current_window)/4
</programlisting>

from the center of the previous window to the center of the current
window.</para>

<para>
Data is not returned from the first frame; it must be used to 'prime'
the decode engine.  The encoder accounts for this priming when
calculating PCM offsets; after the first frame, the proper PCM output
offset is '0' (as no data has been returned yet).</para>
</section>
</section>

</section>

</section>
<!-- end Vorbis I specification introduction and description -->

<p><p><p>1.1                  vorbis/doc/xml/02-bitpacking.xml

Index: 02-bitpacking.xml
===================================================================
<section id="vorbis-spec-bitpacking">
<sectioninfo>
<releaseinfo>
 $Id: 02-bitpacking.xml,v 1.1 2002/10/12 20:37:11 giles Exp $
 <emphasis>Last update to this document: July 14, 2002</emphasis>
</releaseinfo>
</sectioninfo>
<title>bitpacking convention</title>

<p><section>
<title>Overview</title>

<para>
The Vorbis codec uses relatively unstructured raw packets containing
arbitrary-width binary integer fields.  Logically, these packets are a
bitstream in which bits are coded one-by-one by the encoder and then
read one-by-one in the same monotonically increasing order by the
decoder.  Most current binary storage arrangements group bits into a
native word size of eight bits (octets), sixteen bits, thirty-two bits
or, less commonly other fixed word sizes.  The Vorbis bitpacking
convention specifies the correct mapping of the logical packet
bitstream into an actual representation in fixed-width words.
</para>

<section><title>octets, bytes and words</title>

<para>
In most contemporary architectures, a 'byte' is synonymous with an
'octet', that is, eight bits.  This has not always been the case;
seven, ten, eleven and sixteen bit 'bytes' have been used.  For
purposes of the bitpacking convention, a byte implies the native,
smallest integer storage representation offered by a platform.  On
modern platforms, this is generally assumed to be eight bits (not
necessarily because of the processor but because of the
filesystem/memory architecture.  Modern filesystems invariably offer
bytes as the fundamental atom of storage).  A 'word' is an integer
size that is a grouped multiple of this smallest size.</para>

<para>
The most ubiquitous architectures today consider a 'byte' to be an
octet (eight bits) and a word to be a group of two, four or eight
bytes (16,32 or 64 bits).  Note however that the Vorbis bitpacking
convention is still well defined for any native byte size; Vorbis uses
the native bit-width of a given storage system. This document assumes
that a byte is one octet for purposes of example.</para>

</section><section><title>bit order</title>

<para>
A byte has a well-defined 'least significant' bit [LSb], which is the
only bit set when the byte is storing the two's complement integer
value +1.  A byte's 'most significant' bit [MSb] is at the opposite
end of the byte. Bits in a byte are numbered from zero at the LSb to
<emphasis>n</emphasis> (<emphasis>n</emphasis>=7 in an octet) for the
MSb.</para>

</section>

<section><title>byte order</title>

<para>
Words are native groupings of multiple bytes.  Several byte orderings
are possible in a word; the common ones are 3-2-1-0 ('big endian' or
'most significant byte first' in which the highest-valued byte comes
first), 0-1-2-3 ('little endian' or 'least significant byte first' in
which the lowest value byte comes first) and less commonly 3-1-2-0 and
0-2-1-3 ('mixed endian').</para>

<para>
The Vorbis bitpacking convention specifies storage and bitstream
manipulation at the byte, not word, level, thus host word ordering is
of a concern only during optimization when writing high performance
code that operates on a word of storage at a time rather than by byte.
Logically, bytes are always coded and decoded in order from byte zero
through byte <emphasis>n</emphasis>.</para>

</section>

<section><title>coding bits into byte sequences</title>

<para>
The Vorbis codec has need to code arbitrary bit-width integers, from
zero to 32 bits wide, into packets.  These integer fields are not
aligned to the boundaries of the byte representation; the next field
is written at the bit position that the previous field ends.</para>

<para>
The encoder logically packs integers by writing the LSb of an binary
integer to the logical bitstream first, followed by next least
significant bit, etc, until the requested number of bits have been
coded.  When packing the bits into bytes, the encoder begins by
placing the LSb of the integer to be written into the least
significant unused bit position of the destination byte, followed by
the next-least significant bit of the source integer and so on up to
the requested number of bits.  When all bits of the destination byte
have been filled, encoding continues by zeroing all bits of the next
byte and writing the next bit into the bit position 0 of that byte.
Decoding follows the same process as encoding, but by reading bits
from the byte stream and reassembling them into integers.</para>

</section>

<section><title>signedness</title>

<para>
The signedness of a specific number resulting from decode is to be
interpreted by the decoder given decode context.  That is, the three
bit binary pattern 'b111' can be taken to represent either 'seven' as
an unsigned integer, or '-1' as a signed, two's complement integer.
The encoder and decoder are responsible for knowing if fields are to
be treated as signed or unsigned.</para>

</section>

<section><title>coding example</title>

<para>
Code the 4 bit integer value '12' [b1100] into an empty bytestream.
Bytestream result:

<screen>  
              |
              V

        7 6 5 4 3 2 1 0
byte 0 [0 0 0 0 1 1 0 0]  <-
byte 1 [               ]
byte 2 [               ]
byte 3 [               ]
             ...
byte n [               ]  bytestream length == 1 byte

</screen>
</para>

<para>
Continue by coding the 3 bit integer value '-1' [b111]:

<screen>
        |
        V

        7 6 5 4 3 2 1 0
byte 0 [0 1 1 1 1 1 0 0]  <-
byte 1 [               ]
byte 2 [               ]
byte 3 [               ]
             ... 
byte n [               ]  bytestream length == 1 byte
</screen>
</para>

<para>
Continue by coding the 7 bit integer value '17' [b0010001]:

<screen>
          |
          V    

        7 6 5 4 3 2 1 0
byte 0 [1 1 1 1 1 1 0 0]
byte 1 [0 0 0 0 1 0 0 0]  <-
byte 2 [               ]
byte 3 [               ]
             ...
byte n [               ]  bytestream length == 2 bytes
                          bit cursor == 6
</screen>
</para>

<para>
Continue by coding the 13 bit integer value '6969' [b110 11001110 01]:

<screen>
                |
                V

        7 6 5 4 3 2 1 0
byte 0 [1 1 1 1 1 1 0 0]
byte 1 [0 1 0 0 1 0 0 0]
byte 2 [1 1 0 0 1 1 1 0]
byte 3 [0 0 0 0 0 1 1 0]  <-
             ...
byte n [               ]  bytestream length == 4 bytes

</screen>
</para>

</section>

<section><title>decoding example</title>

<para>
Reading from the beginning of the bytestream encoded in the above example:

<screen>
                      |
                      V
                      
        7 6 5 4 3 2 1 0
byte 0 [1 1 1 1 1 1 0 0]  <-
byte 1 [0 1 0 0 1 0 0 0]
byte 2 [1 1 0 0 1 1 1 0]
byte 3 [0 0 0 0 0 1 1 0]  bytestream length == 4 bytes

</screen>
</para>

<para>
We read two, two-bit integer fields, resulting in the returned numbers
'b00' and 'b11'.  Two things are worth noting here:

<itemizedlist>
<listitem>
<para>Although these four bits were originally written as a single
four-bit integer, reading some other combination of bit-widths from the
bitstream is well defined.  There are no artificial alignment
boundaries maintained in the bitstream.</para>
</listitem>
<listitem>
<para>The second value is the
two-bit-wide integer 'b11'.  This value may be interpreted either as
the unsigned value '3', or the signed value '-1'.  Signedness is
dependent on decode context.</para>
</listitem>
</itemizedlist>
</para>

</section>

<section><title>end-of-packet alignment</title>

<para>
The typical use of bitpacking is to produce many independent
byte-aligned packets which are embedded into a larger byte-aligned
container structure, such as an Ogg transport bitstream.  Externally,
each bytestream (encoded bitstream) must begin and end on a byte
boundary.  Often, the encoded bitstream is not an integer number of
bytes, and so there is unused (uncoded) space in the last byte of a
packet.</para>

<para>
Unused space in the last byte of a bytestream is always zeroed during
the coding process.  Thus, should this unused space be read, it will
return binary zeroes.</para>

<para>
Attempting to read past the end of an encoded packet results in an
'end-of-packet' condition.  End-of-packet is not to be considered an
error; it is merely a state indicating that there is insufficient
remaining data to fulfill the desired read size.  Vorbis uses truncated
packets as a normal mode of operation, and as such, decoders must
handle reading past the end of a packet as a typical mode of
operation. Any further read operations after an 'end-of-packet'
condition shall also return 'end-of-packet'.</para>

</section>

<section><title> reading zero bits</title>

<para>
Reading a zero-bit-wide integer returns the value '0' and does not
increment the stream cursor.  Reading to the end of the packet (but
not past, such that an 'end-of-packet' condition has not triggered)
and then reading a zero bit integer shall succeed, returning 0, and
not trigger an end-of-packet condition.  Reading a zero-bit-wide
integer after a previous read sets 'end-of-packet' shall also fail
with 'end-of-packet'.</para>

</section>

</section>
</section>

<p><p><p>1.1                  vorbis/doc/xml/03-codebook.xml

Index: 03-codebook.xml
===================================================================
<section id="vorbis-spec-codebook">
<sectioninfo>
<releaseinfo>
 $Id: 03-codebook.xml,v 1.1 2002/10/12 20:37:11 giles Exp $
 <emphasis>Last update to this document: August 8, 2002</emphasis>
</releaseinfo>
</sectioninfo>
<title>probability model and codebooks</title>

<section>
<title>Overview</title>

<para>
Unlike practically every other mainstream audio codec, Vorbis has no
statically configured probability model, instead packing all entropy
decoding configuration, VQ and Huffman, into the bitstream itself in
the third header, the codec setup header.  This packed configuration
consists of multiple 'codebooks', each containing a specific
Huffman-equivalent representation for decoding compressed codewords as
well as an optional lookup table of output vector values to which a
decoded Huffman value is applied as an offset, generating the final
decoded output corresponding to a given compressed codeword.</para>

<section><title>bitwise operation</title>
<para>
The codebook mechanism is built on top of the
<ulink url="vorbis-spec-bitpack.html">Vorbis bitpacker</ulink>; both the
codebooks themselves and the codewords they decode are unrolled from a
packet as a series of arbitrary-width values read from the stream
according to the <ulink url="vorbis-spec-bitpack.html">Vorbis bitpacking
convention</ulink>.</para>
</section>

</section>

<section>
<title>Packed Codebook Format</title>

<para>
For purposes of the below examples, we assume that the storage
system's native byte width is eight bits.  This is not universally
true; see <ulink url="vorbis-spec-bitpack.html">the Vorbis bitpacking
convention</ulink> document for discussion relating to non-eight-bit
bytes.</para>

<section><title>codebook decode</title>

<para>
A codebook begins with a 24 bit sync pattern, 0x564342:

<screen>
byte 0: [ 0 1 0 0 0 0 1 0 ] (0x42)
byte 1: [ 0 1 0 0 0 0 1 1 ] (0x43)
byte 2: [ 0 1 0 1 0 1 1 0 ] (0x56)
</screen></para>

<para>
16 bit <varname>[codebook_dimensions]</varname> and 24 bit <varname>[codebook_entries]</varname> fields:

<screen>

byte 3: [ X X X X X X X X ] 
byte 4: [ X X X X X X X X ] [codebook_dimensions] (16 bit unsigned)

byte 5: [ X X X X X X X X ] 
byte 6: [ X X X X X X X X ] 
byte 7: [ X X X X X X X X ] [codebook_entries] (24 bit unsigned)

</screen></para>

<para>
Next is the <varname>[ordered]</varname> bit flag:

<screen>

byte 8: [               X ] [ordered] (1 bit)

</screen></para>

<para>
Each entry, numbering a
total of <varname>[codebook_entries]</varname>, is assigned a codeword length.
We now read the list of codeword lengths and store these lengths in
the array <varname>[codebook_codeword_lengths]</varname>. Decode of lengths is
according to whether the <varname>[ordered]</varname> flag is set or unset.

<itemizedlist>
<listitem>
  <para>If the <varname>[ordered]</varname> flag is unset, the codeword list is not
  length ordered and the decoder needs to read each codeword length
  one-by-one.</para> 

  <para>The decoder first reads one additional bit flag, the
  <varname>[sparse]</varname> flag.  This flag determines whether or not the
  codebook contains unused entries that are not to be included in the
  codeword decode tree:

<screen>
byte 8: [             X 1 ] [sparse] flag (1 bit)
</screen></para>

<para>
  The decoder now performs for each of the <varname>[codebook_entries]</varname>
  code book entries:

<screen>
  
  1) if([sparse] is set){

         2) [flag] = read one bit;
         3) if([flag] is set){

              4) [length] = read a five bit unsigned integer;
              5) codeword length for this entry is [length]+1;

            } else {

              6) this entry is unused.  mark it as such.

            }

     } else the sparse flag is not set {

        7) [length] = read a five bit unsigned integer;
        8) the codeword length for this entry is [length]+1;
        
     }

</screen></para>
</listitem>
<listitem>
  <para>If the <varname>[ordered]</varname> flag is set, the codeword list for this
  codebook is encoded in ascending length order.  Rather than reading
  a length for every codeword, the encoder reads the number of
  codewords per length.  That is, beginning at entry zero:

<screen>
  1) [current_entry] = 0;
  2) [current_length] = read a five bit unsigned integer and add 1;
  3) [number] = read <ulink
url="helper.html#ilog">ilog</ulink>([codebook_entries] -
[current_entry])
bits as an unsigned integer
  4) set the entries [current_entry] through [current_entry]+[number]-1, inclusive, 
     of the [codebook_codeword_lengths] array to [current_length]
  5) set [current_entry] to [number] + [current_entry]
  6) increment [current_length] by 1
  7) if [current_entry] is greater than [codebook_entries] ERROR CONDITION; the decoder will
     not be able to read this stream.
  8) if [current_entry] is less than [codebook_entries], repeat process starting at 3)
  9) done.
</screen></para>
</listitem>
</itemizedlist>

After all codeword lengths have been decoded, the decoder reads the
vector lookup table.  Vorbis I supports three lookup types:
<orderedlist>
<listitem>
<simpara>No lookup</simpara>
</listitem><listitem>
<simpara>Implicitly populated value mapping (lattice VQ)</simpara>
</listitem><listitem>
<simpara>Explicitly populated value mapping (tessellated or 'foam'
VQ)</simpara>
</listitem>
</orderedlist>
</para>

<para>
The lookup table type is read as a four bit unsigned integer:
<screen>
  1) [codebook_lookup_type] = read four bits as an unsigned integer
</screen></para>

<para>
Codebook decode precedes according to <varname>[codebook_lookup_type]</varname>:
<itemizedlist>
<listitem>
<para>Lookup type zero indicates no lookup to be read.  Proceed past
lookup decode.</para>
</listitem><listitem>
<para>Lookup types one and two are similar, differing only in the
number of lookup values to be read.  Lookup type one reads a list of
values that are permuted in a set pattern to build a list of vectors,
each vector of order <varname>[codebook_dimensions]</varname> scalars.  Lookup
type two builds the same vector list, but reads each scalar for each
vector explicitly, rather than building vectors from a smaller list of
possible scalar values.  Lookup decode proceeds as follows:

<screen>
  1) [codebook_minimum_value] =
<ulink url="helper.html#float32_unpack">float32_unpack</ulink>( read 32
bits as an unsigned integer) 
  2) [codebook_delta_value] = <ulink url="helper.html#float32_unpack">float32_unpack</ulink>( read 32 bits as
an unsigned integer) 
  3) [codebook_value_bits] = read 4 bits as an unsigned integer and add 1
  4) [codebook_sequence_p] = read 1 bit as a boolean flag

  if ( [codebook_lookup_type] is 1 ) {
   
     5) [codebook_lookup_values] =
<ulink url="helper.html#lookup1_values">lookup1_values</ulink>(
<varname>[codebook_entries]</varname>, <varname>[codebook_dimensions]</varname> )

  } else {

     6) [codebook_lookup_values] = <varname>[codebook_entries]</varname> * <varname>[codebook_dimensions]</varname>

  }

  7) read a total of [codebook_lookup_values] unsigned integers of [codebook_value_bits] each; 
     store these in order in the array [codebook_multiplicands]

</screen></para>
</listitem><listitem>
<para>A <varname>[codebook_lookup_type]</varname> of greater than two is reserved
and indicates
a stream that's not decodable by the specification in this
document.</para>
</listitem>
</itemizedlist>
</para>

<para>
An 'end of packet' during any read operation in the above steps is
considered an error condition rendering the stream undecodable.</para>

<section><title>Huffman decision tree representation</title>

<para>
The <varname>[codebook_codeword_lengths]</varname> array and
<varname>[codebook_entries]</varname> value uniquely define the Huffman decision
tree used for entropy decoding.</para>

<para>
Briefly, each used codebook entry (recall that length-unordered
codebooks support unused codeword entries) is assigned, in order, the
lowest valued unused binary Huffman codeword possible.  Assume the
following codeword length list:

<screen>
entry 0: length 2
entry 1: length 4
entry 2: length 4
entry 3: length 4
entry 4: length 4
entry 5: length 2
entry 6: length 3
entry 7: length 3
</screen></para>

<para>
Assigning codewords in order (lowest possible value of the appropriate
length to highest) results in the following codeword list:

<screen>
entry 0: length 2 codeword 00
entry 1: length 4 codeword 0100
entry 2: length 4 codeword 0101
entry 3: length 4 codeword 0110
entry 4: length 4 codeword 0111
entry 5: length 2 codeword 10
entry 6: length 3 codeword 110
entry 7: length 3 codeword 111
</screen></para>

<p><note>
<para>
Unlike most binary numerical values in this document, we
intend the above codewords to be read and used bit by bit from left to
right, thus the codeword '001' is the bit string 'zero, zero, one'.
When determining 'lowest possible value' in the assignment definition
above, the leftmost bit is the MSb.</para>
</note>

<para>
It is clear that the codeword length list represents a Huffman
decision tree with the entry numbers equivalent to the leaves numbered
left-to-right:

<mediaobject>
<imageobject>
 <imagedata fileref="hufftree.png" format="PNG"/>
</imageobject>
<textobject>
 <phrase>[huffman tree illustration]</phrase>
</textobject>
</mediaobject>
</para>

<para>
As we assign codewords in order, we see that each choice constructs a
new leaf in the leftmost possible position.</para>

<para>
Note that it's possible to underspecify or overspecify a Huffman tree
via the length list.  In the above example, if codeword seven were
eliminated, it's clear that the tree is unfinished:

<mediaobject>
<imageobject>
 <imagedata fileref="hufftree-under.png" format="PNG"/>
</imageobject>
<textobject>
 <phrase>[underspecified huffman tree illustration]</phrase>
</textobject>
</mediaobject>
</para>

<para>
Similarly, in the original codebook, it's clear that the tree is fully
populated and a ninth codeword is impossible.  Both underspecified and
overspecified trees are an error condition rendering the stream
undecodable.</para>

<para>
Codebook entries marked 'unused' are simply skipped in the assigning
process.  They have no codeword and do not appear in the decision
tree, thus it's impossible for any bit pattern read from the stream to
decode to that entry number.</para>

</section>

<section><title>VQ lookup table vector representation</title>

<para>
Unpacking the VQ lookup table vectors relies on the following values:
<programlisting>
the [codebook_multiplicands] array
[codebook_minimum_value]
[codebook_delta_value]
[codebook_sequence_p]
[codebook_lookup_type]
[codebook_entries]
[codebook_dimensions]
[codebook_lookup_values]
</programlisting>
</para>

<para>
Decoding [unpacking] a specific vector in the vector lookup table
proceeds according to <varname>[codebook_lookup_type]</varname>.  The unpacked
vector values are what a codebook would return during audio packet
decode in a VQ context.</para>

<section><title>Vector value decode: Lookup type 1</title>

<para>
Lookup type one specifies a lattice VQ lookup table built
algorithmically from a list of scalar values.  Calculate [unpack] the
final values of a codebook entry vector from the entries in
<varname>[codebook_multiplicands]</varname> as follows (<varname>[value_vector]</varname>
is the output vector representing the vctor of values for entry number
<varname>[lookup_offset]</varname> in this codebook):

<screen>
  1) [last] = 0;
  2) [index_divisor] = 1;
  3) iterate [i] over the range 0 ... [codebook_dimensions]-1 (once for each scalar value in the value vector) {
       
       4) [multiplicand_offset] = ( [lookup_offset] divided by [index_divisor] using integer 
          division ) integer modulo [codebook_lookup_values]

       5) vector [value_vector] element [i] = 
            ( [codebook_multiplicands] array element number [multiplicand_offset] ) *
            [codebook_delta_value] + [codebook_minimum_value] + [last];

       6) if ( [codebook_sequence_p] is set ) then set [last] = vector [value_vector] element [i]

       7) [index_divisor] = [index_divisor] * [codebook_lookup_values]

     }
 
  8) vector calculation completed.
</screen></para>

</section>

<section><title>Vector value decode: Lookup type 2</title>

<para>
Lookup type two specifies a VQ lookup table in which each scalar in
each vector is explicitly set by the <varname>[codebook_multiplicands]</varname>
array in a one-to-one mapping.  Calculate [unpack] the
final values of a codebook entry vector from the entries in
<varname>[codebook_multiplicands]</varname> as follows (<varname>[value_vector]</varname>
is the output vector representing the vctor of values for entry number
<varname>[lookup_offset]</varname> in this codebook):

<screen>
  1) [last] = 0;
  2) [multiplicand_offset] = [lookup_offset] * [codebook_dimensions]
  3) iterate [i] over the range 0 ... [codebook_dimensions]-1 (once for each scalar value in the value vector) {

       4) vector [value_vector] element [i] = 
            ( [codebook_multiplicands] array element number [multiplicand_offset] ) *
            [codebook_delta_value] + [codebook_minimum_value] + [last];

       5) if ( [codebook_sequence_p] is set ) then set [last] = vector [value_vector] element [i] 

       6) increment [multiplicand_offset]

     }
 
  7) vector calculation completed.
</screen></para>

</section>

</section>

</section>

</section>

<section>
<title>Use of the codebook abstraction</title>

<para>
The decoder uses the codebook abstraction much as it does the
bit-unpacking convention; a specific codebook reads a
codeword from the bitstream, decoding it into an entry number, and then
returns that entry number to the decoder (when used in a scalar
entropy coding context), or uses that entry number as an offset into
the VQ lookup table, returning a vector of values (when used in a context
desiring a VQ value). Scalar or VQ context is always explicit; any call
to the codebook mechanism requests either a scalar entry number or a
lookup vector.</para>

<para>
Note that VQ lookup type zero indicates that there is no lookup table;
requesting decode using a codebook of lookup type 0 in any context
expecting a vector return value (even in a case where a vector of
dimension one) is forbidden.  If decoder setup or decode requests such
an action, that is an error condition rendering the packet
undecodable.</para>

<para>
Using a codebook to read from the packet bitstream consists first of
reading and decoding the next codeword in the bitstream. The decoder
reads bits until the accumulated bits match a codeword in the
codebook.  This process can be though of as logically walking the
Huffman decode tree by reading one bit at a time from the bitstream,
and using the bit as a decision boolean to take the 0 branch (left in
the above examples) or the 1 branch (right in the above examples).
Walking the tree finishes when the decode process hits a leaf in the
decision tree; the result is the entry number corresponding to that
leaf.  Reading past the end of a packet propagates the 'end-of-stream'
condition to the decoder.</para>

<para>
When used in a scalar context, the resulting codeword entry is the
desired return value.</para>

<para>
When used in a VQ context, the codeword entry number is used as an
offset into the VQ lookup table.  The value returned to the decoder is
the vector of scalars corresponding to this offset.</para>

</section>

</section>

<!-- end section of probablity model and codebooks -->

<p><p>1.1                  vorbis/doc/xml/04-codec.xml

Index: 04-codec.xml
===================================================================
<section id="vorbis-spec-codec">
<sectioninfo>
<releaseinfo>
 $Id: 04-codec.xml,v 1.1 2002/10/12 20:37:11 giles Exp $
 <emphasis>Last update to this document: September 20, 2002</emphasis>
</releaseinfo>
</sectioninfo>
<title>codec setup and packet decode</title>

<section>
<title>Overview</title>

<para>
This document serves as the top-level reference document for the
bit-by-bit decode specification of Vorbis I.  This document assumes a
high-level understanding of the Vorbis decode process, which is
provided in the section <xref linkend="vorbis-spec-intro"/>.  <xref
linkend="vorbis-spec-bitpacking"/> covers reading and writing bit fields from
and to bitstream packets.</para>

</section>

<section>
<title>Header decode and decode setup</title>

<para>
A Vorbis bitstream begins with three header packets. The header
packets are, in order, the identification header, the comments header,
and the setup header. All are required for decode compliance.  An
end-of-packet condition during decoding the first or third header
packet renders the stream undecodable.  End-of-packet decoding the
comment header is a non-fatal error condition.</para>

<section><title>Common header decode</title>

<para>
Each header packet begins with the same header fields.
</para>

<screen>
  1) [packet_type] : 8 bit value
  2) 0x76, 0x6f, 0x72, 0x62, 0x69, 0x73: the characters 'v','o','r','b','i','s' as six octets
</screen>

<para>
Decode continues according to packet type; the identification header
is type 1, the comment header type 3 and the setup header type 5
(these types are all odd as a packet with a leading single bit of '0'
is an audio packet).  The packets must occur in the order of
identification, comment, setup.</para>

</section>

<section><title>Identification Header</title>

<para>
The identification header is a short header of only a few fields used
to declare the stream definitively as Vorbis, and provide a few externally
relevant pieces of information about the audio stream. The
identification header is coded as follows:</para>

<screen>
 1) [vorbis_version] = read 32 bits as unsigned integer
 2) [audio_channels] = read 8 bit integer as unsigned
 3) [audio_sample_rate] = read 32 bits as unsigned integer
 4) [bitrate_maximum] = read 32 bits as signed integer
 5) [bitrate_nominal] = read 32 bits as signed integer
 6) [bitrate_minimum] = read 32 bits as signed integer
 7) [blocksize_0] = 2 exponent (read 4 bits as unsigned integer)
 8) [blocksize_1] = 2 exponent (read 4 bits as unsigned integer)
 9) [framing_flag] = read one bit
</screen>

<para>
<varname>[vorbis_version]</varname> is to read '0' in order to be compatible
with this document.  Both <varname>[audio_channels]</varname> and
<varname>[audio_sample_rate]</varname> must read greater than zero.  Allowed final
blocksize values are 64, 128, 256, 512, 1024, 2048, 4096 and 8192 in
Vorbis I.  <varname>[blocksize_0]</varname> must be less than or equal to
<varname>[blocksize_1]</varname>.  The framing bit must be nonzero.  Failure to
meet any of these conditions renders a stream undecodable.</para>

<para>
The bitrate fields above are used only as hints. The nominal bitrate
field especially may be considerably off in purely VBR streams.  The
fields are meaningful only when greater than zero.</para>

<itemizedlist>
  <listitem><simpara>All three fields set to the same value implies a fixed rate, or tightly bounded, nearly fixed-rate bitstream</simpara></listitem>
  <listitem><simpara>Only nominal set implies a VBR or ABR stream that averages the nominal bitrate</simpara></listitem>
  <listitem><simpara>Maximum and or minimum set implies a VBR bitstream that obeys the bitrate limits</simpara></listitem>
  <listitem><simpara>None set indicates the encoder does not care to speculate.</simpara></listitem>
</itemizedlist>

</section>

<section><title>Comment Header</title>
<para>
Comment header decode and data specification is covered in
<xref linkend="vorbis-spec-comment"/>.</para>
</section>

<section><title>Setup Header</title>

<para>
Vorbis codec setup is configurable to an extreme degree:

<mediaobject>
<imageobject>
 <imagedata fileref="components.png" format="PNG"/>
</imageobject>
<textobject>
 <phrase>[decoder pipeline configuration]</phrase>
</textobject>
</mediaobject>
</para>

<para>
The setup header contains the bulk of the codec setup information
needed for decode.  The setup header contains, in order, the lists of
codebook configurations, time-domain transform configurations
(placeholders in Vorbis I), floor configurations, residue
configurations, channel mapping configurations and mode
configurations. It finishes with a framing bit of '1'.  Header decode
proceeds in the following order:</para>

<section><title>codebooks</title>

<orderedlist>
<listitem><simpara><varname>[vorbis_codebook_count]</varname> = read eight bits as unsigned integer and add one</simpara></listitem>
<listitem><simpara>Decode <varname>[vorbis_codebook_count]</varname> codebooks in order as defined
in <xref linkend="vorbis-spec-codebook"/>.  Save each configuration, in
order, in an array of
codebook configurations <varname>[vorbis_codebook_configurations]</varname>.</simpara></listitem>
</orderedlist>

</section>

<section><title>time domain transforms</title>

<para>
These hooks are placeholders in Vorbis I.  Nevertheless, the
configuration placeholder values must be read to maintain bitstream
sync.</para>

<orderedlist>
<listitem><simpara><varname>[vorbis_time_count]</varname> = read 6 bits as unsigned integer and add one</simpara></listitem>
<listitem><simpara>read <varname>[vorbis_time_count]</varname> 16 bit values; each value should be zero.  If any value is nonzero, this is an error condition and the stream is undecodable.</simpara></listitem>
</orderedlist>

</section>

<section><title>floors</title>

<para>
Vorbis uses two floor types; header decode is handed to the decode
abstraction of the appropriate type.</para>

<orderedlist>
 <listitem><simpara><varname>[vorbis_floor_count]</varname> = read 6 bits as unsigned integer and add one</simpara></listitem>
 <listitem><para>For each <varname>[i]</varname> of <varname>[vorbis_floor_count]</varname> floor numbers:
  <orderedlist>
   <listitem><simpara>read the floor type: vector <varname>[vorbis_floor_types]</varname> element <varname>[i]</varname> =
read 16 bits as unsigned integer</simpara></listitem>
   <listitem><simpara>If the floor type is zero, decode the floor
configuration as defined in <xref linkend="vorbis-spec-floor0"/>; save
this
configuration in slot <varname>[i]</varname> of the floor configuration array <varname>[vorbis_floor_configurations]</varname>.</simpara></listitem>
   <listitem><simpara>If the floor type is one,
decode the floor configuration as defined in <xref
linkend="vorbis-spec-floor1"/>; save this configuration in slot <varname>[i]</varname> of the floor configuration array <varname>[vorbis_floor_configurations]</varname>.</simpara></listitem>
   <listitem><simpara>If the the floor type is greater than one, this stream is undecodable; ERROR CONDITION</simpara></listitem>
  </orderedlist>
 </para></listitem>
</orderedlist>

</section>

<section><title>residues</title>

<para>
Vorbis uses three residue types; header decode of each type is identical.
</para>

<orderedlist>
<listitem><simpara><varname>[vorbis_residue_count]</varname> = read 6 bits as unsigned integer and add one
</simpara></listitem>
<listitem><para>For each of <varname>[vorbis_residue_count]</varname> residue numbers:
 <orderedlist>
  <listitem><simpara>read the residue type; vector <varname>[vorbis_residue_types]</varname> element <varname>[i]</varname> = read 16 bits as unsigned integer</simpara></listitem>
  <listitem><simpara>If the residue type is zero,
one or two, decode the residue configuration as defined in <xref
linkend="vorbis-spec-residue"/>; save this configuration in slot <varname>[i]</varname> of the residue configuration array <varname>[vorbis_residue_configurations]</varname>.</simpara></listitem>
  <listitem><simpara>If the the residue type is greater than two, this stream is undecodable; ERROR CONDITION</simpara></listitem>
 </orderedlist>
</para></listitem>
</orderedlist>

</section>

<section><title>mappings</title>

<para>
Mappings are used to set up specific pipelines for encoding
multichannel audio with varying channel mapping applications. Vorbis I
uses a single mapping type (0), with implicit PCM channel mappings.</para>

<orderedlist>
 <listitem><simpara><varname>[vorbis_mapping_count]</varname> = read 6 bits as unsigned integer and add one</simpara></listitem>
 <listitem><simpara>For each <varname>[i]</varname>
of <varname>[vorbis_mapping_count]</varname> mapping numbers:</simpara>
  <orderedlist>
   <listitem><simpara>read the mapping type: 16 bits as unsigned integer.  There's no reason to save the mapping type in Vorbis I.</simpara></listitem>
   <listitem><simpara>If the mapping type is nonzero, the stream is undecodable</simpara></listitem>
   <listitem><para>If the mapping type is zero:
    <orderedlist>
     <listitem><simpara>read 1 bit as a boolean flag</simpara>
      <orderedlist>
       <listitem><simpara>if set, <varname>[vorbis_mapping_submaps]</varname> = read 4 bits as unsigned integer and add one</simpara></listitem>
       <listitem><simpara>if unset, <varname>[vorbis_mapping_submaps]</varname> = 1</simpara></listitem>
      </orderedlist>
     </listitem>
     <listitem><simpara>read 1 bit as a boolean flag; if set, square polar channel mapping is in use:</simpara>
      <orderedlist>
       <listitem><simpara><varname>[vorbis_mapping_coupling_steps]</varname>= read 8 bits as unsigned integer and add one</simpara></listitem>
       <listitem><simpara>for <varname>[j]</varname> each of <varname>[vorbis_mapping_coupling_steps]</varname>
steps:</simpara>
        <orderedlist>
         <listitem><simpara>vector <varname>[vorbis_mapping_magnitude]</varname> element
<varname>[j]</varname>= read <link linkend="vorbis-spec-ilog">ilog</link>([audio_channels] - 1) bits as
unsigned integer</simpara></listitem>
         <listitem><simpara>vector <varname>[vorbis_mapping_angle]</varname> element <varname>[j]</varname>=
read <link linkend="vorbis-spec-ilog">ilog</link>([audio_channels] - 1)
bits as unsigned integer</simpara></listitem>
         <listitem><simpara>the numbers read in the above two steps are channel numbers representing the channel to treat as
magnitude and the channel to treat as angle, respectively.  If for any coupling step the angle channel number equals the
magnitude channel number, the magnitude channel number is greater than <varname>[audio_channels]</varname>-1, or the angle
channel is greater than <varname>[audio_channels]</varname>-1, the stream is undecodable.</simpara></listitem>
        </orderedlist>
       </listitem>
      </orderedlist>
     </listitem>
     <listitem><simpara>read 2 bits (reserved field); if the value is nonzero, the stream is undecodable</simpara></listitem>
     <listitem><simpara>if <varname>[vorbis_mapping_submaps]</varname> is greater than one, we read channel multiplex
settings.  For each <varname>[j]</varname> of <varname>[audio_channels]</varname> channels:</simpara>
      <orderedlist>
       <listitem><simpara>vector <varname>[vorbis_mapping_mux]</varname> element <varname>[j]</varname> = read 4 bits as
unsigned integer</simpara></listitem>
       <listitem><simpara>if the value is greater than the highest numbered submap
(<varname>[vorbis_mapping_submaps]</varname> - 1), this in an error condition rendering the stream
undecodable</simpara></listitem>
      </orderedlist>
     </listitem>
     <listitem><simpara>for each submap <varname>[j]</varname> of <varname>[vorbis_mapping_submaps]</varname> submaps, read
the floor and residue numbers for use in decoding that submap:</simpara>
      <orderedlist>
       <listitem><simpara>read and discard 8 bits (the unused time configuration placeholder)</simpara></listitem>
       <listitem><simpara>read 8 bits as unsigned integer for the floor number; save in vector
<varname>[vorbis_mapping_submap_floor]</varname> element <varname>[j]</varname></simpara></listitem>
       <listitem><simpara>verify the floor number is not greater than the highest number floor configured for the bitstream. 
If it is, the bitstream is undecodable</simpara></listitem>
       <listitem><simpara>read 8 bits as unsigned integer for the residue number; save in vector
<varname>[vorbis_mapping_submap_residue]</varname> element <varname>[j]</varname></simpara></listitem>
       <listitem><simpara>verify the residue number is not greater than the highest number residue configured for the
bitstream.  If it is, the bitstream is undecodable</simpara></listitem>
      </orderedlist>
     </listitem>
     <listitem><simpara>save this mapping configuration in slot <varname>[i]</varname> of the mapping configuration array
<varname>[vorbis_mapping_configurations]</varname>.</simpara></listitem>
    </orderedlist></para>
   </listitem>
  </orderedlist>
 </listitem>
</orderedlist>

</section>

<section><title>modes</title>

<orderedlist>
 <listitem><simpara><varname>[vorbis_mode_count]</varname> = read 6 bits as unsigned integer and add one</simpara></listitem>
 <listitem><simpara>For each of <varname>[vorbis_mode_count]</varname> mode numbers:</simpara>
  <orderedlist>
  <listitem><simpara><varname>[vorbis_mode_blockflag]</varname> = read 1 bit</simpara></listitem>
  <listitem><simpara><varname>[vorbis_mode_windowtype]</varname> = read 16 bits as unsigned integer</simpara></listitem>
  <listitem><simpara><varname>[vorbis_mode_transformtype]</varname> = read 16 bits as unsigned integer</simpara></listitem>
  <listitem><simpara><varname>[vorbis_mode_mapping]</varname> = read 8 bits as unsigned integer</simpara></listitem>
  <listitem><simpara>verify ranges; zero is the only legal value in Vorbis I for
<varname>[vorbis_mode_windowtype]</varname>
and <varname>[vorbis_mode_transformtype]</varname>.  <varname>[vorbis_mode_mapping]</varname> must not be greater than the highest number mapping in use.  Any illegal values render the stream undecodable.</simpara></listitem>
  <listitem><simpara>save this mode configuration in slot <varname>[i]</varname> of the mode configuration array
<varname>[vorbis_mode_configurations]</varname>.</simpara></listitem>
 </orderedlist>
</listitem>
<listitem><simpara>read 1 bit as a framing flag.  If unset, a framing error occurred and the stream is not
decodable.</simpara></listitem>
</orderedlist>

<para>
After reading mode descriptions, setup header decode is complete.
</para>

</section>

</section>

</section>

<section>
<title>Audio packet decode and synthesis</title>

<para>
Following the three header packets, all packets in a Vorbis I stream
are audio.  The first step of audio packet decode is to read and
verify the packet type; <emphasis>a non-audio packet when audio is expected
indicates stream corruption or a non-compliant stream. The decoder
must ignore the packet and not attempt decoding it to audio</emphasis>.
</para>

<section><title>packet type, mode and window decode</title>

<orderedlist>
 <listitem><simpara>read 1 bit <varname>[packet_type]</varname>; check that packet type is 0 (audio)</simpara></listitem>
 <listitem><simpara>read <link linkend="vorbis-spec-ilog">ilog</link>([vorbis_mode_count]-1) bits
<varname>[mode_number]</varname></simpara></listitem>
 <listitem><simpara>decode blocksize <varname>[n]</varname> is equal to <varname>[blocksize_0]</varname> if 
<varname>[vorbis_mode_blockflag]</varname> is 0, else <varname>[n]</varname> is equal to <varname>[blocksize_1]</varname>.</simpara></listitem>
 <listitem><simpara>perform window selection and setup; this window is used later by the inverse MDCT:</simpara>
  <orderedlist>
   <listitem><simpara>if this is a long window (the <varname>[vorbis_mode_blockflag]</varname> flag of this mode is
set):</simpara>
    <orderedlist>
     <listitem><simpara>read 1 bit for <varname>[previous_window_flag]</varname></simpara></listitem>
     <listitem><simpara>read 1 bit for <varname>[next_window_flag]</varname></simpara></listitem>
     <listitem><simpara>if <varname>[previous_window_flag]</varname> is not set, the left half
         of the window will be a hybrid window for lapping with a
         short block.  See <xref
linkend="vorbis-spec-window"/> for an illustration of overlapping
dissimilar
         windows. Else, the left half window will have normal long
         shape.</simpara></listitem>
     <listitem><simpara>if <varname>[next_window_flag]</varname> is not set, the right half of
         the window will be a hybrid window for lapping with a short
         block.  See <xref linkend="vorbis-spec-window"/> for an
illustration of overlapping dissimilar
         windows. Else, the left right window will have normal long
         shape.</simpara></listitem>
    </orderedlist>
   </listitem>
   <listitem><simpara> if this is a short window, the window is always the same 
       short-window shape.</simpara></listitem>
  </orderedlist>
 </listitem>
</orderedlist>

<para>
Vorbis windows all use the slope function y=sin(2*PI*sin^2(x/n)),
but dissimilar lapping requirements can affect overall shape.  Window
generation proceeds as follows:</para>

<orderedlist>
 <listitem><simpara> <varname>[window_center]</varname> = <varname>[n]</varname> / 2</simpara></listitem>
 <listitem><simpara> <varname>[left_window_start]</varname></simpara></listitem>
 <listitem><para> if (<varname>[vorbis_mode_blockflag]</varname> is set and <varname>[previous_window_flag]</varname> is
not set) then
  <orderedlist>
   <listitem><simpara><varname>[left_window_start]</varname> = <varname>[n]</varname>/4 -
<varname>[blocksize_0]</varname>/4</simpara></listitem>
   <listitem><simpara><varname>[left_window_end]</varname> = <varname>[n]</varname>/4 + <varname>[blocksize_0]</varname>/4</simpara></listitem>
   <listitem><simpara><varname>[left_n]</varname> = <varname>[blocksize_0]</varname>/2</simpara></listitem>
  </orderedlist>
 else
  <orderedlist>
   <listitem><simpara><varname>[left_window_start]</varname> = 0</simpara></listitem>
   <listitem><simpara><varname>[left_window_end]</varname> = <varname>[window_center]</varname></simpara></listitem>
   <listitem><simpara><varname>[left_n]</varname> = <varname>[n]</varname>/2</simpara></listitem>
  </orderedlist></para>
 </listitem>
 <listitem><para> if (<varname>[vorbis_mode_blockflag]</varname> is set and <varname>[next_window_flag]</varname> is not
set) then 
  <orderedlist>
   <listitem><simpara><varname>[right_window_start]</varname> = <varname>[n]*3</varname>/4 -
<varname>[blocksize_0]</varname>/4</simpara></listitem>
   <listitem><simpara><varname>[right_window_end]</varname> = <varname>[n]*3</varname>/4 +
<varname>[blocksize_0]</varname>/4</simpara></listitem>
   <listitem><simpara><varname>[right_n]</varname> = <varname>[blocksize_0]</varname>/2</simpara></listitem>
  </orderedlist>
 else
  <orderedlist>
   <listitem><simpara><varname>[right_window_start]</varname> = <varname>[window_center]</varname></simpara></listitem>
   <listitem><simpara><varname>[right_window_end]</varname> = <varname>[n]</varname></simpara></listitem>
   <listitem><simpara><varname>[right_n]</varname> = <varname>[n]</varname>/2</simpara></listitem>
  </orderedlist></para>
 </listitem>
 <listitem><simpara> window from range 0 ... <varname>[left_window_start]</varname>-1 inclusive is zero</simpara></listitem>
 <listitem><simpara> for <varname>[i]</varname> in range <varname>[left_window_start]</varname> ...
<varname>[left_window_end]</varname>-1, window(<varname>[i]</varname>) = sin(2*PI*sin^2((<varname>[i]</varname>-<varname>[left_window_start]</varname>+.5)/<varname>[left_n]</varname>*PI/2))</simpara></listitem>
 <listitem><simpara> window from range <varname>[left_window_end]</varname> ... <varname>[right_window_start]</varname>-1
inclusive is one</simpara></listitem><listitem><simpara> for <varname>[i]</varname> in range <varname>[right_window_start]</varname> ... <varname>[right_window_end]</varname>-1, window(<varname>[i]</varname>) = sin(2*PI*sin^2((<varname>[i]</varname>-<varname>[right_window_start]</varname>+.5)/<varname>[right_n]</varname>*PI/2.+PI/2.))</simpara></listitem>
<listitem><simpara> window from range <varname>[rigth_window_start]</varname> ... <varname>[n]</varname>-1 is
zero</simpara></listitem>
</orderedlist>

<para>
An end-of-packet condition up to this point should be considered an
error that discards this packet from the stream.  An end of packet
condition past this point is to be considered a possible nominal
occurrence.</para>

</section>

<section><title>floor curve decode</title>

<para>
>Fromthis point on, we assume out decode context is using mode number
<varname>[mode_number]</varname> from configuration array
<varname>[vorbis_mode_configurations]</varname> and the map number
<varname>[vorbis_mode_mapping]</varname> (specified by the current mode) taken
from the mapping configuration array
<varname>[vorbis_mapping_configurations]</varname>.</para>

<para>
Floor curves are decoded one-by-one in channel order.</para>

<para>
For each floor <varname>[i]</varname> of <varname>[audio_channels]</varname>
 <orderedlist>
  <listitem><simpara><varname>[submap_number]</varname> = element <varname>[i]</varname> of vector [vorbis_mapping_mux]</simpara></listitem>
  <listitem><simpara><varname>[floor_number]</varname> = element <varname>[submap_number]</varname> of vector
[vorbis_submap_floor]</simpara></listitem>
  <listitem><simpara>if the floor type of this
floor (vector <varname>[vorbis_floor_types]</varname> element
<varname>[floor_number]</varname>) is zero then decode the floor for
channel <varname>[i]</varname> according to the
<xref linkend="vorbis-spec-floor0-decode"/>floor 0 decode
algorithm</simpara></listitem>
  <listitem><simpara>if the type of this floor
is one then decode the floor for channel <varname>[i]</varname> according
to the <xref linkend="vorbis-spec-floor1-decode"/>floor 1 decode
algorithm</simpara></listitem>
  <listitem><simpara>save the needed decoded floor information for channel for later synthesis</simpara></listitem>
  <listitem><simpara>if the decoded floor returned 'unused', set vector <varname>[no_residue]</varname> element
<varname>[i]</varname> to true, else set vector <varname>[no_residue]</varname> element <varname>[i]</varname> to
false</simpara></listitem>
 </orderedlist>
</para>

<para>
An end-of-packet condition during floor decode shall result in packet
decode zeroing all channel output vectors and skipping to the
add/overlap output stage.</para>

</section>

<section><title>nonzero vector propagate</title>

<para>
A possible result of floor decode is that a specific vector is marked
'unused' which indicates that that final output vector is all-zero
values (and the floor is zero).  The residue for that vector is not
coded in the stream, save for one complication.  If some vectors are
used and some are not, channel coupling could result in mixing a
zeroed and nonzeroed vector to produce two nonzeroed vectors.</para>

<para>
for each <varname>[i]</varname> from 0 ... <varname>[vorbis_mapping_coupling_steps]</varname>-1

<orderedlist>
 <listitem><simpara>if either <varname>[no_residue]</varname> entry for channel
(<varname>[vorbis_mapping_magnitude]</varname> element <varname>[i]</varname>) or (channel
<varname>[vorbis_mapping_angle]</varname> element <varname>[i]</varname>) are set to false, then both
must be set to false.  Note that an 'unused' floor has no decoded floor
information; it is important that this is remembered at floor curve
synthesis time.</simpara></listitem>
</orderedlist>
</para>

</section>

<section><title>residue decode</title>

<para>
Unlike floors, which are decoded in channel order, the residue vectors
are decoded in submap order.</para>

<para>
for each submap <varname>[i]</varname> in order from 0 ... <varname>[vorbis_mapping_submaps]</varname>-1</para>

<orderedlist>
 <listitem><simpara><varname>[ch]</varname> = 0</simpara></listitem>
 <listitem><simpara>for each channel <varname>[j]</varname> in order from 0 ... <varname>[audio_channels]</varname></simpara>
  <orderedlist>
   <listitem><simpara>if channel <varname>[j]</varname> is in submap <varname>[i]</varname> (vector <varname>[vorbis_mapping_mux]</varname> element <varname>[j]</varname> is equal to <varname>[i]</varname>)</simpara>
    <orderedlist>
     <listitem><para>if vector <varname>[no_residue]</varname> element <varname>[j]</varname> is true
      <orderedlist>
       <listitem><simpara>vector <varname>[do_not_decode_flag]</varname> element <varname>[channels_in_bundle]</varname> is set</simpara></listitem>
      </orderedlist>
     else
      <orderedlist>
       <listitem><simpara>vector <varname>[do_not_decode_flag]</varname> element <varname>[channels_in_bundle]</varname> is unset</simpara></listitem>
      </orderedlist></para>
     </listitem>
     <listitem><simpara>increment <varname>[ch]</varname></simpara></listitem>
    </orderedlist>
   </listitem>
  </orderedlist>
 </listitem><listitem><simpara><varname>[residue_number]</varname> = vector <varname>[vorbis_mapping_submap_residue]</varname> element <varname>[i]</varname></simpara></listitem>
 <listitem><simpara><varname>[residue_type]</varname> = vector <varname>[vorbis_residue_types]</varname> element <varname>[residue_number]</varname></simpara></listitem>
 <listitem><simpara>decode <varname>[ch]</varname> vectors using residue <varname>[residue_number]</varname>, according to type <varname>[residue_type]</varname>, also passing vector <varname>[do_not_decode_flag]</varname> to indicate which vectors in the bundle should not be decoded. Correct per-vector decode length is <varname>[n]</varname>/2.</simpara></listitem>
 <listitem><simpara><varname>[ch]</varname> = 0</simpara></listitem>
 <listitem><simpara>for each channel <varname>[j]</varname> in order from 0 ... <varname>[audio_channels]</varname></simpara>
  <orderedlist>
   <listitem><simpara>if channel <varname>[j]</varname> is in submap <varname>[i]</varname> (vector <varname>[vorbis_mapping_mux]</varname> element <varname>[j]</varname> is equal to <varname>[i]</varname>)</simpara>
    <orderedlist>
     <listitem><simpara>residue vector for channel <varname>[j]</varname> is set to decoded residue vector <varname>[ch]</varname></simpara></listitem>
     <listitem><simpara>increment <varname>[ch]</varname></simpara></listitem>
    </orderedlist>
   </listitem>
  </orderedlist>
 </listitem>
</orderedlist>

</section>

<section><title>inverse coupling</title>

<para>
for each <varname>[i]</varname> from <varname>[vorbis_mapping_coupling_steps]</varname>-1 descending to 0

<orderedlist>
 <listitem><simpara><varname>[magnitude_vector]</varname> = the residue vector for channel
(vector <varname>[vorbis_mapping_magnitude]</varname> element <varname>[i]</varname>)</simpara></listitem>
 <listitem><simpara><varname>[angle_vector]</varname> = the residue vector for channel (vector
<varname>[vorbis_mapping_angle]</varname> element <varname>[i]</varname>)</simpara></listitem>
 <listitem><simpara>for each scalar value <varname>[M]</varname> in vector <varname>[magnitude_vector]</varname> and the corresponding scalar value <varname>[A]</varname> in vector <varname>[angle_vector]</varname>:</simpara>
  <orderedlist>
   <listitem><para>if (<varname>[M]</varname> is greater than zero)
    <orderedlist>
     <listitem><para>if (<varname>[A]</varname> is greater than zero)
      <orderedlist>
       <listitem><simpara><varname>[new_M]</varname> = <varname>[M]</varname></simpara></listitem>
       <listitem><simpara><varname>[new_A]</varname> = <varname>[M]</varname>-<varname>[A]</varname></simpara></listitem>
      </orderedlist>
     else
      <orderedlist>
       <listitem><simpara><varname>[new_A]</varname> = <varname>[M]</varname></simpara></listitem>
       <listitem><simpara><varname>[new_M]</varname> = <varname>[M]</varname>+<varname>[A]</varname></simpara></listitem>
      </orderedlist>
     </para></listitem>
    </orderedlist>
   else
    <orderedlist>
     <listitem><para>if (<varname>[A]</varname> is greater than zero)
      <orderedlist>
       <listitem><simpara><varname>[new_M]</varname> = <varname>[M]</varname></simpara></listitem>
       <listitem><simpara><varname>[new_A]</varname> = <varname>[M]</varname>+<varname>[A]</varname></simpara></listitem>
      </orderedlist>
     else
      <orderedlist>
       <listitem><simpara><varname>[new_A]</varname> = <varname>[M]</varname></simpara></listitem>
       <listitem><simpara><varname>[new_M]</varname> = <varname>[M]</varname>-<varname>[A]</varname></simpara></listitem>
      </orderedlist>
     </para></listitem>
    </orderedlist>
   </para></listitem>
   <listitem><simpara>set scalar value <varname>[M]</varname> in vector <varname>[magnitude_vector]</varname> to <varname>[new_M]</varname></simpara></listitem>
   <listitem><simpara>set scalar value <varname>[A]</varname> in vector <varname>[angle_vector]</varname> to <varname>[new_A]</varname></simpara></listitem>
  </orderedlist>
 </listitem>
</orderedlist>
</para>

</section>

<section><title>dot product</title>

<para>
For each channel, synthesize the floor curve from the decoded floor
information, according to packet type. Note that the vector synthesis
length for floor computation is <varname>[n]</varname>/2.</para>

<para>
For each channel, multiply each element of the floor curve by each
element of that channel's residue vector.  The result is the dot
product the floor and residue vectors for each channel; the produced
vectors are the length <varname>[n]</varname>/2 audio spectrum for each
channel.</para>

<para>
One point is worth mentioning about this dot product; a common mistake
in a fixed point implementation might be to assume that a 32 bit
fixed-point representation for floor and residue and direct
multiplication of the vectors is sufficient for acceptable spectral
depth in all cases because it happens to mostly work with the current
Xiph.Org reference encoder. </para>

<para>
However, floor vector values can span ~140dB (~24 bits unsigned), and
the audio spectrum vector should represent a minimum of 120dB (~21
bits with sign), even when output is to a 16 bit PCM device.  For the
residue vector to represent full scale if the floor is nailed to
-140dB, it must be able to span 0 to +140dB.  For the residue vector
to reach full scale if the floor is nailed at 0dB, it must be able to
represent -140dB to +0dB.  Thus, in order to handle full range
dynamics, a residue vector may span -140dB to +140dB entirely within
spec.  A 280dB range is approximately 48 bits with sign; thus the
residue vector must be able to represent a 48 bit range and the dot
product must be able to handle an effective 48 bit times 24 bit
multiplication.  This range may be achieved using large (64 bit or
larger) integers, or implementing a movable binary point
representation.</para>

</section>

<section><title>inverse MDCT</title>

<para>
Convert the audio spectrum vector of each channel back into time
domain PCM audio via an inverse Modified Discrete Cosine Transform
(MDCT).  A detailed description of the MDCT is available in the paper
<ulink
url="http://www.iocon.com/resource/docs/ps/eusipco_corrected.ps">_The
use of multirate filter banks for coding of high quality digital
audio_</ulink>, by T. Sporer, K. Brandenburg and B. Edler.  The window
function used for the MDCT is the window determined earlier.</para>

</section>

<section><title>overlap_add</title>

<para>
Windowed MDCT output is overlapped and added with the right hand data
of the previous window such that the 3/4 point of the previous window
is aligned with the 1/4 point of the current window (as illustrated in
<xref linkend="vorbis-spec-window"/>.  The overlapped portion
produced from overlapping the previous and current frame data is
finished data to be returned by the decoder.  This data spans from the
center of the previous window to the center of the current window.  In
the case of same-sized windows, the amount of data to return is
one-half block consisting of and only of the overlapped portions. When
overlapping a short and long window, much of the returned range is not
actually overlap.  This does not damage transform orthogonality.  Pay
attention however to returning the correct data range; the amount of
data to be returned is:

<programlisting>window_blocksize(previous_window)/4+window_blocksize(current_window)/4</programlisting>

from the center (element windowsize/2) of the previous window to the
center (element windowsize/2-1, inclusive) of the current window.</para>

<para>
Data is not returned from the first frame; it must be used to 'prime'
the decode engine.  The encoder accounts for this priming when
calculating PCM offsets; after the first frame, the proper PCM output
offset is '0' (as no data has been returned yet).</para>

</section>

<section><title>output channel order</title>

<para>
Vorbis I specifies only a channel mapping type 0.  In mapping type 0,
channel mapping is implicitly defined as follows for standard audio
applications:</para>

<variablelist>
 <varlistentry>
  <term>one channel</term>
  <listitem>
   <simpara>the stream is monophonic</simpara>
  </listitem>
 </varlistentry><varlistentry>
  <term>two channels</term><listitem>
   <simpara>the stream is stereo.  channel order: left, right</simpara>
  </listitem>
 </varlistentry><varlistentry>
  <term>three channels</term><listitem>
   <simpara>the stream is a 1d-surround encoding.  channel order: left,
center, right</simpara>
  </listitem>
 </varlistentry><varlistentry>
  <term>four channels</term><listitem>
   <simpara>the stream is quadraphonic surround.  channel order: front left,
front right, rear left, rear right</simpara>
  </listitem>
 </varlistentry><varlistentry>
  <term>five channels</term><listitem>
   <simpara>the stream is five-channel surround.  channel order: front left,
front center, front right, rear left, rear right</simpara>
  </listitem>
 </varlistentry><varlistentry>
  <term>six channels</term><listitem>
   <simpara>the stream is 5,1 surround.  channel order: front left, front
center, front right, rear left, rear right, LFE</simpara>
  </listitem>
 </varlistentry><varlistentry>
  <term>greater than six channels</term><listitem>
   <simpara>channel use and order is defined by the application</simpara>
  </listitem>
 </varlistentry>
</variablelist>

<para>
Applications using Vorbis for dedicated purposes may define channel
mapping as seen fit.  Future channel mappings (such as three and four
channel <ulink url="http://www.ambisonic.net">Ambisonics</ulink>) will
make use of channel mappings other than mapping 0.</para>

</section>

</section>

</section>

<p><p>1.1                  vorbis/doc/xml/05-comment.xml

Index: 05-comment.xml
===================================================================
<section id="vorbis-spec-comment">
<sectioninfo>
 <releaseinfo>
 $Id: 05-comment.xml,v 1.1 2002/10/12 20:37:11 giles Exp $
 <emphasis>Last update to this document: July 16, 2002</emphasis>
</releaseinfo>
</sectioninfo>
<title>comment field and header specification</title>

<p><section><title>Overview</title>

<para>The Vorbis text comment header is the second (of three) header
packets that begin a Vorbis bitstream. It is meant for short, text
comments, not arbitrary metadata; arbitrary metadata belongs in a
separate logical bitstream (usually an XML stream type) that provides
greater structure and machine parseability.</para>

<para>The comment field is meant to be used much like someone jotting a
quick note on the bottom of a CDR. It should be a little information to
remember the disc by and explain it to others; a short, to-the-point
text note that need not only be a couple words, but isn't going to be
more than a short paragraph.  The essentials, in other words, whatever
they turn out to be, eg:

<blockquote>
<simpara>Honest Bob and the Factory-to-Dealer-Incentives, _I'm Still
Around_, opening for Moxy Fruvous, 1997.</simpara>
</blockquote>
</para>

</section>

<section><title>Comment encoding</title>

<section><title>Structure</title>

<para>
The comment header logically is a list of eight-bit-clean vectors; the
number of vectors is bounded to 2^32-1 and the length of each vector
is limited to 2^32-1 bytes. The vector length is encoded; the vector
contents themselves are not null terminated. In addition to the vector
list, there is a single vector for vendor name (also 8 bit clean,
length encoded in 32 bits). Libvorbis currently sets the vendor string
to "Xiph.Org libVorbis I 20020717".</para>

<para>The comment header is decoded as follows:

<programlisting>
  1) [vendor_length] = read an unsigned integer of 32 bits
  2) [vendor_string] = read a UTF-8 vector as [vendor_length] octets
  3) [user_comment_list_length] = read an unsigned integer of 32 bits
  4) iterate [user_comment_list_length] times {
       5) [length] = read an unsigned integer of 32 bits
       6) this iteration's user comment = read a UTF-8 vector as [length] octets
     }
  7) [framing_bit] = read a single bit as boolean
  8) if ( [framing_bit]  unset or end of packet ) then ERROR
  9) done.
</programlisting>
</para>

</section>

<section><title>Content vector format</title>

<para>
The comment vectors are structured similarly to a UNIX environment variable.
That is, comment fields consist of a field name and a field value and
look like:</para>

<programlisting>
comment[0]="ARTIST=me"; 
comment[1]="TITLE=the sound of Vorbis"; 
</programlisting>

<itemizedlist>
<listitem>
<para>A case-insensitive field name that may consist of ASCII 0x20
through 0x7D, 0x3D ('=') excluded. ASCII 0x41 through 0x5A inclusive
(A-Z) is to be considered equivalent to ASCII 0x61 through 0x7A inclusive
(a-z).</para>
</listitem>
<listitem>
<para>The field name is immediately followed by ASCII 0x3D ('=');
this equals sign is used to terminate the field name.</para>
</listitem>
<listitem>
<para>0x3D is followed by 8 bit clean UTF-8 encoded field contents
to the end of the field.</para>
</listitem>
</itemizedlist>

<section><title>Field names</title>

<para>Below is a proposed, minimal list of standard filed names with a
description of intended use.  No single or group of field names is
mandatory; a comment header may contain one, all or none of the names
in this list.</para>

<variablelist>
<varlistentry>
<term>TITLE</term>
<listitem>
<simpara>Track/Work name</simpara>
</listitem>
</varlistentry>
<varlistentry>
 <term>VERSION</term>
<listitem>
 <simpara>The version field may be used to
differentiate multiple
versions of the same track title in a single collection. (e.g. remix
info)
</simpara></listitem>
</varlistentry>

<varlistentry><term>ALBUM</term><listitem><simpara>The collection name to which this track belongs
</simpara></listitem>
</varlistentry>

<varlistentry><term>TRACKNUMBER</term><listitem><simpara>The track number of this piece if part of a specific larger collection or album
</simpara></listitem>
</varlistentry>

<varlistentry><term>ARTIST</term><listitem><simpara>The artist generally considered responsible for the work. In popular music this is usually the performing band or singer. For classical music it would be the composer. For an audio book it would be the author of the original text.
</simpara></listitem>
</varlistentry>

<varlistentry><term>PERFORMER</term><listitem><simpara>The artist(s) who performed the work. In classical music this would be the conductor, orchestra, soloists. In an audio book it would be the actor who did the reading. In popular music this is typically the same as the ARTIST and is omitted.
</simpara></listitem>
</varlistentry>

<varlistentry><term>COPYRIGHT</term><listitem><simpara>Copyright attribution, e.g., '2001 Nobody's Band' or '1999 Jack Moffitt'
</simpara></listitem>
</varlistentry>

<varlistentry><term>LICENSE</term><listitem><simpara>License information, eg, 'All Rights Reserved', 'Any
Use Permitted', a URL to a license such as a Creative Commons license
("www.creativecommons.org/blahblah/license.html") or the EFF Open
Audio License ('distributed under the terms of the Open Audio
License. see http://www.eff.org/IP/Open_licenses/eff_oal.html for
details'), etc.
</simpara></listitem>
</varlistentry>

<varlistentry><term>ORGANIZATION</term><listitem><simpara>Name of the organization producing the track (i.e.
the 'record label')
</simpara></listitem>
</varlistentry>

<varlistentry><term>DESCRIPTION</term><listitem><simpara>A short text description of the contents
</simpara></listitem>
</varlistentry>

<varlistentry><term>GENRE</term><listitem><simpara>A short text indication of music genre
</simpara></listitem>
</varlistentry>

<varlistentry><term>DATE</term><listitem><simpara>Date the track was recorded
</simpara></listitem>
</varlistentry>

<varlistentry><term>LOCATION</term><listitem><simpara>Location where track was recorded
</simpara></listitem>
</varlistentry>

<varlistentry><term>CONTACT</term><listitem><simpara>Contact information for the creators or distributors of the track. This could be a URL, an email address, the physical address of the producing label.
</simpara></listitem>
</varlistentry>

<varlistentry><term>ISRC</term><listitem><simpara>ISRC number for the
track; see <ulink
url="http://www.ifpi.org/site-content/online/isrc_intro.html">the ISRC
intro page</ulink> for more information on ISRC numbers.
</simpara></listitem>
</varlistentry>

</variablelist>

</section>

<section><title>Implications</title>

<itemizedlist>
<listitem>
<para>Field names should not be 'internationalized'; this is a
concession to simplicity not an attempt to exclude the majority of
the world that doesn't speak English. Field *contents*, however,
are represented in UTF-8 to allow easy representation of any
language.</para>
</listitem>
<listitem>
<para>We have the length of the entirety of the field and restrictions on
the field name so that the field name is bounded in a known way. Thus
we also have the length of the field contents.</para>
</listitem><listitem>
<para>Individual 'vendors' may use non-standard field names within
reason. The proper use of comment fields should be clear through
context at this point.  Abuse will be discouraged.</para>
</listitem>
<listitem>
<para>There is no vendor-specific prefix to 'nonstandard' field names.
Vendors should make some effort to avoid arbitrarily polluting the
common namespace. We will generally collect the more useful tags
here to help with standardization.</para>
</listitem>
<listitem>
<para>Field names are not required to be unique (occur once) within a
comment header.  As an example, assume a track was recorded by three
well know artists; the following is permissible, and encouraged:
<programlisting>
              ARTIST=Dizzy Gillespie 
              ARTIST=Sonny Rollins 
              ARTIST=Sonny Stitt 
</programlisting>
</para>
</listitem>
</itemizedlist>

</section>

</section>

<section><title>Encoding</title> 

<para>
The comment header comprises the entirety of the second bitstream
header packet.  Unlike the first bitstream header packet, it is not
generally the only packet on the second page and may not be restricted
to within the second bitstream page.  The length of the comment header
packet is [practically] unbounded.  The comment header packet is not
optional; it must be present in the bitstream even if it is
effectively empty.</para>

<para>
The comment header is encoded as follows (as per Ogg's standard
bitstream mapping which renders least-significant-bit of the word to be
coded into the least significant available bit of the current
bitstream octet first):

<orderedlist>
<listitem>
<simpara>
Vendor string length (32 bit unsigned quantity specifying number of octets)
</simpara></listitem>
<listitem><simpara>
Vendor string ([vendor string length] octets coded from beginning of string to end of string, not null terminated)
</simpara></listitem>
<listitem><simpara>
Number of comment fields (32 bit unsigned quantity specifying number of fields)
</simpara></listitem>
<listitem><simpara>
Comment field 0 length (if [Number of comment fields]>0; 32 bit unsigned quantity specifying number of octets)
</simpara></listitem>
<listitem><simpara>
Comment field 0 ([Comment field 0 length] octets coded from beginning of string to end of string, not null terminated)
</simpara></listitem>
<listitem><simpara>
Comment field 1 length (if [Number of comment fields]>1...)...
</simpara></listitem>

</orderedlist>
</para>

<para>
This is actually somewhat easier to describe in code; implementation of the above can be found in vorbis/lib/info.c:_vorbis_pack_comment(),_vorbis_unpack_comment()
</para>

</section>
</section>

</section>

<p><p>1.1                  vorbis/doc/xml/06-floor0.xml

Index: 06-floor0.xml
===================================================================
<section id="vorbis-spec-floor0">
<sectioninfo>
<releaseinfo>
  $Id: 06-floor0.xml,v 1.1 2002/10/12 20:37:11 giles Exp $
  <emphasis>Last update to this document: July 19, 2002</emphasis>
</releaseinfo>
</sectioninfo>  
<title>floor type 0 setup and decode</title>

<p><section>
<title>Overview</title>

<para>
Vorbis floor type zero uses Line Spectral Pair [LSP, also alternately
known as Line Spectral Frequency or LSF] representation to encode a
smooth spectral envelope curve as the frequency response of the LSP
filter.  This representation is equivalent to a traditional all-pole
infinite impulse response filter as would be used in linear predictive
coding; LSP representation may be converted to LPC representation and
vice-versa.</para>

</section>

<section>
<title>Floor 0 format</title>

<para>
Floor zero configuration consists of six integer fields and a list of
VQ codebooks for use in coding/decoding the LSP filter coefficient
values used by each frame. </para>

<section><title>header decode</title>

<para>
Configuration information for instances of floor zero decodes from the
codec setup header (third packet).  configuration decode proceeds as
follows:</para>

<screen>
  1) [floor0_order] = read an unsigned integer of 8 bits
  2) [floor0_rate] = read an unsigned integer of 16 bits
  3) [floor0_bark_map_size] = read an unsigned integer of 16 bits
  4) [floor0_amplitude_bits] = read an unsigned integer of six bits
  5) [floor0_amplitude_offset] = read an unsigned integer of eight bits
  6) [floor0_number_of_books] = read an unsigned integer of four bits and add 1
  7) if any of [floor0_order], [floor0_rate], [floor0_bark_map_size], [floor0_amplitude_bits],
     [floor0_amplitude_offset] or [floor0_number_of_books] are less than zero, the stream is not decodable
  8) array [floor0_book_list] = read a list of [floor0_number_of_books] unsigned integers of eight bits each;
</screen>

<para>
An end-of-packet condition during any of these bitstream reads renders
this stream undecodable.  In addition, any element of the array
<varname>[floor0_book_list]</varname> that is greater than the maximum codebook
number for this bitstream is an error condition that also renders the
stream undecodable.</para>

</section>

<section id="vorbis-spec-floor0-decode">
<title>packet decode</title>

<para>
Extracting a floor0 curve from an audio packet consists of first
decoding the curve amplitude and <varname>[floor0_order]</varname> LSP
coefficient values from the bitstream, and then computing the floor
curve, which is defined as the frequency response of the decoded LSP
filter.</para>

<para>
Packet decode proceeds as follows:</para>
<screen>
  1) [amplitude] = read an unsigned integer of [floor0_amplitude_bits] bits
  2) if ( [amplitude] is greater than zero ) {
       3) [coefficients] is an empty, zero length vector

       4) [booknumber] = read an unsigned integer of <link linkend="vorbis-spec-ilog">ilog</link>( [floor0_number_of_books] ) bits
       5) if ( [booknumber] is greater than the highest number decode codebook ) then packet is undecodable
       6) [lastval] = zero;
       7) vector [temp_vector] = read vector from bitstream using codebook number [booknumber] in VQ context.
       8) add the scalar value [last] to each scalar in vector [temp_vector]
       9) [last] = the value of the last scalar in vector [temp_vector]
      10) concatenate [temp_vector] onto the end of the [coefficients] vector
      11) if (length of vector [coefficients] is less than [floor0_order], continue at step 6

     }

 12) done.
 
</screen>

<para>
Take note of the following properties of decode:
<itemizedlist>
 <listitem><simpara>An <varname>[amplitude]</varname> value of zero must result in a return code that indicates this channel is unused in this frame (the output of the channel will be all-zeroes in synthesis).  Several later stages of decode don't occur for an unused channel.</simpara></listitem>
 <listitem><simpara>>An end-of-packet condition during decode should be considered a
nominal occruence; if end-of-packet is reached during any read
operation above, floor decode is to return 'unused' status as if the
<varname>[amplitude]</varname> value had read zero at the beginning of decode.</simpara></listitem>

 <listitem><simpara>The book number used for decode
can, in fact, be stored in the bitstream in <link linkend="vorbis-spec-ilog">ilog</link>( <varname>[floor0_number_of_books]</varname> -
1 ) bits.  Nevertheless, the above specification is correct and values
greater than the maximum possible book value are reserved.</simpara></listitem>

 <listitem><simpara>The number of scalars read into the vector <varname>[coefficients]</varname>
may be greater than <varname>[floor0_order]</varname>, the number actually
required for curve computation.  For example, if the VQ codebook used
for the floor currently being decoded has a
<varname>[codebook_dimensions]</varname> value of three and
<varname>[floor0_order]</varname> is ten, the only way to fill all the needed
scalars in <varname>[coefficients]</varname> is to to read a total of twelve
scalars as four vectors of three scalars each.  This is not an error
condition, and care must be taken not to allow a buffer overflow in
decode. The extra values are not used and may be ignored or discarded.</simpara></listitem>
</itemizedlist>
</para>

</section>

<section id="vorbis-spec-floor0-synth">
<title>curve computation</title>

<para>
Given an <varname>[amplitude]</varname> integer and <varname>[coefficients]</varname>
vector from packet decode as well as the [floor0_order],
[floor0_rate], [floor0_bark_map_size], [floor0_amplitude_bits] and
[floor0_amplitude_offset] values from floor setup, and an output
vector size <varname>[n]</varname> specified by the decode process, we compute a
floor output vector.</para>

<para>
If the value <varname>[amplitude]</varname> is zero, the return value is a
length <varname>[n]</varname> vector with all-zero scalars.  Otherwise, begin by
assuming the following definitions for the given vector to be
synthesized:</para>

<informalequation>
 <alt>[latex for lspmap goes here]</alt>
 <graphic fileref="lspmap.png"/>
</informalequation>

<para>
The above is used to synthesize the LSP curve on a Bark-scale frequency
axis, then map the result to a linear-scale frequency axis.
Similarly, the below calculation synthesizes the output LSP curve <varname>[output]</varname> on a log
(dB) amplitude scale, mapping it to linear amplitude in the last step:</para>

<orderedlist>
 <listitem><simpara> <varname>[i]</varname> = 0 </simpara></listitem>
 <listitem><para>if ( <varname>[floor0_order]</varname> is odd ) {
  <orderedlist>
   <listitem><para>calculate <varname>[p]</varname> and <varname>[q]</varname> according to:
        <informalequation>
         <alt>[latex for oddlsp here]</alt>
         <graphic fileref="oddlsp.png"/>
        </informalequation>
   </para></listitem>
  </orderedlist>
  } else <varname>[floor0_order]</varname> is even {
  <orderedlist>
   <listitem><para>calculate <varname>[p]</varname> and <varname>[q]</varname> according to:
        <informalequation>
         <alt>[latex for evenlsp here]</alt>
         <graphic fileref="evenlsp.png"/>
        </informalequation>
   </para></listitem>
  </orderedlist> 
  }
 </para></listitem>
 <listitem><para>calculate <varname>[linear_floor_value]</varname> according to:
     <informalequation>
       <alt>[latex for floorval here]</alt>
       <graphic fileref="floorval.png"/>
     </informalequation>
 </para></listitem>
 <listitem><simpara><varname>[iteration_condition]</varname> = map element <varname>[i]</varname></simpara></listitem>
 <listitem><simpara><varname>[output]</varname> element <varname>[i]</varname> = <varname>[linear_floor_value]</varname></simpara></listitem>
 <listitem><simpara>increment <varname>[i]</varname></simpara></listitem>
 <listitem><simpara>if ( map element <varname>[i]</varname> is equal to <varname>[iteration_condition]</varname> ) continue at step 7</simpara></listitem>
 <listitem><simpara>if ( <varname>[i]</varname> is less than <varname>[n]</varname> ) continue at step 2</simpara></listitem>
 <listitem><simpara>done</simpara></listitem>
</orderedlist>

</section>

</section>

</section>

<p><p><p>1.1                  vorbis/doc/xml/07-floor1.xml

Index: 07-floor1.xml
===================================================================
<section id="vorbis-spec-floor1">
<sectioninfo>
<releaseinfo>
 $Id: 07-floor1.xml,v 1.1 2002/10/12 20:37:11 giles Exp $
 <emphasis>Last update to this document: September 19, 2002</emphasis>
</releaseinfo>
</sectioninfo>
<title>floor type 1 setup and decode</title>

<section>
<title>Overview</title>

<para>
Vorbis floor type one uses a piecewise straight-line representation to
encode a spectral envelope curve. The representation plots this curve
mechanically on a linear frequency axis and a logarithmic (dB)
amplitude axis. The integer plotting algorithm used is similar to
Bresenham's algorithm.</para>

</section>

<section>
<title>Floor 1 format</title>

<section><title>model</title>

<para>
Floor type one represents a spectral curve as a series of
line segments.  Synthesis constructs a floor curve using iterative
prediction in a process roughly equivalent to the following simplified
description:</para>

<itemizedlist>
 <listitem><simpara> the first line segment (base case) is a logical line spanning
from x_0,y_0 to x_1,y_1 where in the base case x_0=0 and x_1=[n], the
full range of the spectral floor to be computed.</simpara></listitem>

<listitem><simpara>the induction step chooses a point x_new within an existing
logical line segment and produces a y_new value at that point computed
from the existing line's y value at x_new (as plotted by the line) and
a difference value decoded from the bitstream packet.</simpara></listitem>

<listitem><simpara>floor computation produces two new line segments, one running from
x_0,y_0 to x_new,y_new and from x_new,y_new to x_1,y_1. This step is
performed logically even if y_new represents no change to the
amplitude value at x_new so that later refinement is additionally
bounded at x_new.</simpara></listitem>

<listitem><simpara>the induction step repeats, using a list of x values specified in
the codec setup header at floor 1 initialization time.  Computation
is completed at the end of the x value list.</simpara></listitem>

</itemizedlist>

<para>
Consider the following example, with values chosen for ease of
understanding rather than representing typical configuration:</para>

<para>
For the below example, we assume a floor setup with an [n] of 128.
The list of selected X values in increasing order is
0,16,32,48,64,80,96,112 and 128.  In list order, the values interleave
as 0, 128, 64, 32, 96, 16, 48, 80 and 112.  The corresponding
list-order Y values as decoded from an example packet are 110, 20, -5,
-45, 0, -25, -10, 30 and -10.  We compute the floor in the following
way, beginning with the first line:</para>

<mediaobject>
<imageobject>
 <imagedata fileref="floor1-1.png" format="PNG"/>
</imageobject>
<textobject>
 <phrase>[graph of example floor]</phrase>
</textobject>
</mediaobject>

<para>
We now draw new logical lines to reflect the correction to new_Y, and
iterate for X positions 32 and 96:</para>

<mediaobject>
<imageobject>
 <imagedata fileref="floor1-2.png" format="PNG"/> 
 </imageobject>
 <textobject>
  <phrase>[graph of example floor]</phrase>
 </textobject>
</mediaobject>
  
<para>
Although the new Y value at X position 96 is unchanged, it is still
used later as an endpoint for further refinement.  From here on, the
pattern should be clear; we complete the floor computation as follows:</para>

<mediaobject>
<imageobject>
 <imagedata fileref="floor1-3.png" format="PNG"/> 
 </imageobject>
 <textobject>
  <phrase>[graph of example floor]</phrase>
 </textobject>
</mediaobject>
  
<mediaobject>
<imageobject>
 <imagedata fileref="floor1-4.png" format="PNG"/> 
 </imageobject>
 <textobject>
  <phrase>[graph of example floor]</phrase>
 </textobject>
</mediaobject>
  

<para>
A more efficient algorithm with carefully defined integer rounding
behavior is used for actual decode, as described later.  The actual
algorithm splits Y value computation and line plotting into two steps
with modifications to the above algorithm to eliminate noise
accumulation through integer roundoff/truncation. </para>

</section>

<section><title>header decode</title>

<para>
A list of floor X values is stored in the packet header in interleaved
format (used in list order during packet decode and synthesis).  This
list is split into partitions, and each partition is assigned to a
partition class.  X positions 0 and [n] are implicit and do not belong
to an explicit partition or partition class.</para>

<para>
A partition class consists of a representation vector width (the
number of Y values which the partition class encodes at once), a
'subclass' value representing the number of alternate entropy books
the partition class may use in representing Y values, the list of
[subclass] books and a master book used to encode which alternate
books were chosen for representation in a given packet.  The
master/subclass mechanism is meant to be used as a flexible
representation cascade while still using codebooks only in a scalar
context.</para>

<screen>

  1) [floor1_partitions] = read 5 bits as unsigned integer
  2) [maximum_class] = -1
  3) iterate [i] over the range 0 ... [floor1_partitions]-1 {
       
        4) vector [floor1_partition_class_list] element [i] = read 4 bits as unsigned integer

     }

  5) [maximum_class] = largest integer scalar value in vector [floor1_partition_class_list]
  6) iterate [i] over the range 0 ... [maximum_class] {

        7) vector [floor1_class_dimensions] element [i] = read 3 bits as unsigned integer and add 1
        8) vector [floor1_class_subclasses] element [i] = read 2 bits as unsigned integer
        9) if ( vector [floor1_class_subclasses] element [i] is nonzero ) {
            
             10) vector [floor1_class_masterbooks] element [i] = read 8 bits as unsigned integer
           
           }

       11) iterate [j] over the range 0 ... (2 exponent [floor1_class_subclasses] element [i]) - 1  {

             12) array [floor1_subclass_books] element [i],[j] = 
                 read 8 bits as unsigned integer and subtract one
           }
      }

 13) [floor1_multiplier] = read 2 bits as unsigned integer and add one
 14) [rangebits] = read 4 bits as unsigned integer
 15) vector [floor1_X_list] element [0] = 0
 16) vector [floor1_X_list] element [1] = 2 exponent [rangebits];
 17) [floor1_values] = 2
 18) iterate [i] over the range 0 ... [floor1_partitions]-1 {

       19) [current_class_number] = vector [floor1_partition_class_list] element [i]
       20) iterate [j] over the range 0 ... ([floor1_class_dimensions] element [current_class_number])-1 {
             21) vector [floor1_X_list] element ([j] + [floor1_values]) = 
                 read [rangebits] bits as unsigned integer
            }

       22) [floor1_values] = [floor1_values] + [floor1_class_dimensions] element [i]
     }
 
 23) done
</screen>

<para>
An end-of-packet condition while reading any aspect of a floor 1
configuration during setup renders a stream undecodable.  In
addition, a <varname>[floor1_class_masterbooks]</varname> or
<varname>[floor1_subclass_books]</varname> scalar element greater than the
highest numbered codebook configured in this stream is an error
condition that renders the stream undecodable.</para>

<section id="vorbis-spec-floor1-decode">
<title>packet decode</title>

<para>
Packet decode begins by checking the <varname>[nonzero]</varname> flag:</para>

<screen>
  1) [nonzero] = read 1 bit as boolean
</screen>

<para>
If <varname>[nonzero]</varname> is unset, that indicates this channel contained
no audio energy in this frame.  Decode immediately returns a status
indicating this floor curve (and thus this channel) is unused this
frame.  (A return status of 'unused' is different from decoding a
floor that has all points set to minimum representation amplitude,
which happens to be approximately -140dB).
</para>

<para>
Assuming <varname>[nonzero]</varname> is set, decode proceeds as follows:</para>

<screen>
  1) [range] = vector { 256, 128, 86, 64 } element ([floor1_multiplier]-1)
  2) vector [floor1_Y] element [0] = read <link linkend="vorbis-spec-ilog">ilog</link>([range]-1) bits as unsigned integer
  3) vector [floor1_Y] element [1] = read <link linkend="vorbis-spec-ilog">ilog</link>([range]-1) bits as unsigned integer
  4) [offset] = 2;
  5) iterate [i] over the range 0 ... [floor1_partitions]-1 {

       6) [class] = vector [floor1_partition_class]  element [i]
       7) [cdim]  = vector [floor1_class_dimensions] element [class]
       8) [cbits] = vector [floor1_class_subclasses] element [class]
       9) [csub]  = (2 exponent [cbits])-1
      10) [cval]  = 0
      11) if ( [cbits] is greater than zero ) {
 
             12) [cval] = read from packet using codebook number
                 (vector [floor1_class_masterbooks] element [class]) in scalar context
          }
      
      13) iterate [j] over the range 0 ... [cdim]-1 {
       
             14) [book] = array [floor1_subclass_books] element [class],([cval] bitwise AND [csub])
             15) [cval] = [cval] right shifted [cbits] bits
             16) if ( [book] is not less than zero ) {
             
                   17) vector [floor1_Y] element ([j]+[offset]) = read from packet using codebook 
                       [book] in scalar context

                 } else [book] is less than zero {

                   18) vector [floor1_Y] element ([j]+[offset]) = 0

                 }
          }
             
      19) [offset] = [offset] + [cdim]
         
     }
  
 20) done
</screen>

<para>
An end-of-packet condition during curve decode should be considered a
nominal occurrence; if end-of-packet is reached during any read
operation above, floor decode is to return 'unused' status as if the
<varname>[nonzero]</varname> flag had been unset at the beginning of decode.
</para>

<para>
Vector <varname>[floor1_Y]</varname> contains the values from packet decode
needed for floor 1 synthesis.</para>

</section>

<section id="vorbis-spec-floor1-synth">
<title>curve computation</title>

<para>
Curve computation is split into two logical steps; the first step
derives final Y amplitude values from the encoded, wrapped difference
values taken from the bitstream.  The second step plots the curve
lines.  Also, although zero-difference values are used in the
iterative prediction to find final Y values, these points are
conditionally skipped during final line computation in step two.
Skipping zero-difference values allows a smoother line fit.  </para>

<para>
Although some aspects of the below algorithm look like inconsequential
optimizations, implementors are warned to follow the details closely.
Deviation from implementing a strictly equivalent algorithm can result
in serious decoding errors.</para>

<section>
<title>step 1: amplitude value synthesis</title>

<para>
Unwrap the always-positive-or-zero values read from the packet into
+/- difference values, then apply to line prediction.</para>

<screen>
  1) [range] = vector { 256, 128, 86, 64 } element ([floor1_multiplier]-1)
  2) vector [floor1_step2_flag] element [0] = set
  3) vector [floor1_step2_flag] element [1] = set
  4) vector [floor1_final_Y] element [0] = vector [floor1_Y] element [0]
  5) vector [floor1_final_Y] element [1] = vector [floor1_Y] element [1]
  6) iterate [i] over the range 2 ... [floor1_values]-1 {
    
       7) [low_neighbor_offset] = <link linkend="vorbis-spec-low_neighbor">low_neighbor</link>([floor1_X_list],[i])
       8) [high_neighbor_offset] = <link linkend="vorbis-spec-high_neighbor">high_neighbor</link>([floor1_X_list],[i])

       9) [predicted] = <link linkend="vorbis-spec-render_point">render_point</link>( vector [floor1_X_list] element [low_neighbor_offset],
                                      vector [floor1_X_list] element [high_neighbor_offset],
                                      vector [floor1_final_Y] element [low_neighbor_offset],
                                      vector [floor1_final_Y] element [high_neighbor_offset],
                                      vector [floor1_X_list] element [i] )

      10) [val] = vector [floor1_Y] element [i]
      11) [highroom] = [range] - [predicted]
      12) [lowroom]  = [predicted]
      13) if ( [highroom] is less than [lowroom] ) {

            14) [room] = [highroom] * 2
         
          } else [highroom] is not less than [lowroom] {
                      
            15) [root] = [lowroom] * 2
        
          }

      16) if ( [val] is nonzero ) {

            17) vector [floor1_step2_flag] element [low_neighbor_offset] = set
            18) vector [floor1_step2_flag] element [high_neighbor_offset] = set
            19) vector [floor1_step2_flag] element [i] = set
            20) if ( [val] is greater than or equal to [room] ) {
 
                  21) if ( [hiroom] is greater than [lowroom] ) {

                        22) vector [floor1_final_Y] element [i] = [val] - [lowroom] + [predicted]
                     
                      } else [hiroom] is not greater than [lowroom] {
              
                        23) vector [floor1_final_Y] element [i] = [predicted] - ([val] - [lowroom]) - 1
                   
                      }
               
                } else [val] is less than [room] {
                 
                  24) if ([val] is odd) {
                 
                        25) vector [floor1_final_Y] element [i] = 
                            [predicted] - (([val] - 1) divided by  2 using integer division)

                      } else [val] is even {

                        26) vector [floor1_final_Y] element [i] = 
                            [predicted] + ([val] / 2 using integer division)
                          
                      }

                }      

          } else [val] is zero {

            27) vector [floor1_step2_flag] element [i] = unset
            28) vector [floor1_final_Y] element [i] = [predicted]

          }

     }

 29) done

</screen>

</section>

<section>
<title>step 2: curve synthesis</title>

<para>
Curve synthesis generates a return vector <varname>[floor]</varname> of length
<varname>[n]</varname> (where <varname>[n]</varname> is provided by the decode process
calling to floor decode).  Floor 1 curve synthesis makes use of the
<varname>[floor1_X_list]</varname>, <varname>[floor1_final_Y]</varname> and
<varname>[floor1_step2_flag]</varname> vectors, as well as [floor1_multiplier]
and [floor1_values] values.</para>

<para>
Decode begins by sorting the scalars from vectors
<varname>[floor1_X_list]</varname>, <varname>[floor1_final_Y]</varname> and
<varname>[floor1_step2_flag]</varname> together into new vectors
<varname>[floor1_X_list]'</varname>, <varname>[floor1_final_Y]'</varname> and
<varname>[floor1_step2_flag]'</varname> according to ascending sort order of the
values in <varname>[floor1_X_list]</varname>.  That is, sort the values of
<varname>[floor1_X_list]</varname> and then apply the same permutation to
elements of the other two vectors so that the X, Y and step2_flag
values still match.</para>

<para>
Then compute the final curve in one pass:</para>

<screen>
  1) [hx] = 0
  2) [lx] = 0
  3) [ly] = vector [floor1_final_Y]' element [0] * [floor1_multiplier]
  4) iterate [i] over the range 1 ... [floor1_values]-1 {

       5) if ( [floor1_step2_flag]' is set ) {

             6) [hy] = [floor1_final_Y]' element [i] * [floor1_multiplier]
              7) [hx] = [floor1_X_list]' element [i]
             8) <link linkend="vorbis-spec-render_line">render_line</link>( [lx], [hx], [ly], [hy], [floor] )
             9) [lx] = [hx]
            10) [ly] = [hy]
          }
 
      11) if ( [hx] is less than [n] ) {

            12) <link linkend="vorbis-spec-render_line">render_line</link>( [hx], [hy], [n], [hy], [floor] )

          }

      13) if ( [hx] is greater than [n] ) {

            14) truncate vector [floor] to [n] elements

          }
     }
 
 15) for each scalar in vector [floor], perform a lookup substitution using 
     the scalar value from [floor] as an offset into the vector <link linkend="vorbis-spec-floor1_inverse_dB_table">[floor1_inverse_dB_static_table]</link>

 16) done

</screen>

</section>

</section>

</section>
</section>
</section>

<p><p><p>1.1                  vorbis/doc/xml/08-residue.xml

Index: 08-residue.xml
===================================================================
<section id="vorbis-spec-residue">
<sectioninfo>
 <releaseinfo>
  $Id: 08-residue.xml,v 1.1 2002/10/12 20:37:11 giles Exp $
  <emphasis>Last update to this document: July 19, 2002</emphasis>
 </releaseinfo>
</sectioninfo>
<title>residue setup and decode</title>

<p><section>
<title>Overview</title>

<para>
A residue vector represents the fine detail of the audio spectrum of
one channel in an audio frame after the encoder subtracts the floor
curve and performs any channel coupling.  A residue vector may
represent spectral lines, spectral magnitude, spectral phase or
hybrids as mixed by channel coupling.  The exact semantic content of
the vector does not matter to the residue abstraction.</para>

<para>
Whatever the exact qualities, the Vorbis residue abstraction codes the
residue vectors into the bitstream packet, and then reconstructs the
vectors during decode.  Vorbis makes use of three different encoding
variants (numbered 0, 1 and 2) of the same basic vector encoding
abstraction.</para>

</section>

<section>
<title>Residue format</title>

<para>
Reside format partitions each vector in the vector bundle into chunks,
classifies each chunk, encodes the chunk classifications and finally
encodes the chunks themselves using the the specific VQ arrangement
defined for each selected selected classification.  The exact
interleaving and partitioning vary by residue encoding number, however
the high-level process used to classify and encode the residue vector
is the same in all three variants.</para>

<para>
A set of coded residue vectors are all of the same length.  High level
coding structure, ignoring for the moment exactly how a partition is
encoded and simply trusting that it is, is as follows:</para>

<itemizedlist>
<listitem><para>Each vector is partitioned into multiple equal sized chunks
according to configuration specified.  If we have a vector size of
<emphasis>n</emphasis>, a partition size <emphasis>residue_partition_size</emphasis>, and a total
of <emphasis>ch</emphasis> residue vectors, the total number of partitioned chunks
coded is <emphasis>n</emphasis>/<emphasis>residue_partition_size</emphasis>*<emphasis>ch</emphasis>.  It is
important to note that the integer division truncates.  In the below
example, we assume an example <emphasis>residue_partition_size</emphasis> of 8.</para></listitem>

<listitem><para>Each partition in each vector has a classification number that
specifies which of multiple configured VQ codebook setups are used to
decode that partition.  The classification numbers of each partition
can be thought of as forming a vector in their own right, as in the
illustration below.  Just as the residue vectors are coded in grouped
partitions to increase encoding efficiency, the classification vector
is also partitioned into chunks.  The integer elements of each scalar
in a classification chunk are built into a single scalar that
represents the classification numbers in that chunk.  In the below
example, the classification codeword encodes two classification
numbers.</para></listitem>

<listitem><para>The values in a residue vector may be encoded monolithically in a
single pass through the residue vector, but more often efficient
codebook design dictates that each vector is encoded as the additive
sum of several passes through the residue vector using more than one
VQ codebook.  Thus, each residue value potentially accumulates values
from multiple decode passes.  The classification value associated with
a partition is the same in each pass, thus the classification codeword
is coded only in the first pass.</para></listitem>

</itemizedlist>

<mediaobject>
<imageobject>
 <imagedata fileref="residue-pack.png" format="PNG"/>
</imageobject>
<textobject>
 <phrase>[illustration of residue vector format]</phrase>
</textobject>
</mediaobject>

</section>

<section><title>residue 0</title>

<para>
Residue 0 and 1 differ only in the way the values within a residue
partition are interleaved during partition encoding (visually treated
as a black box- or cyan box or brown box- in the above figure).</para>

<para>
Residue encoding 0 interleaves VQ encoding according to the
dimension of the codebook used to encode a partition in a specific
pass.  The dimension of the codebook need not be the same in multiple
passes, however the partition size must be an even multiple of the
codebook dimension.</para>

<para>
As an example, assume a partition vector of size eight, to be encoded
by residue 0 using codebook sizes of 8, 4, 2 and 1:</para>

<programlisting>

            original residue vector: [ 0 1 2 3 4 5 6 7 ]

codebook dimensions = 8  encoded as: [ 0 1 2 3 4 5 6 7 ]

codebook dimensions = 4  encoded as: [ 0 2 4 6 ], [ 1 3 5 7 ]

codebook dimensions = 2  encoded as: [ 0 4 ], [ 1 5 ], [ 2 6 ], [ 3 7 ]

codebook dimensions = 1  encoded as: [ 0 ], [ 1 ], [ 2 ], [ 3 ], [ 4 ], [ 5 ], [ 6 ], [ 7 ]

</programlisting>

<para>
It is worth mentioning at this point that no configurable value in the
residue coding setup is restricted to a power of two.</para>

</section>

<section><title> residue 1 </title>

<para>
Residue 1 does not interleave VQ encoding.  It represents partition
vector scalars in order.  As with residue 0, however, partition length
must be an integer multiple of the codebook dimension, although
dimension may vary from pass to pass.</para>

<para>
As an example, assume a partition vector of size eight, to be encoded
by residue 0 using codebook sizes of 8, 4, 2 and 1:</para>

<programlisting>

            original residue vector: [ 0 1 2 3 4 5 6 7 ]

codebook dimensions = 8  encoded as: [ 0 1 2 3 4 5 6 7 ]

codebook dimensions = 4  encoded as: [ 0 1 2 3 ], [ 4 5 6 7 ]

codebook dimensions = 2  encoded as: [ 0 1 ], [ 2 3 ], [ 4 5 ], [ 6 7 ]

codebook dimensions = 1  encoded as: [ 0 ], [ 1 ], [ 2 ], [ 3 ], [ 4 ], [ 5 ], [ 6 ], [ 7 ]

</programlisting>

</section>

<section><title> residue 2 </title>

<para>
Residue type two can be thought of as a variant of residue type 1.
Rather than encoding multiple passed-in vectors as in residue type 1,
the <emphasis>ch</emphasis> passed in vectors of length <emphasis>n</emphasis> are first
interleaved and flattened into a single vector of length
<emphasis>ch</emphasis>*<emphasis>n</emphasis>.  Encoding then proceeds as in type 1. Decoding is
as in type 1 with decode interleave reversed. If operating on a single
vector to begin with, residue type 1 and type 2 are equivalent.</para>

<mediaobject>
<imageobject>
 <imagedata fileref="residue2.png" format="PNG"/>
</imageobject>
<textobject>
 <phrase>[illustration of residue type 2]</phrase>
</textobject>
</mediaobject>

</section>

</section>

<section>
<title>Residue decode</title>

<section><title>header decode</title>

<para>
Header decode for all three residue types is identical.</para>
<programlisting>
  1) [residue_begin] = read 24 bits as unsigned integer
  2) [residue_end] = read 24 bits as unsigned integer
  3) [residue_partition_size] = read 24 bits as unsigned integer and add one
  4) [residue_classifications] = read 6 bits as unsigned integer and add one
  5) [residue_classbook] = read 8 bits as unsigned integer
</programlisting>

<para>
<varname>[residue_begin]</varname> and <varname>[residue_end]</varname> select the specific
sub-portion of each vector that is actually coded; it implements akin
to a bandpass where, for coding purposes, the vector effectively
begins at element <varname>[residue_begin]</varname> and ends at
<varname>[residue_end]</varname>.  Preceding and following values in the unpacked
vectors are zeroed.  Note that for residue type 2, these values as
well as <varname>[residue_partition_size]</varname>apply to the interleaved
vector, not the individual vectors before interleave.
<varname>[residue_partition_size]</varname> is as explained above,
<varname>[residue_classifications]</varname> is the number of possible
classification to which a partition can belong and
<varname>[residue_classbook]</varname> is the codebook number used to code
classification codewords.  The number of dimensions in book
<varname>[residue_classbook]</varname> determines how many classification values
are grouped into a single classification codeword.</para>

<para>
Next we read a bitmap pattern that specifies which partition classes
code values in which passes.</para>

<programlisting>
  1) iterate [i] over the range 0 ... [residue_classifications]-1 {
  
       2) [high_bits] = 0
       3) [low_bits] = read 3 bits as unsigned integer
       4) [bitflag] = read one bit as boolean
       5) if ( [bitflag] is set ) then [high_bits] = read five bits as unsigned integer
       6) vector [residue_cascade] element [i] = [high_bits] * 8 + [low_bits]
     }
  7) done
</programlisting>

<para>
Finally, we read in a list of book numbers, each corresponding to
specific bit set in the cascade bitmap.  We loop over the possible
codebook classifications and the maximum possible number of encoding
stages (8 in Vorbis I, as constrained by the elements of the cascade
bitmap being eight bits):</para>

<programlisting>
  1) iterate [i] over the range 0 ... [residue_classifications]-1 {
  
       2) iterate [j] over the range 0 ... 7 {
  
            3) if ( vector [residue_cascade] element [i] bit [j] is set ) {

                 4) array [residue_books] element [i][j] = read 8 bits as unsigned integer

               } else {

                 5) array [residue_books] element [i][j] = unused

               }
          }
      }

  6) done
</programlisting>

<para>
An end-of-packet condition at any point in header decode renders the
stream undecodable.  In addition, any codebook number greater than the
maximum numbered codebook set up in this stream also renders the
stream undecodable.</para>

</section>

<section><title>packet decode</title>

<para>
Format 0 and 1 packet decode is identical except for specific
partition interleave.  Format 2 packet decode can be built out of the
format 1 decode process.  Thus we describe first the decode
infrastructure identical to all three formats.</para>

<para>
In addition to configuration information, the residue decode process
is passed the number of vectors in the submap bundle and a vector of
flags indicating if any of the vectors are not to be decoded.  If the
passed in number of vectors is 3 and vector number 1 is marked 'do not
decode', decode skips vector 1 during the decode loop.  However, even
'do not decode' vectors are allocated and zeroed.</para>

<para>
The following convenience values are conceptually useful to clarifying
the decode process:</para>

<programlisting>
  1) [classvals_per_codeword] = [codebook_dimensions] value of codebook [residue_classbook]
  2) [n_to_read] = [residue_end] - [residue-begin]
  3) [partitions_to_read] = [n_to_read] / [residue_partition_size]
</programlisting>

<para>
Packet decode proceeds as follows, matching the description offered earlier in the document.  We assume that the number of vectors being encoded, <varname>[ch]</varname> is provided by the higher level decoding process.</para>
<programlisting>
  1) allocate and zero all vectors that will be returned.
  2) iterate [pass] over the range 0 ... 7 {

       3) [partition_count] = 0
       4) if ([pass] is zero) {
     
            5) iterate [j] over the range 0 .. [ch]-1 {

                 6) if vector [j] is not marked 'do not decode' {

                      7) [temp] = read from packet using codebook [residue_classbook] in scalar context
                      8) iterate [k] descending over the range [classvals_per_codeword]-1 ... 0 {

                           9) array [classifications] element [j],([partition_count]+[k]) =
                              [temp] integer modulo [residue_classifications]
                          10) [temp] = [temp] / [residue_classifications] using integer division

                         }
      
                    }
            
               }
        
          }

      11) [classword_count] = 0
      12) iterate [j] over the range 0 .. [ch]-1 {

            13) if vector [j] is not marked 'do not decode' {

  
                 14) [vqclass] = array [classifications] element [j],([partition_count]+[classword_count])
                 15) [vqbook] = array [residue_books] element [vqclass],[pass]
                 16) if ([vqbook] is not 'unused') {
   
                       17) decode partition into output vector number [j], starting at scalar 
                           offset [residue_begin]+[partition_count]*[residue_partition_size] using 
                           codebook number [vqbook] in VQ context
                     }
               }

          }

      18) increment [classword_count]
      19) increment [partition_count]
      20) if ([classword_count] is less than [classvals_per_codeword]) AND 
             ([partition_count] is less than [partitions_to_read) then continue at step 11
      21) if ([partition_count] is less than [partitions_to_read) then continue at step 4
    }
 
 22) done

</programlisting>

<para>
An end-of-packet condition during packet decode is to be considered a
nominal occurrence.  Decode returns the result of vector decode up to
that point.</para>

</section>

<section><title>format 0 specifics</title>

<para>
Format zero decodes partitions exactly as described earlier in the
'Residue Format: residue 0' section.  The following pseudocode
presents the same algorithm. Assume:</para>

<itemizedlist>
<listitem><simpara> <varname>[n]</varname> is the value in <varname>[residue_partition_size]</varname></simpara></listitem>
<listitem><simpara><varname>[v]</varname> is the residue vector</simpara></listitem>
<listitem><simpara><varname>[offset]</varname> is the beginning read offset in [v]</simpara></listitem>
</itemizedlist>

<programlisting>
 1) [step] = [n] / [codebook_dimensions]
 2) iterate [i] over the range 0 ... [step]-1 {

      3) vector [entry_temp] = read vector from packet using current codebook in VQ context
      4) iterate [j] over the range 0 ... [codebook_dimensions]-1 {

           5) vector [v] element ([offset]+[i]+[j]*[step]) =
                vector [v] element ([offset]+[i]+[j]*[step]) +
                vector [entry_temp] element [j]

         }

    }

  6) done

</programlisting>

</section>

<section><title>format 1 specifics</title>

<para>
Format 1 decodes partitions exactly as described earlier in the
'Residue Format: residue 1' section.  The following pseudocode
presents the same algorithm. Assume:</para>

<itemizedlist>
<listitem><simpara> <varname>[n]</varname> is the value in
<varname>[residue_partition_size]</varname></simpara></listitem>
<listitem><simpara><varname>[v]</varname> is the residue vector</simpara></listitem>
<listitem><simpara><varname>[offset]</varname> is the beginning read offset in [v]</simpara></listitem>
</itemizedlist>

<programlisting>
 1) [i] = 0
 2) vector [entry_temp] = read vector from packet using current codebook in VQ context
 3) iterate [j] over the range 0 ... [codebook_dimensions]-1 {

      5) vector [v] element ([offset]+[i]) =
          vector [v] element ([offset]+[i]) +
          vector [entry_temp] element [j]
      6) increment [i]

    }
 
  4) if ( [i] is less than [n] ) continue at step 2
  5) done
</programlisting>

</section>

<section><title>format 2 specifics</title>
 
<para>
Format 2 is reducible to format 1 through the following steps, performed in order:

<orderedlist>
 <listitem><simpara>Assume format 2 is to decode <emphasis>ch</emphasis> vectors of length <emphasis>n</emphasis>.</simpara></listitem>
 <listitem><simpara>Decode, using format 1, a single vector <varname>[v]</varname>of length <emphasis>ch</emphasis>*<emphasis>n</emphasis>.</simpara></listitem>
 <listitem><para>Deinterleave this single vector <varname>[v]</varname> into <emphasis>ch</emphasis> independent vectors according to:
  <programlisting>
  1) iterate [i] over the range 0 ... [n]-1 {

       2) iterate [j] over the range 0 ... [ch]-1 {

            3) output vector number [j] element [i] = vector [t] element ([i] * [ch] +[j])

          }
     }

  4) done
  </programlisting>
 </para></listitem>
</orderedlist>
</para>

<para>
Format 2 handles 'do not decode' vectors differently that residue 0 or
1; if all vectors are marked 'do not decode', no decode occurrs.
However, if at least one vector is to be decoded, all the vectors are
decoded.</para>

</section>

</section>

<p><p>1.1                  vorbis/doc/xml/09-helper.xml

Index: 09-helper.xml
===================================================================
<section id="vorbis-spec-helper">
<sectioninfo>
<releaseinfo>
 $Id: 09-helper.xml,v 1.1 2002/10/12 20:37:11 giles Exp $
 <emphasis>Last update to this document: September 10, 2002</emphasis>
</releaseinfo>
</sectioninfo>
<title>helper equations</title>

<section>
<title>Overview</title>

<para>
The equations below are used in multiple places by the Vorbis codec
specification.  Rather than cluttering up the main specification
documents, they are defined here and referenced where appropriate.
</para>

<section id="vorbis-spec-ilog">
<title>ilog</title>

<para>
The "ilog(x)" function returns the position number (1 through n) of the highest set bit in the two's complement integer value
<varname>[x]</varname>.  Values of <varname>[x]</varname> less than zero are defined to return zero.</para>

<programlisting>
  1) [return_value] = 0;
  2) if ( [x] is greater than zero ){
      
       3) increment [return_value];
       4) logical shift [x] one bit to the right, padding the MSb with zero
       5) repeat at step 2)

     }

   6) done
</programlisting>

<para>
Examples:

<itemizedlist>
 <listitem><simpara> ilog(0) = 0;</simpara></listitem>
 <listitem><simpara> ilog(1) = 1;</simpara></listitem>
 <listitem><simpara> ilog(2) = 2;</simpara></listitem>
 <listitem><simpara> ilog(3) = 2;</simpara></listitem>
 <listitem><simpara> ilog(4) = 3;</simpara></listitem>
 <listitem><simpara> ilog(7) = 3;</simpara></listitem>
 <listitem><simpara> ilog(negative number) = 0;</simpara></listitem>
</itemizedlist>
</para>

</section>

<section id="vorbis-spec-float32_unpack">
<title>float32_unpack</title>

<para>
"float32_unpack(x)" is intended to translate the packed binary
representation of a Vorbis codebook float value into the
representation used by the decoder for floating point numbers.  For
purposes of this example, we will unpack a Vorbis float32 into a
host-native floating point number.</para>

<programlisting>
  1) [mantissa] = [x] bitwise AND 0x1fffff (unsigned result)
  2) [sign] = [x] bitwise AND 0x80000000 (unsigned result)
  3) [exponent] = ( [x] bitwise AND 0x7fe00000) shifted right 21 bits (unsigned result)
  4) if ( [sign] is nonzero ) then negate [mantissa]
  5) return [mantissa] * ( 2 ^ ( [exponent] - 788 ) )
</programlisting>

</section>

<section id="vorbis-spec-lookup1_values">
<title>lookup1_values</title>

<para>
"lookup1_values(codebook_entries,codebook_dimensions)" is used to
compute the correct length of the value index for a codebook VQ lookup
table of lookup type 1.  The values on this list are permuted to
construct the VQ vector lookup table of size
<varname>[codebook_entries]</varname>.</para>

<para>
The return value for this function is defined to be 'the greatest
integer value for which <varname>[return_value] to the power of
[codebook_dimensions] is less than or equal to
[codebook_entries]</varname>'.</para>

</section>

<section id="vorbis-spec-low_neighbor">
<title>low_neighbor</title>

<para>
"low_neighbor(v,x)" finds the position <varname>n</varname> in vector <varname>[v]</varname> of
the greatest value scalar element for which <varname>n</varname> is less than
<varname>[x]</varname> and vector <varname>[v]</varname> element <varname>n</varname> is less
than vector <varname>[v]</varname> element <varname>[x]</varname>.</para>

<section id="vorbis-spec-high_neighbor">
<title>high_neighbor</title>

<para>
"high_neighbor(v,x)" finds the position <varname>n</varname> in vector [v] of
the lowest value scalar element for which <varname>n</varname> is less than
<varname>[x]</varname> and vector <varname>[v]</varname> element <varname>n</varname> is greater
than vector <varname>[v]</varname> element <varname>[x]</varname>.</para>

</section>

<section id="vorbis-spec-render_point">
<title>render_point</title>

<para>
"render_point(x0,x1,y0,y1,X)" is used to find the Y value at point X
along the line specified by x0, x1, y0 and y1.  This function uses an
integer algorithm to solve for the point directly without calculating
intervening values along the line.</para>

<programlisting>
  1)  [dy] = [y1] - [y0]
  2) [adx] = [x1] - [x0]
  3) [ady] = absolute value of [dy]
  4) [err] = [ady] * ([X] - [x0])
  5) [off] = [err] / [adx] using integer division
  6) if ( [dy] is less than zero ) {

       7) [Y] = [y0] - [off]

     } else {

       8) [Y] = [y0] + [off]
  
     }

  9) done
</programlisting>

</section>

<section id="vorbis-spec-render_line">
<title>render_line</title>

<para>
Floor decode type one uses the integer line drawing algorithm of
"render_line(x0, y0, x1, y1, v)" to construct an integer floor
curve for contiguous piecewise line segments. Note that it has not
been relevant elsewhere, but here we must define integer division as
rounding division of both positive and negative numbers toward zero.
</para>

<programlisting>
  1)   [dy] = [y1] - [y0]
  2)  [adx] = [x1] - [x0]
  3)  [ady] = absolute value of [dy]
  4) [base] = [dy] / [adx] using integer division
  5)    [x] = [x0]
  6)    [y] = [y0]
  7)  [err] = 0

  8) if ( [dy] is less than 0 ) {

        9) [sy] = [base] - 1

     } else {

       10) [sy] = [base] + 1

     }

 11) [ady] = [ady] - (absolute value of [base]) * [adx]
 12) vector [v] element [x] = [y]

 13) iterate [x] over the range [x0]+1 ... [x1]-1 {

       14) [err] = [err] + [ady];
       15) if ( [err] >= [adx] ) {

             15) [err] = [err] - [adx]
             16)   [y] = [y] + [sy]

           } else {

             17) [y] = [y] + [base]
   
           }

       18) vector [v] element [x] = [y]

     }
</programlisting>

</section>

</section>

</section>

</section>

<p><p>1.1                  vorbis/doc/xml/10-tables.xml

Index: 10-tables.xml
===================================================================
<section id="vorbis-spec-tables">
<sectioninfo>
 <releaseinfo>
  $Id: 10-tables.xml,v 1.1 2002/10/12 20:37:11 giles Exp $
  <emphasis>Last update to this document: July 18, 2002</emphasis>
 </releaseinfo>
</sectioninfo>
<title>Tables</title>

<section id="vorbis-spec-floor1_inverse_dB_table">
<title>floor1_inverse_dB_table</title>

<para>
The vector <varname>[floor1_inverse_dB_table]</varname> is a 256 element static
lookup table consiting of the following values (read left to right
then top to bottom):</para>

<screen>
  1.0649863e-07, 1.1341951e-07, 1.2079015e-07, 1.2863978e-07, 
  1.3699951e-07, 1.4590251e-07, 1.5538408e-07, 1.6548181e-07, 
  1.7623575e-07, 1.8768855e-07, 1.9988561e-07, 2.1287530e-07, 
  2.2670913e-07, 2.4144197e-07, 2.5713223e-07, 2.7384213e-07, 
  2.9163793e-07, 3.1059021e-07, 3.3077411e-07, 3.5226968e-07, 
  3.7516214e-07, 3.9954229e-07, 4.2550680e-07, 4.5315863e-07, 
  4.8260743e-07, 5.1396998e-07, 5.4737065e-07, 5.8294187e-07, 
  6.2082472e-07, 6.6116941e-07, 7.0413592e-07, 7.4989464e-07, 
  7.9862701e-07, 8.5052630e-07, 9.0579828e-07, 9.6466216e-07, 
  1.0273513e-06, 1.0941144e-06, 1.1652161e-06, 1.2409384e-06, 
  1.3215816e-06, 1.4074654e-06, 1.4989305e-06, 1.5963394e-06, 
  1.7000785e-06, 1.8105592e-06, 1.9282195e-06, 2.0535261e-06, 
  2.1869758e-06, 2.3290978e-06, 2.4804557e-06, 2.6416497e-06, 
  2.8133190e-06, 2.9961443e-06, 3.1908506e-06, 3.3982101e-06, 
  3.6190449e-06, 3.8542308e-06, 4.1047004e-06, 4.3714470e-06, 
  4.6555282e-06, 4.9580707e-06, 5.2802740e-06, 5.6234160e-06, 
  5.9888572e-06, 6.3780469e-06, 6.7925283e-06, 7.2339451e-06, 
  7.7040476e-06, 8.2047000e-06, 8.7378876e-06, 9.3057248e-06, 
  9.9104632e-06, 1.0554501e-05, 1.1240392e-05, 1.1970856e-05, 
  1.2748789e-05, 1.3577278e-05, 1.4459606e-05, 1.5399272e-05, 
  1.6400004e-05, 1.7465768e-05, 1.8600792e-05, 1.9809576e-05, 
  2.1096914e-05, 2.2467911e-05, 2.3928002e-05, 2.5482978e-05, 
  2.7139006e-05, 2.8902651e-05, 3.0780908e-05, 3.2781225e-05, 
  3.4911534e-05, 3.7180282e-05, 3.9596466e-05, 4.2169667e-05, 
  4.4910090e-05, 4.7828601e-05, 5.0936773e-05, 5.4246931e-05, 
  5.7772202e-05, 6.1526565e-05, 6.5524908e-05, 6.9783085e-05, 
  7.4317983e-05, 7.9147585e-05, 8.4291040e-05, 8.9768747e-05, 
  9.5602426e-05, 0.00010181521, 0.00010843174, 0.00011547824, 
  0.00012298267, 0.00013097477, 0.00013948625, 0.00014855085, 
  0.00015820453, 0.00016848555, 0.00017943469, 0.00019109536, 
  0.00020351382, 0.00021673929, 0.00023082423, 0.00024582449, 
  0.00026179955, 0.00027881276, 0.00029693158, 0.00031622787, 
  0.00033677814, 0.00035866388, 0.00038197188, 0.00040679456, 
  0.00043323036, 0.00046138411, 0.00049136745, 0.00052329927, 
  0.00055730621, 0.00059352311, 0.00063209358, 0.00067317058, 
  0.00071691700, 0.00076350630, 0.00081312324, 0.00086596457, 
  0.00092223983, 0.00098217216, 0.0010459992,  0.0011139742, 
  0.0011863665,  0.0012634633,  0.0013455702,  0.0014330129, 
  0.0015261382,  0.0016253153,  0.0017309374,  0.0018434235, 
  0.0019632195,  0.0020908006,  0.0022266726,  0.0023713743, 
  0.0025254795,  0.0026895994,  0.0028643847,  0.0030505286, 
  0.0032487691,  0.0034598925,  0.0036847358,  0.0039241906, 
  0.0041792066,  0.0044507950,  0.0047400328,  0.0050480668, 
  0.0053761186,  0.0057254891,  0.0060975636,  0.0064938176, 
  0.0069158225,  0.0073652516,  0.0078438871,  0.0083536271, 
  0.0088964928,  0.009474637,   0.010090352,   0.010746080, 
  0.011444421,   0.012188144,   0.012980198,   0.013823725, 
  0.014722068,   0.015678791,   0.016697687,   0.017782797, 
  0.018938423,   0.020169149,   0.021479854,   0.022875735, 
  0.024362330,   0.025945531,   0.027631618,   0.029427276, 
  0.031339626,   0.033376252,   0.035545228,   0.037855157, 
  0.040315199,   0.042935108,   0.045725273,   0.048696758, 
  0.051861348,   0.055231591,   0.058820850,   0.062643361, 
  0.066714279,   0.071049749,   0.075666962,   0.080584227, 
  0.085821044,   0.091398179,   0.097337747,   0.10366330, 
  0.11039993,    0.11757434,    0.12521498,    0.13335215, 
  0.14201813,    0.15124727,    0.16107617,    0.17154380, 
  0.18269168,    0.19456402,    0.20720788,    0.22067342, 
  0.23501402,    0.25028656,    0.26655159,    0.28387361, 
  0.30232132,    0.32196786,    0.34289114,    0.36517414, 
  0.38890521,    0.41417847,    0.44109412,    0.46975890, 
  0.50028648,    0.53279791,    0.56742212,    0.60429640, 
  0.64356699,    0.68538959,    0.72993007,    0.77736504, 
  0.82788260,    0.88168307,    0.9389798,     1.
</screen>

</section>

</section>

<!-- end tables section -->

<p><p>1.1                  vorbis/doc/xml/Vorbis_I_spec.xml

Index: Vorbis_I_spec.xml
===================================================================
<?xml version="1.0" standalone="no"?>
<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
                "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"
[
<!ENTITY intro SYSTEM "01-introduction.xml">
<!ENTITY bitpacking SYSTEM "02-bitpacking.xml">
<!ENTITY codebook SYSTEM "03-codebook.xml">
<!ENTITY codec SYSTEM "04-codec.xml">
<!ENTITY comment SYSTEM "05-comment.xml">
<!ENTITY floor0 SYSTEM "06-floor0.xml">
<!ENTITY floor1 SYSTEM "07-floor1.xml">
<!ENTITY residue SYSTEM "08-residue.xml">
<!ENTITY helpers SYSTEM "09-helper.xml">
<!ENTITY tables SYSTEM "10-tables.xml">
<!ENTITY oggvorbis SYSTEM "a1-encapsulation_ogg.xml">
<!ENTITY rtpvorbis SYSTEM "a2-encapsulation_rtp.xml">
<!ENTITY footer SYSTEM "footer.xml">
]>

<article>
<articleinfo>
  <title>Vorbis I specification</title>
  <corpauthor>Xiph.org Foundation</corpauthor>
</articleinfo>

&intro;
&bitpacking;
&codebook;
&codec;
&comment;
&floor0;
&floor1;
&residue;
&helpers;
&tables;
<!--
&oggvorbis;
&rtpvorbis;
-->
&footer;

</article>

<p><p>1.1                  vorbis/doc/xml/footer.xml

Index: footer.xml
===================================================================
<section id="footer">
<title>Colophon</title>

<mediaobject>
<imageobject>
 <imagedata fileref="white-xifish.png" format="PNG"/>
</imageobject>
<textobject>
 <phrase>[Xiph.org logo]</phrase>
</textobject>
</mediaobject>

<para>
Ogg is a <ulink url="http://www.xiph.org">Xiph.org Foundation</ulink> effort
to protect essential tenets of Internet multimedia from corporate
hostage-taking; Open Source is the net's greatest tool to keep
everyone honest. See <ulink url="http://www.xiph.org/about.html">About
the Xiph.org Foundation</ulink> for details.
</para>

<para>
Ogg Vorbis is the first Ogg audio CODEC.  Anyone may freely use and
distribute the Ogg and Vorbis specification, whether in a private,
public or corporate capacity.  However, the Xiph.org Foundation and
the Ogg project (xiph.org) reserve the right to set the Ogg Vorbis
specification and certify specification compliance.</para>

<para>
Xiph.org's Vorbis software CODEC implementation is distributed under a
BSD-like license.  This does not restrict third parties from
distributing independent implementations of Vorbis software under
other licenses.</para>

<para>
Ogg, Vorbis, Xiph.org Foundation and their logos are trademarks (tm)
of the <ulink url="http://www.xiph.org/">Xiph.org Foundation</ulink>.  These
pages are copyright (C) 1994-2002 Xiph.org Foundation. All rights
reserved.</para>

</section>

<p><p>--- >8 ----
List archives:  http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To unsubscribe from this list, send a message to 'cvs-request at xiph.org'
containing only the word 'unsubscribe' in the body.  No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.



More information about the commits mailing list