diff options
Diffstat (limited to 'apps/codecs/libfaad')
| -rw-r--r-- | apps/codecs/libfaad/SOURCES | 1 | ||||
| -rw-r--r-- | apps/codecs/libfaad/filtbank.c | 9 |
2 files changed, 6 insertions, 4 deletions
diff --git a/apps/codecs/libfaad/SOURCES b/apps/codecs/libfaad/SOURCES index 4c7a34d..f97e14d 100644 --- a/apps/codecs/libfaad/SOURCES +++ b/apps/codecs/libfaad/SOURCES @@ -33,3 +33,4 @@ sbr_tf_grid.c specrec.c syntax.c tns.c +mdct2.c
\ No newline at end of file diff --git a/apps/codecs/libfaad/filtbank.c b/apps/codecs/libfaad/filtbank.c index 9b1bc85..724110e 100644 --- a/apps/codecs/libfaad/filtbank.c +++ b/apps/codecs/libfaad/filtbank.c @@ -1,19 +1,19 @@ /* ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding ** Copyright (C) 2003-2004 M. Bakker, Ahead Software AG, http://www.nero.com -** +** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Foundation; either version 2 of the License, or ** (at your option) any later version. -** +** ** This program is distributed in the hope that it will be useful, ** but WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** GNU General Public License for more details. -** +** ** You should have received a copy of the GNU General Public License -** along with this program; if not, write to the Free Software +** along with this program; if not, write to the Free Software ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ** ** Any non-GPL usage of this software or parts of this software is strictly @@ -42,6 +42,7 @@ #include "kbd_win.h" #include "sine_win.h" #include "mdct.h" +#include "mdct2.h" fb_info *filter_bank_init(uint16_t frame_len) |