• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

CHANGELOGH A D28-Apr-2011467 1912

COPYINGH A D28-Apr-20111.4 KiB2923

READMEH A D28-Apr-20111.9 KiB4736

TODOH A D28-Apr-2011120 32

asm_arm.hH A D28-Apr-20116.3 KiB244187

bitwise.cH A D28-Apr-201119 KiB682528

codebook.cH A D28-Apr-201120.7 KiB827613

codebook.hH A D28-Apr-20112.3 KiB6635

codec_internal.hH A D28-Apr-20116.6 KiB214130

config_types.hH A D28-Apr-20111.2 KiB278

dsp.cH A D28-Apr-20117.9 KiB299205

floor0.cH A D28-Apr-201111.2 KiB429302

floor1.cH A D28-Apr-20119.2 KiB352275

floor_lookup.cH A D28-Apr-20115.4 KiB9372

framing.cH A D28-Apr-201129 KiB1,118775

info.cH A D28-Apr-201110 KiB349246

ivorbiscodec.hH A D28-Apr-20113.1 KiB10553

ivorbisfile.hH A D28-Apr-20114.4 KiB12369

lsp_lookup.hH A D28-Apr-20113.8 KiB10981

mapping0.cH A D28-Apr-20116.6 KiB242168

mdct.cH A D28-Apr-201112.3 KiB487373

mdct.hH A D28-Apr-20111.7 KiB6025

mdct_lookup.hH A D28-Apr-201132.2 KiB541518

misc.cH A D28-Apr-20115.3 KiB209160

misc.hH A D28-Apr-20115.2 KiB194109

ogg.hH A D28-Apr-20116.5 KiB207130

os.hH A D28-Apr-20111.7 KiB6840

os_types.hH A D28-Apr-20112.7 KiB9455

res012.cH A D28-Apr-20116.4 KiB226164

vorbisfile.cH A D28-Apr-201145.1 KiB1,5901,011

window_lookup.hH A D28-Apr-2011124.8 KiB2,0882,059

README

1This README covers the Ogg Vorbis 'Tremor' integer playback codec
2source as of date 2002 09 02, version 1.0.0.
3
4                            ******
5
6The C source in this package will build on any ANSI C compiler and
7function completely and properly on any platform.  The included build
8system assumes GNU build system and make tools (m4, automake,
9autoconf, libtool and gmake).  GCC is not required, although GCC is
10the most tested compiler.  To build using GNU tools, type in the
11source directory:
12
13./autogen.sh
14make
15
16Currently, the source implements playback in pure C on all platforms
17except ARM, where a [currently] small amount of assembly (see
18asm_arm.h) is used to implement 64 bit math operations and fast LSP
19computation.  If building on ARM without the benefit of GNU build
20system tools, be sure that '_ARM_ASSEM_' is #defined by the build
21system if this assembly is desired, else the resulting library will
22use whatever 64 bit math builtins the compiler implements.
23
24No math library is required by this source.  No floating point
25operations are used at any point in either setup or decode.  This
26decoder library will properly decode any past, current or future
27Vorbis I file or stream.
28
29                           ********
30
31The build system produces a static and [when supported by the OS]
32dynamic library named 'libvorbisidec'.  This library exposes an API
33nearly identical to the BSD reference library's 'libvorbisfile',
34including all the features familiar to users of vorbisfile.  This API
35is similar enough that the proper header file to include is named
36'ivorbisfile.h' [included in the source build directory].  Lower level
37libvorbis-style headers and structures are in 'ivorbiscodec.h'
38[included in the source build directory]. A simple example program,
39ivorbisfile_example.c, can be built with 'make example'.
40
41                           ********
42
43Detailed Tremor API Documentation begins at doc/index.html
44
45Monty
46xiph.org
47