summaryrefslogtreecommitdiff
path: root/apps/codecs
diff options
context:
space:
mode:
authorThom Johansen <thomj@rockbox.org>2007-10-18 10:14:31 +0000
committerThom Johansen <thomj@rockbox.org>2007-10-18 10:14:31 +0000
commit9a1a2fd686cd78e71ab90b8695e1e8038b5d00ed (patch)
treebff360fef686b67ca6402712595534dd95ee8083 /apps/codecs
parent6e4aa260d019d94e23fbc8c26b95253ae752f697 (diff)
downloadrockbox-9a1a2fd686cd78e71ab90b8695e1e8038b5d00ed.zip
rockbox-9a1a2fd686cd78e71ab90b8695e1e8038b5d00ed.tar.gz
rockbox-9a1a2fd686cd78e71ab90b8695e1e8038b5d00ed.tar.bz2
rockbox-9a1a2fd686cd78e71ab90b8695e1e8038b5d00ed.tar.xz
Oversight in syncing on my end, sorry.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15184 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs')
-rw-r--r--apps/codecs/libwma/wmadeci.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/apps/codecs/libwma/wmadeci.c b/apps/codecs/libwma/wmadeci.c
index 33894e1..f8a9fb5 100644
--- a/apps/codecs/libwma/wmadeci.c
+++ b/apps/codecs/libwma/wmadeci.c
@@ -201,15 +201,6 @@ static inline void vector_fmul_reverse(fixed32 *dst, const fixed32 *src0, const
#endif
-/* TODO: Adapt the above to work with this */
-static inline void vector_fmul_reverse(fixed32 *dst, const fixed32 *src0, const fixed32 *src1, int len){
- int i;
- src1 += len-1;
- for(i=0; i<len; i++)
- dst[i] = fixmul32b(src0[i], src1[-i]);
-}
-
-
/**
* Apply MDCT window and add into output.
*