summaryrefslogtreecommitdiff
path: root/apps/codecs/libtremor/asm_mcf5249.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/libtremor/asm_mcf5249.h')
-rw-r--r--apps/codecs/libtremor/asm_mcf5249.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/apps/codecs/libtremor/asm_mcf5249.h b/apps/codecs/libtremor/asm_mcf5249.h
index 3e7d46983e..66de07615f 100644
--- a/apps/codecs/libtremor/asm_mcf5249.h
+++ b/apps/codecs/libtremor/asm_mcf5249.h
@@ -28,37 +28,5 @@
28 28
29#define MB() 29#define MB()
30 30
31#ifndef _TREMOR_VECT_OPS
32#define _TREMOR_VECT_OPS
33static inline
34void vect_add_left_right(ogg_int32_t *x, const ogg_int32_t *y, int n)
35{
36 /* coldfire asm has symmetrical versions of vect_add_right_left
37 and vect_add_left_right (since symmetrical versions of
38 vect_mult_fw and vect_mult_bw i.e. both use MULT31) */
39 vect_add(x, y, n );
40}
41
42static inline
43void vect_add_right_left(ogg_int32_t *x, const ogg_int32_t *y, int n)
44{
45 /* coldfire asm has symmetrical versions of vect_add_right_left
46 and vect_add_left_right (since symmetrical versions of
47 vect_mult_fw and vect_mult_bw i.e. both use MULT31) */
48 vect_add(x, y, n );
49}
50
51static inline
52void ogg_vect_mult_fw(int32_t *data, const int32_t *window, int n)
53{
54 vect_mult_fw(data, window, n);
55}
56
57static inline
58void ogg_vect_mult_bw(int32_t *data, const int32_t *window, int n)
59{
60 vect_mult_bw(data, window, n);
61}
62#endif
63#endif 31#endif
64#endif 32#endif