


                alogg - an Ogg/Vorbis addon library for Allegro

				 version 1.3.3



alogg is a library which makes it easier to use Ogg/Vorbis streams with
Allegro. It offers facilities to decode, stream, and encode Ogg/Vorbis
streams with thread support and experimental URL streaming, and integrates
those facilities with Allegro's datafile and sample loading routines.


alogg's homepage can be found at http://lyrian.obnix.com/alogg/



 -- Dependencies

alogg requires the following:

  libogg-1.0rc3       (or newer, available at <link>http://www.vorbis.com/</a>)
  libvorbis-1.0rc3    (or newer, available at <link>http://www.vorbis.com/</a>)
  allegro-4.1.1       (or newer, available at <link>http://alleg.sf.net/</a>)

To compile with Tremor, a fixed point implementation of the Ogg/Vorbis
decoder, you also a copy of the Tremor library. As of September 2002,
Tremor is still only available as CVS snapshots, which can be found at
http://www.xiph.org/.

To compile with URL support, you also need libcurl 7.10 or newer. libcurl
is a library for transferring data specified with URL syntax, available at
http://curl.haxx.se/.
Note that URL streaming is experimental is not ready for production use yet.
In particular, I have not yet tried to stream off an Icecast server.

To compile with threaded streaming support, you also need pthreads. pthreads
is the most widely used library for thread support, and is supplied with
most operating systems. You can even get a version of pthreads for MS-DOS
and MS-Windows. For the latter, it can be found somewhere at
http://www.redhat.com.

Previous versions of Allegro will probably work, though integration with
Allegro's load_sample requires Allegro 4.1.1.
If you have an older version of Allegro and want to be able to use
load_sample to load Ogg/Vorbis streams, you can patch Allegro this way:

  cd /home/user/allegro # or wherever you put Allegro
  patch -p1 < /home/user/alogg-1.3.3/sample.diff # or wherever you put alogg

You also have to link against the Ogg/Vorbis libraries in order for the
grabber to link. If you use Unix, DJGPP or Mingw32, the supplied linker
scripts will do this for you automatically. If you use another platform,
or want to use Tremor, you will have to apply a patch to Allegro's makefile.
If you want to use libvorbis, use libs.diff; if you want to use Tremor, use
tremor.diff. The datogg grabber plugin needs to be told that Tremor is
to be used instead of libvorbis, and Allegro has no support for plugin
specific compile time scripts, so this must be done by hand.
You can apply the patch to the Allegro distribution like this:

  cd /home/user/allegro # or wherever you put Allegro
  patch -p0 < /home/user/alogg-1.3.3/libs.diff # or wherever you put alogg

or, if using Tremor:

  cd /home/user/allegro # or wherever you put Allegro
  patch -p0 < /home/user/alogg-1.3.3/tremor.diff # or wherever you put alogg

If you do not have patch, then your mileage may vary. You might have to
modify a project file, depending on how your compiler does this.


For information on how to build alogg and use it in your programs, have a
look in the alogg documentation.



 -- Documentation

alogg's documentation can be generated in multiple formats. To generate
the documentation in:
 - HTML, type "make docs TYPE=html"
 - texinfo, type "make docs TYPE=texi"
etc.
Make sure that Allegro's makedoc program is in your path, as it will be
used to generate the documentation. For a complete list of the formats
the doc can be generated in, see makedoc.



 -- License

alogg is Copyright 2002, 2003 Vincent Penquerc'h and is distributed under
the terms of a modified Lesser General Public License (LGPL). See file
lgpl.txt in the archive for more information about the LGPL.
The examples are under a BSD like license, as libvorbvis' examples, and
the grabber plugin is giftware, as it is an adaptation of Allegro's
SAMPLE plugin.
See the LICENSE file in the archive for more information on alogg's license.

alogg is party based on examples for the libvorbis distribution.
libvorbis' license requires that the following notice be included:

    Copyright (c) 2001, Xiphophorus

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions
    are met:

    - Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.

    - Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in the
    documentation and/or other materials provided with the distribution.

    - Neither the name of the Xiphophorus nor the names of its contributors
    may be used to endorse or promote products derived from this software
    without specific prior written permission.

    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
    ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
    LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
    A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR
    CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
    EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
    PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
    PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
    LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
    NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
    SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.



