diff options
| author | Marcoen Hirschberg <marcoen@gmail.com> | 2007-09-20 12:27:24 +0000 |
|---|---|---|
| committer | Marcoen Hirschberg <marcoen@gmail.com> | 2007-09-20 12:27:24 +0000 |
| commit | 1ddef375df58c96327ec05f386f544d2c98007cf (patch) | |
| tree | b1a50148ed750d26f32860267f087a1433ba641a /apps/codecs/libwma/mdct.h | |
| parent | ab7975b1c9b1c28120cd1470ae3df349e001e97d (diff) | |
| download | rockbox-1ddef375df58c96327ec05f386f544d2c98007cf.zip rockbox-1ddef375df58c96327ec05f386f544d2c98007cf.tar.gz rockbox-1ddef375df58c96327ec05f386f544d2c98007cf.tar.bz2 rockbox-1ddef375df58c96327ec05f386f544d2c98007cf.tar.xz | |
move (i)MDCT and FFT code to separate files
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14776 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libwma/mdct.h')
| -rw-r--r-- | apps/codecs/libwma/mdct.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/apps/codecs/libwma/mdct.h b/apps/codecs/libwma/mdct.h new file mode 100644 index 0000000..1c05020 --- /dev/null +++ b/apps/codecs/libwma/mdct.h @@ -0,0 +1,23 @@ +/* + * WMA compatible decoder + * Copyright (c) 2002 The FFmpeg Project. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +int ff_mdct_init(MDCTContext *s, int nbits, int inverse); +void ff_imdct_calc(MDCTContext *s, fixed32 *output, fixed32 *input); +int mdct_init_global(); + |