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

..03-May-2022-

aacDECdrop/H01-Jan-2021-3,1172,384

docs/H03-May-2022-532507

frontend/H03-May-2022-4,3733,158

include/H03-May-2022-297165

libfaad/H03-May-2022-62,55553,882

plugins/H01-Jan-2021-10,1456,359

project/msvc/H01-Jan-2021-1,4091,407

utils/win32/H01-Jan-2021-10483

.gitignoreH A D01-Jan-2021195 2221

AUTHORSH A D01-Jan-2021312 1712

COPYINGH A D01-Jan-202117.8 KiB351285

ChangeLogH A D01-Jan-20213.6 KiB128105

Makefile.amH A D01-Jan-2021194 96

NEWSH A D01-Jan-202199 84

READMEH A D01-Jan-20212.7 KiB8156

README.linuxH A D01-Jan-2021435 1612

TODOH A D01-Jan-202115 31

bootstrapH A D01-Jan-2021299 1814

configure.acH A D01-Jan-20214.7 KiB172145

faad2.spec.inH A D01-Jan-20215.7 KiB183145

in_mpeg4aac.nsiH A D01-Jan-2021705 2219

README

1
2Freeware Advanced Audio (AAC) Decoder including SBR decoding
3
4FAAD2 is a HE, LC, MAIN and LTP profile, MPEG2 and MPEG-4 AAC decoder.
5FAAD2 includes code for SBR (HE AAC) decoding.
6FAAD2 is licensed under the GPL.
7
8
9__________
10COPYRIGHTS
11
12For FAAD2 the following license applies:
13
14******************************************************************************
15** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding
16** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com
17**
18** This program is free software; you can redistribute it and/or modify
19** it under the terms of the GNU General Public License as published by
20** the Free Software Foundation; either version 2 of the License, or
21** (at your option) any later version.
22**
23** This program is distributed in the hope that it will be useful,
24** but WITHOUT ANY WARRANTY; without even the implied warranty of
25** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26** GNU General Public License for more details.
27**
28** You should have received a copy of the GNU General Public License
29** along with this program; if not, write to the Free Software
30** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
31**
32** Any non-GPL usage of this software or parts of this software is strictly
33** forbidden.
34**
35** The "appropriate copyright message" mentioned in section 2c of the GPLv2
36** must read: "Code from FAAD2 is copyright (c) Nero AG, www.nero.com"
37**
38** Commercial non-GPL licensing of this software is possible.
39** For more info contact Nero AG through Mpeg4AAClicense@nero.com.
40******************************************************************************
41
42
43Please note that the use of this software may require the payment of
44patent royalties. You need to consider this issue before you start
45building derivative works. We are not warranting or indemnifying you in
46any way for patent royalities! YOU ARE SOLELY RESPONSIBLE FOR YOUR OWN
47ACTIONS!
48
49
50___________________
51DIRECTORY STRUCTURE
52
53faad2 - top level directory.
54
55   aacDECdrop - windows decoder/player with drag'n'drop functionality.
56
57   docs - API documentation.
58
59   frontend - command line frontend to the FAAD2 library, also supports
60              MPEG-4 file decoding.
61
62   include - inlude file for the FAAD2 library.
63
64   libfaad - the FAAD2 AAC decoder library including SBR.
65
66      codebook - Huffman codebooks.
67
68   plugins - plugins for all kinds of pograms.
69
70      mpeg4ip - plugin for the mpeg4ip player.
71
72      QCD - Quintessential player AAC plugin.
73
74      QCDMp4 - Quintessential player MP4 plugin.
75
76      xmms - xmms AAC plugin.
77
78   project/msvc - Visual Studio 2017 project files.
79
80   utils/win32 - generate "win32_ver.h" from "configure.h".
81

README.linux

1To compile under Linux.
2----------------------
3just run :
4
5./configure --with-mp4v2
6make
7sudo make install
8
9
10about the xmms plugin.
11---------------------
12 The xmms plugin need to be build after the install of the faad project.
13so after you have installed correctly faad (--with-xmms options) you need
14to configure and build the xmms plugin part in the plugins/xmms directory.
15Read the README and INSTALL files into the xmms directory.
16