summaryrefslogtreecommitdiff
path: root/apps/codecs/libwma/mdct.h
diff options
context:
space:
mode:
authorMarcoen Hirschberg <marcoen@gmail.com>2007-09-20 12:27:24 +0000
committerMarcoen Hirschberg <marcoen@gmail.com>2007-09-20 12:27:24 +0000
commit1ddef375df58c96327ec05f386f544d2c98007cf (patch)
treeb1a50148ed750d26f32860267f087a1433ba641a /apps/codecs/libwma/mdct.h
parentab7975b1c9b1c28120cd1470ae3df349e001e97d (diff)
downloadrockbox-1ddef375df58c96327ec05f386f544d2c98007cf.tar.gz
rockbox-1ddef375df58c96327ec05f386f544d2c98007cf.zip
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.h23
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 0000000000..1c050204bd
--- /dev/null
+++ b/apps/codecs/libwma/mdct.h
@@ -0,0 +1,23 @@
1/*
2 * WMA compatible decoder
3 * Copyright (c) 2002 The FFmpeg Project.
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19
20int ff_mdct_init(MDCTContext *s, int nbits, int inverse);
21void ff_imdct_calc(MDCTContext *s, fixed32 *output, fixed32 *input);
22int mdct_init_global();
23