summaryrefslogtreecommitdiff
path: root/apps/codecs/libtremor/misc.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/libtremor/misc.h')
-rw-r--r--apps/codecs/libtremor/misc.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/apps/codecs/libtremor/misc.h b/apps/codecs/libtremor/misc.h
index 6b67740b0d..39f67057ab 100644
--- a/apps/codecs/libtremor/misc.h
+++ b/apps/codecs/libtremor/misc.h
@@ -203,20 +203,6 @@ static inline void vect_copy(ogg_int32_t *x, const ogg_int32_t *y, int n)
203#endif 203#endif
204 204
205#endif 205#endif
206/* not used anymore */
207/*
208#ifndef _V_CLIP_MATH
209#define _V_CLIP_MATH
210
211static inline ogg_int32_t CLIP_TO_15(ogg_int32_t x) {
212 int ret=x;
213 ret-= ((x<=32767)-1)&(x-32767);
214 ret-= ((x>=-32768)-1)&(x+32768);
215 return(ret);
216}
217
218#endif
219*/
220 206
221static inline ogg_int32_t VFLOAT_MULT(ogg_int32_t a,ogg_int32_t ap, 207static inline ogg_int32_t VFLOAT_MULT(ogg_int32_t a,ogg_int32_t ap,
222 ogg_int32_t b,ogg_int32_t bp, 208 ogg_int32_t b,ogg_int32_t bp,