rockbox/apps/codecs/libtremor
Nils Wallménius f2e7c05c22 libtremor: comment out unused struct member.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29987 a1c6a512-1295-4272-9138-f99709370657
2011-06-09 06:46:44 +00:00
..
asm_arm.h FS#12141 by Sean Bartell 2011-06-02 14:59:15 +00:00
asm_mcf5249.h FS#12141 by Sean Bartell 2011-06-02 14:59:15 +00:00
backends.h libtremor: comment out unused struct member. 2011-06-09 06:46:44 +00:00
bitwise.c libtremor: export a libogg function that is now needed. 2010-12-06 17:16:45 +00:00
block.c libtremor: Implement a memory configuration for targets that don't use separate iram for codecs. 2011-06-06 13:27:12 +00:00
CHANGELOG
codebook.c Revert tab police as it makes merging upstream changes more annoying and messed up indentation in some places. 2010-12-12 17:59:05 +00:00
codebook.h libtremor: merge upstream revision 17528-17530, more error checking and bug fixes 2010-12-08 16:07:46 +00:00
codec_internal.h Merge from branches/mdctexp - faster ifft+imdct in codec lib 2010-02-17 00:49:53 +00:00
config-tremor.h libtremor: Implement a memory configuration for targets that don't use separate iram for codecs. 2011-06-06 13:27:12 +00:00
config_types.h
COPYING
ctype.c Rockbox as an application: Replace many occurences of #ifdef SIMULATOR with #if (CONFIG_PLATFORM & PLATFORM_HOSTED) (or equivalently). 2010-06-21 16:53:00 +00:00
ffmpeg_render_line.h Move ffmpeg functions to their own file to avoid mixing code under different liceses in the same file. Licensing is fun! 2010-08-22 20:14:25 +00:00
floor0.c Revert tab police as it makes merging upstream changes more annoying and messed up indentation in some places. 2010-12-12 17:59:05 +00:00
floor1.c Revert tab police as it makes merging upstream changes more annoying and messed up indentation in some places. 2010-12-12 17:59:05 +00:00
framing.c libtremor: 2010-12-06 14:36:52 +00:00
info.c libtremor: merge upstream revision 17528-17530, more error checking and bug fixes 2010-12-08 16:07:46 +00:00
ivorbiscodec.h libtremor: Implement a memory configuration for targets that don't use separate iram for codecs. 2011-06-06 13:27:12 +00:00
ivorbisfile.h libtremor: 2010-12-06 14:36:52 +00:00
libtremor.make Simplify makefile 2010-03-09 03:20:14 +00:00
lsp_lookup.h Fix broken whitespace after r24862 2010-03-05 09:48:07 +00:00
mapping0.c libtremor: merge upstream revision 17525 'Commit additional hardening to setup packet decode.' 2010-12-07 16:55:36 +00:00
misc.h FS#12141 by Sean Bartell 2011-06-02 14:59:15 +00:00
ogg.h libtremor: export a libogg function that is now needed. 2010-12-06 17:16:45 +00:00
oggmalloc.c libtremor: Implement a memory configuration for targets that don't use separate iram for codecs. 2011-06-06 13:27:12 +00:00
os.h Fix warning on new gcc for checking value or truth of undefined _WIN32 and MIPS. 2009-11-20 02:51:10 +00:00
os_types.h FS#10466: Introduce a real malloc for tremor. 2009-08-29 12:23:40 +00:00
README
README.rockbox
registry.c
registry.h
res012.c FS#12140 by Sean Bartell, Make various codec stuff static. 2011-06-01 10:28:26 +00:00
sharedbook.c libtremor: merge upstream revision 17528-17530, more error checking and bug fixes 2010-12-08 16:07:46 +00:00
SOURCES
synthesis.c libtremor: merge upstream revision 17528-17530, more error checking and bug fixes 2010-12-08 16:07:46 +00:00
vorbisfile.c Revert tab police as it makes merging upstream changes more annoying and messed up indentation in some places. 2010-12-12 17:59:05 +00:00
window.c Commit FS#9882 - make better use of iram at different quality encodings, remove redundant memsets, implement doublebuffer if it will fit in iram to save a mempcy each frame, and some alignment fixes for coldfire 2009-04-25 11:25:13 +00:00
window.h Fix broken whitespace after r24862 2010-03-05 09:48:07 +00:00
window_lookup.h Commit FS#9882 - make better use of iram at different quality encodings, remove redundant memsets, implement doublebuffer if it will fit in iram to save a mempcy each frame, and some alignment fixes for coldfire 2009-04-25 11:25:13 +00:00

This README covers the Ogg Vorbis 'Tremor' integer playback codec
source as of date 2002 09 02, version 1.0.0.

                            ******

The C source in this package will build on any ANSI C compiler and
function completely and properly on any platform.  The included build
system assumes GNU build system and make tools (m4, automake,
autoconf, libtool and gmake).  GCC is not required, although GCC is
the most tested compiler.  To build using GNU tools, type in the
source directory:

./autogen.sh
make

Currently, the source implements playback in pure C on all platforms
except ARM, where a [currently] small amount of assembly (see
asm_arm.h) is used to implement 64 bit math operations and fast LSP
computation.  If building on ARM without the benefit of GNU build
system tools, be sure that '_ARM_ASSEM_' is #defined by the build
system if this assembly is desired, else the resulting library will
use whatever 64 bit math builtins the compiler implements.

No math library is required by this source.  No floating point
operations are used at any point in either setup or decode.  This
decoder library will properly decode any past, current or future
Vorbis I file or stream.

                           ********

The build system produces a static and [when supported by the OS]
dynamic library named 'libvorbisidec'.  This library exposes an API
nearly identical to the BSD reference library's 'libvorbisfile',
including all the features familiar to users of vorbisfile.  This API
is similar enough that the proper header file to include is named
'ivorbisfile.h' [included in the source build directory].  Lower level
libvorbis-style headers and structures are in 'ivorbiscodec.h'
[included in the source build directory]. A simple example program,
ivorbisfile_example.c, can be built with 'make example'.

                           ********

Detailed Tremor API Documentation begins at doc/index.html

Monty
xiph.org