diff options
Diffstat (limited to 'src/libfaad/mdct.h')
-rw-r--r-- | src/libfaad/mdct.h | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/src/libfaad/mdct.h b/src/libfaad/mdct.h index e06d1e5db..4aa2cdd25 100644 --- a/src/libfaad/mdct.h +++ b/src/libfaad/mdct.h @@ -1,6 +1,6 @@ /* -** FAAD - Freeware Advanced Audio Decoder -** Copyright (C) 2002 M. Bakker +** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding +** Copyright (C) 2003 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 @@ -16,7 +16,13 @@ ** along with this program; if not, write to the Free Software ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ** -** $Id: mdct.h,v 1.3 2002/12/16 19:00:40 miguelfreitas Exp $ +** Any non-GPL usage of this software or parts of this software is strictly +** forbidden. +** +** Commercial non-GPL licensing of this software is possible. +** For more info contact Ahead Software through Mpeg4AAClicense@nero.com. +** +** $Id: mdct.h,v 1.4 2003/12/30 02:00:10 miguelfreitas Exp $ **/ #ifndef __MDCT_H__ @@ -26,11 +32,13 @@ extern "C" { #endif -#include "cfft.h" mdct_info *faad_mdct_init(uint16_t N); void faad_mdct_end(mdct_info *mdct); void faad_imdct(mdct_info *mdct, real_t *X_in, real_t *X_out); +#ifdef USE_SSE +void faad_imdct_sse(mdct_info *mdct, real_t *X_in, real_t *X_out); +#endif void faad_mdct(mdct_info *mdct, real_t *X_in, real_t *X_out); |