diff options
author | Stephen Torri <storri@users.sourceforge.net> | 2002-10-22 04:46:22 +0000 |
---|---|---|
committer | Stephen Torri <storri@users.sourceforge.net> | 2002-10-22 04:46:22 +0000 |
commit | adbd3a8acbbd8ed8dc478e002aa46ac6a76280f8 (patch) | |
tree | a63dd7f9fbe77ae4a10c30b1be3273ba4de94e41 | |
parent | d2c6520097881377f41224d0d63d2689e97ded18 (diff) | |
download | xine-lib-adbd3a8acbbd8ed8dc478e002aa46ac6a76280f8.tar.gz xine-lib-adbd3a8acbbd8ed8dc478e002aa46ac6a76280f8.tar.bz2 |
Changed comments to standard /* ... */
CVS patchset: 2911
CVS date: 2002/10/22 04:46:22
-rw-r--r-- | src/libfaad/cfft.h | 16 | ||||
-rw-r--r-- | src/libfaad/common.h | 6 |
2 files changed, 11 insertions, 11 deletions
diff --git a/src/libfaad/cfft.h b/src/libfaad/cfft.h index 0f2689c69..2a9817d7e 100644 --- a/src/libfaad/cfft.h +++ b/src/libfaad/cfft.h @@ -1,22 +1,22 @@ /* ** FAAD - Freeware Advanced Audio Decoder ** Copyright (C) 2002 M. Bakker -** +** ** 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. ** -** $Id: cfft.h,v 1.1 2002/08/09 22:36:36 miguelfreitas Exp $ +** $Id: cfft.h,v 1.2 2002/10/22 04:47:50 storri Exp $ **/ #ifndef __CFFT_H__ @@ -34,9 +34,9 @@ typedef struct uint16_t n; } cfft_info; -void cfftf(cfft_info cfft, real_t *c); // complex transform -void cfftb(cfft_info cfft, real_t *c); // its inverse -cfft_info cffti(uint16_t n); // initializer of the above routine pair +void cfftf(cfft_info cfft, real_t *c); /* complex transform */ +void cfftb(cfft_info cfft, real_t *c); /* its inverse */ +cfft_info cffti(uint16_t n); /* initializer of the above routine pair */ void cfftu(cfft_info cfft); diff --git a/src/libfaad/common.h b/src/libfaad/common.h index 779f2742a..2af093adb 100644 --- a/src/libfaad/common.h +++ b/src/libfaad/common.h @@ -16,7 +16,7 @@ ** along with this program; if not, write to the Free Software ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ** -** $Id: common.h,v 1.2 2002/08/09 22:36:36 miguelfreitas Exp $ +** $Id: common.h,v 1.3 2002/10/22 04:46:22 storri Exp $ **/ #ifndef __COMMON_H__ @@ -55,12 +55,12 @@ extern "C" { /* COMPILE TIME DEFINITIONS */ /* use the somewhat faster, but a lot larger FFTW library */ -//#define USE_FFTW +/* #define USE_FFTW */ /* use double precision */ /* #define USE_DOUBLE_PRECISION */ -//#define SBR +/* #define SBR */ #define ERROR_RESILIENCE |