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

..19-Jun-2016-

COPYINGH A D19-Jun-20162.5 KiB5441

Makefile.amH A D19-Jun-2016246 148

Makefile.inH A D19-Jun-201622.8 KiB713637

READMEH A D19-Jun-20162.9 KiB7858

filter.hH A D19-Jun-20163.6 KiB11868

ttadec.cH A D19-Jun-201618.1 KiB608443

ttadec.hH A D19-Jun-20167.3 KiB233134

ttaplug.cH A D19-Jun-201611.5 KiB387308

README

1NOTE: this is modified TTA library, not the original one
2please don't use it if you need the original one
3
4=== original TTA README starts here ===
5
6TTA Hardware Players Library
7============================
8
9Version 1.2, (c) 2004 Alexander Djourik. All rights reserved.
10
11* Introduction
12
13This library provides to decode a multichannel 8,16 and 24
14bits TTA audio files. TTA is a lossless audio format. Being
15"lossless" means that no data/quality is lost in the compression
16- when uncompressed, the data will be identical to the original.
17The compression ratios of TTA depend on the type of music file
18being compressed, but the compression size will generally range
19between 30% - 70% of the original.
20
21TTA format supports both of ID3v1/v2 tags. Detailed format
22description is available at http://www.true-audio.com.
23
24The decoder process has a minimal system requirements and does
25not required to create a big additional memory pools. As the
26TTA algorithms has a same system requirements both for decoding
27and for encoding processes - the TTA recorder can be easily
28realized also.
29
30* Changes
31
32  14/04/2004 1.0 Initial release
33  16/04/2004 1.1 Code optimization
34                 Code clean-up
35  29/10/2004 1.2 ID3 tags support
36		 Code clean-up
37
38* To Do
39
40  - TTA recorder functions.
41
42* Developers
43
44  Alexander Djourik <ald@true-audio.com>
45  Pavel Zhilin <pzh@true-audio.com>
46
47* Copying
48
49Redistribution and use in source and binary forms, with or without
50modification, are permitted provided that the following conditions
51are met:
52
531. Redistributions of source code must retain the above copyright
54   notice, this list of conditions and the following disclaimer.
552. Redistributions in binary form must reproduce the above copyright
56   notice, this list of conditions and the following disclaimer in the
57   documentation and/or other materials provided with the distribution.
583. Neither the name of the True Audio Software nor the names of its
59   contributors may be used to endorse or promote products derived
60   from this software without specific prior written permission.
61
62THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
63"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
64LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
65A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
66OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
67SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
68LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
69DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
70THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
71(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
72OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
73
74* See also
75
76Please visit the TTA homepage at http://tta.sourceforge.net for the
77latest in news and downloads.
78