From 28bc321dbb20bc061c4e39b4eccce4c80fcac4a1 Mon Sep 17 00:00:00 2001 From: Andree Buschmann Date: Sun, 21 Feb 2010 22:05:48 +0000 Subject: Remove CLIP_TO_15 from codeclib. Remove tabs. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24834 a1c6a512-1295-4272-9138-f99709370657 --- apps/codecs/lib/asm_mcf5249.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'apps/codecs/lib/asm_mcf5249.h') diff --git a/apps/codecs/lib/asm_mcf5249.h b/apps/codecs/lib/asm_mcf5249.h index 2888f6dc54..f103e78769 100644 --- a/apps/codecs/lib/asm_mcf5249.h +++ b/apps/codecs/lib/asm_mcf5249.h @@ -325,17 +325,19 @@ void vect_mult_bw(int32_t *data, int32_t *window, int n) #endif #endif - +/* not used anymore */ +/* #ifndef _V_CLIP_MATH #define _V_CLIP_MATH -/* this is portable C and simple; why not use this as default? */ +* this is portable C and simple; why not use this as default? static inline int32_t CLIP_TO_15(register int32_t x) { register int32_t hi=32767, lo=-32768; return (x>=hi ? hi : (x<=lo ? lo : x)); } #endif +*/ #else #define LINE_ATTR #endif -- cgit v1.2.3