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

..03-May-2022-

debian/H03-May-2022-241153

doc/H03-May-2022-87

win32/H16-Mar-2018-1,7721,768

CHANGELOGH A D16-Mar-2018467 1912

COPYINGH A D16-Mar-20181.4 KiB2923

Makefile.amH A D03-May-20221.5 KiB5137

READMEH A D16-Mar-20181.9 KiB4736

Version_script.inH A D16-Mar-20181.2 KiB6359

asm_arm.hH A D16-Mar-20186.4 KiB246189

autogen.shH A D16-Mar-20183.6 KiB121104

backends.hH A D16-Mar-20184.5 KiB13273

block.cH A D16-Mar-201814.2 KiB498302

block.hH A D16-Mar-20181.1 KiB255

codebook.cH A D16-Mar-201810.5 KiB392284

codebook.hH A D16-Mar-20184 KiB10246

codec_internal.hH A D16-Mar-20183 KiB9344

config_types.hH A D16-Mar-20181.1 KiB267

configure.inH A D16-Mar-20183.7 KiB147113

floor0.cH A D16-Mar-201812.3 KiB440300

floor1.cH A D16-Mar-201814.5 KiB461356

info.cH A D16-Mar-201811.3 KiB391276

iseeking_example.cH A D16-Mar-20187.4 KiB266191

ivorbiscodec.hH A D16-Mar-20186.7 KiB205105

ivorbisfile.hH A D16-Mar-20184.7 KiB13277

ivorbisfile_example.cH A D16-Mar-20183 KiB9250

lsp_lookup.hH A D16-Mar-20184.9 KiB137106

mapping0.cH A D16-Mar-20189.3 KiB329224

mdct.cH A D16-Mar-201813.5 KiB511374

mdct.hH A D16-Mar-20181.4 KiB5318

mdct_lookup.hH A D16-Mar-201832.2 KiB541518

misc.hH A D16-Mar-20185.9 KiB253164

os.hH A D16-Mar-20181.7 KiB6538

registry.cH A D16-Mar-20181.7 KiB5122

registry.hH A D16-Mar-20181.4 KiB4118

res012.cH A D16-Mar-201810 KiB375288

sharedbook.cH A D16-Mar-201812.7 KiB448297

synthesis.cH A D16-Mar-20183.9 KiB13279

vorbisfile.cH A D16-Mar-201861 KiB1,9691,214

vorbisidec.pc.inH A D16-Mar-2018305 1512

window.cH A D16-Mar-20182.1 KiB8454

window.hH A D16-Mar-20181.1 KiB287

window_lookup.hH A D16-Mar-2018124.8 KiB2,0852,057

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