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.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/apps/codecs/libtremor/misc.h b/apps/codecs/libtremor/misc.h
index 0b0ff4d3a7..592a60ffd8 100644
--- a/apps/codecs/libtremor/misc.h
+++ b/apps/codecs/libtremor/misc.h
@@ -26,7 +26,6 @@
26 26
27#include "asm_arm.h" 27#include "asm_arm.h"
28#include "asm_mcf5249.h" 28#include "asm_mcf5249.h"
29
30 29
31/* Some prototypes that were not defined elsewhere */ 30/* Some prototypes that were not defined elsewhere */
32void *_vorbis_block_alloc(vorbis_block *vb,long bytes); 31void *_vorbis_block_alloc(vorbis_block *vb,long bytes);
@@ -155,32 +154,6 @@ static inline void XNPROD31(ogg_int32_t a, ogg_int32_t b,
155} 154}
156*/ 155*/
157#endif 156#endif
158#ifndef _TREMOR_VECT_OPS
159#define _TREMOR_VECT_OPS
160static inline
161void vect_add_left_right(ogg_int32_t *x, const ogg_int32_t *y, int n)
162{
163 vect_add(x, y, n );
164}
165
166static inline
167void vect_add_right_left(ogg_int32_t *x, const ogg_int32_t *y, int n)
168{
169 vect_add(x, y, n );
170}
171
172static inline
173void ogg_vect_mult_fw(int32_t *data, const int32_t *window, int n)
174{
175 vect_mult_fw(data, window, n);
176}
177
178static inline
179void ogg_vect_mult_bw(int32_t *data, const int32_t *window, int n)
180{
181 vect_mult_bw(data, window, n);
182}
183#endif
184 157
185#if 0 158#if 0
186#ifndef _V_VECT_OPS 159#ifndef _V_VECT_OPS